/*
Theme Name: BEE Kurumsal Tema
Theme URI: https://www.beedigitalagency.com
Author: BEE Creative
Author URI: https://www.beedigitalagency.com
Description: A corporate WordPress theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bee-kurumsal-tema
Tags: corporate, business, responsive
*/

:root {
    --primary-color: #2563eb;
    --primary-color-dark: #1e40af;
}

/* Apply Poppins font to the entire site */
body, 
h1, h2, h3, h4, h5, h6, 
p, 
a, 
button, 
input, 
textarea, 
select {
    font-family: 'Poppins', sans-serif;
}

/* Fixed navbar styling */
.site-header.fixed-top {
    transition: all 0.3s ease;
    z-index: 1030;
    background: transparent !important;
}

/* Transparent navbar on homepage */
.site-header.bg-transparent {
    background-color: transparent !important;
    box-shadow: none;
}

/* White navbar when scrolled */
.site-header.bg-white {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Add padding to body to account for fixed navbar */
body {

}

/* Navbar styling */
.navbar-brand {
    font-weight: 700;
    font-size: 36px;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 24px;
    }
}

.navbar-nav .nav-link {
    font-weight: 400;
    font-size: 18px;
    padding: 8px 24px;
    margin: 0 8px;
    color: #fff !important;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* When navbar is scrolled */
.site-header.bg-white .navbar-brand,
.site-header.bg-white .navbar-nav .nav-link {
    color: #000 !important;
}

.site-header.bg-white .navbar-nav .nav-link::after {
    background: #000;
}

/* Mobile menu button */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.site-header.bg-white .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.5);
}

.site-header.bg-white .navbar-toggler-icon {
    filter: none;
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero .swiper {
    width: 100%;
    height: 100%;
}

.hero .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.hero .slide-content {
    position: relative;
    z-index: 3;
    color: #fff;
    padding: 32px;
}

.hero .slide-content .container {
    position: relative;
    z-index: 3;
}

.hero .slide-content .row {
    min-height: 100vh;
    align-items: center;
}

.hero h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 .title-line {
    display: block;
    line-height: 1.1;
}

.hero h1 .title-line:last-child {
    margin-top: 2px;
}

.hero .lead {
    font-size: 24px;
    margin-bottom: 24px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s ease 0.3s;
}

.hero .description {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero .btn-light {
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s ease 0.6s;
}

.hero .btn-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 1);
}

.hero .btn-light i {
    font-size: 0.9em;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.hero .btn-light:hover i {
    transform: scale(1.1);
}

.site-header.bg-white .hero .btn-light {
    border: 1px solid rgba(0, 0, 0, 0.8);
    color: #000;
}

.site-header.bg-white .hero .btn-light:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 1);
}

.hero .slide-content.active h1,
.hero .slide-content.active .lead,
.hero .slide-content.active .btn-light {
    opacity: 1;
    transform: translateY(0);
}

.hero .slide-content.exiting h1,
.hero .slide-content.exiting .lead,
.hero .slide-content.exiting .btn-light {
    opacity: 0;
    transform: translateY(50px);
}

.hero .swiper-pagination {
    bottom: 20px;
}

.hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.hero .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2);
}

@media (min-width: 992px) {
    .hero .slide-content .row {
        align-items: flex-end;
        padding-bottom: 150px;
    }
}

.hero .swiper-button-next,
.hero .swiper-button-prev {
    color: #fff;
    background: transparent;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hero .swiper-button-next:after,
.hero .swiper-button-prev:after {
    font-size: 28px;
}

.hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.hero .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2);
}

@media (max-width: 767px) {
    .hero .swiper-button-next,
    .hero .swiper-button-prev {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hero .swiper-button-next,
    .hero .swiper-button-prev {
        display: flex;
    }
}

@media (max-width: 767px) {
    .hero {
        height: 80vh;
    }

    .hero .slide-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0 16px 32px;
    }

    .hero .slide-content .row {
        min-height: auto;
        align-items: flex-end;
        padding-bottom: 30px;
    }
    
    .hero h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .hero .lead {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .hero .description {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .hero .btn-light {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Swiper slider custom styling */
.swiper-section {
    padding: 40px 0;
}

.swiper-slide {
    height: auto;
}

/* Header Call Now Button */
.header-call-now {
    padding: 8px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: #fff;
    white-space: nowrap;
}

.header-call-now:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* When header is scrolled */
.site-header.bg-white .header-call-now {
    border: 1px solid rgba(0, 0, 0, 0.8);
    color: #000;
}

.site-header.bg-white .header-call-now:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
}

.header-call-now i {
    font-size: 0.9em;
    margin-right: 8px;
}

/* Responsive adjustments for call button */
@media (max-width: 767px) {
    .header-call-now {
        padding: 6px 12px;
        font-size: 14px;
    }
}

/* Header Scroll States */
.site-header {
    transition: all 0.3s ease;
}

/* Transparent Header Styles */
.site-header.bg-transparent .navbar-brand,
.site-header.bg-transparent .navbar-nav .nav-link,
.site-header.bg-transparent .header-call-now {
    color: #fff !important;
}

.site-header.bg-transparent .navbar-nav .nav-link::after {
    background: #fff;
}

/* White Header Styles */
.site-header.bg-white .navbar-brand,
.site-header.bg-white .navbar-nav .nav-link,
.site-header.bg-white .header-call-now {
    color: #000 !important;
}

.site-header.bg-white .navbar-nav .nav-link::after {
    background: #000;
}

/* Mobile Header Styles */
@media (min-width: 992px) {
    .site-header {
        background-color: #fff !important;
    }
    
    .site-header .navbar-brand,
    .site-header .navbar-nav .nav-link,
    .site-header .header-call-now {
        color: #000 !important;
    }
    
    .site-header .navbar-nav .nav-link::after {
        background: #000;
    }
}

/* About Us Section */
.about-us {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.about-image {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover {
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.15);
}

.about-image img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.08);
}

.experience-box {
    transform: translate(30px, 30px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
}

.experience-box:hover {
    transform: translate(30px, 30px) scale(1.05);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.section-title span {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    display: inline-block;
    margin-bottom: 16px;
}

.section-title h2 {
    position: relative;
    padding-bottom: 20px;
    color: #000;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-title h2 span {
    height: 3px;
    width: 50px;
    background: #0d6efd;
    border-radius: 3px;
}

.about-us .d-flex {
    padding: 20px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
}

.about-us .d-flex:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(13, 110, 253, 0.2);
}

.about-us .d-flex i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 24px;
    color: #0d6efd;
}

.about-us .d-flex:hover i {
    transform: scale(1.2) rotate(5deg);
}

.about-us .btn-primary {
    padding: 12px 30px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    border: none;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
}

.about-us .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.3);
}

@media (min-width: 992px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: flex;
    }
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero h1 {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .hero .lead {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .hero .description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .hero .btn-light {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Mobil Offcanvas Menü Stilleri */
.mobile-menu {
    background-color: #fff;
}

.mobile-menu .mobile-nav .nav-link,
.site-header.bg-transparent .mobile-menu .mobile-nav .nav-link,
.site-header.bg-white .mobile-menu .mobile-nav .nav-link {
    color: #000 !important;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .mobile-nav .nav-link:hover,
.site-header.bg-transparent .mobile-menu .mobile-nav .nav-link:hover,
.site-header.bg-white .mobile-menu .mobile-nav .nav-link:hover {
    color: #000 !important;
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu .mobile-nav .nav-link:active,
.site-header.bg-transparent .mobile-menu .mobile-nav .nav-link:active,
.site-header.bg-white .mobile-menu .mobile-nav .nav-link:active {
    color: #000 !important;
    background-color: rgba(0, 0, 0, 0.1);
}

.mobile-menu .offcanvas-title {
    color: #000;
    font-weight: 600;
}

.mobile-menu .btn-close {
    color: #000;
}

/* Mobil Menü Link Renkleri */
@media (max-width: 991px) {
    .navbar-nav .nav-link,
    .mobile-menu .mobile-nav .nav-link {
        color: #000 !important;
    }
    
    .navbar-nav .nav-link:hover,
    .mobile-menu .mobile-nav .nav-link:hover {
        color: #000 !important;
    }
    
    .navbar-nav .nav-link:active,
    .mobile-menu .mobile-nav .nav-link:active {
        color: #000 !important;
    }
}

/* Statistics Section Styles */
.statistics-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
}

.stat-item {
    position: relative;
    padding: 40px 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-icon i {
    font-size: 24px;
    color: #0d6efd;
    transition: all 0.3s ease;
}

.stat-content {
    flex: 1;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
    line-height: 1;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.stat-item:hover .stat-icon {
    background: #0d6efd;
}

.stat-item:hover .stat-icon i {
    color: #fff;
}

.stat-item:hover h3 {
    color: #0d6efd;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .stat-item {
        padding: 30px 20px;
        margin-bottom: 20px;
        gap: 20px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .stat-icon i {
        font-size: 20px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
}

.cta-button-item {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cta-button-item h3 {
    margin-top: 0;
    color: #333;
}

.cta-button-item .form-table {
    margin-bottom: 10px;
}

.cta-button-item .button-secondary {
    margin-top: 10px;
}

/* Modern CTA Section Styles */
.cta-section {
    position: relative;
    padding: 80px 0;
}

.cta-section .col-10 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    color: #fff;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.cta-section .text-uppercase {
    font-size: 0.875rem;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.cta-section .display-5 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
}

.cta-section .lead {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-section .cta-button {
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.cta-section .cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 1);
}

.cta-section .cta-button i {
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.cta-section .cta-button:hover i {
    transform: scale(1.1);
}

.cta-section .cta-button-primary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.cta-section .cta-button-primary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cta-section .cta-button-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
}

.cta-section .cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer CTA Section Styles */
.footer-cta-section {
    position: relative;
    padding: 80px 0;
}

.footer-cta-section .col-10 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    color: #fff;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.footer-cta-section .text-uppercase {
    font-size: 0.875rem;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-cta-section .display-5 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-cta-section .lead {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.footer-cta-section .footer-cta-button {
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.footer-cta-section .footer-cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 1);
}

.footer-cta-section .footer-cta-button i {
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.footer-cta-section .footer-cta-button:hover i {
    transform: scale(1.1);
}

.footer-cta-section .footer-cta-button-primary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.footer-cta-section .footer-cta-button-primary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-cta-section .footer-cta-button-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
}

.footer-cta-section .footer-cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cta-section, .footer-cta-section {
        padding: 60px 0;
    }

    .cta-section .col-10,
    .footer-cta-section .col-10 {
        padding: 2rem;
    }

    .cta-section .display-5,
    .footer-cta-section .display-5 {
        font-size: 2rem;
    }

    .cta-section .lead,
    .footer-cta-section .lead {
        font-size: 1rem;
    }

    .cta-section .cta-button,
    .footer-cta-section .footer-cta-button {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
        margin-left: 0;
    }

    .cta-section .d-flex.align-items-end,
    .footer-cta-section .d-flex.align-items-end {
        align-items: flex-start !important;
    }
}

/* Blog Card Styles */
.blog-posts .card {
    margin-bottom: 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-posts .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.blog-posts .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-posts .card:hover .card-img-top {
    transform: scale(1.05);
}

.blog-posts .card-body {
    padding: 24px;
}

.blog-posts .card-title {
    margin-bottom: 16px;
    font-weight: 600;
}

.blog-posts .card-title a {
    text-decoration: none;
    color: #1f2937;
    transition: color 0.3s ease;
}

.blog-posts .card-title a:hover {
    color: var(--primary-color);
}

.blog-posts .excerpt {
    margin-bottom: 24px;
    color: #4b5563;
    line-height: 1.6;
}

.blog-posts .text-muted {
    color: #6b7280;
    font-size: 14px;
}

.blog-posts .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 8px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-posts .btn-primary:hover {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
    transform: translateY(-2px);
}

/* Responsive Blog Card Styles */
@media (max-width: 768px) {
    .blog-posts .card-img-top {
        height: 180px;
    }
    
    .blog-posts .card-body {
        padding: 20px;
    }
}

/* FAQ Styles */
.faq-section {
    padding: 80px 0;
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-section .accordion-button {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 16px 24px;
    border: none;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--primary-color-dark);
    color: #fff;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    padding: 24px;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.faq-section .accordion-body p {
    margin-bottom: 0;
    color: #4b5563;
    line-height: 1.6;
}

/* Responsive FAQ Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .accordion-button {
        padding: 12px 20px;
    }
    
    .faq-section .accordion-body {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .about-us {
        padding: 20px 0;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .about-image img {
        width: 100%;
        height: auto;
    }

    .experience-box {
        margin-top: 20px;
    }

    .section-title h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-us .d-flex {
        padding: 15px;
        margin-bottom: 15px;
    }

    .about-us .d-flex i {
        font-size: 20px;
    }

    .about-us .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .about-us p {
        font-size: 16px;
        line-height: 1.5;
    }

    .about-us .d-flex h5 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .about-us .d-flex p {
        font-size: 14px;
        line-height: 1.5;
    }
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.breadcrumb ol {
    padding-left: 0;
    list-style-type: decimal;
}

.breadcrumb li {
    display: inline;
    margin-right: 5px;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb li::after {
    content: " > ";
}

.breadcrumb li:last-child::after {
    content: "";
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.hover-primary:hover {
    color: var(--bs-primary) !important;
}

.card-title {
    font-weight: 600;
    font-size: 1.1rem;
}
