
     /* ===== Global Styles ===== */
        :root {
          --primary: #005f73;
          --secondary: #0a9396;
          --accent: #ee9b00;
          --light: #f8f9fa;
          --dark: #212529;
          --gray: #6c757d;
          --light-gray: #e9ecef;
          --font-heading: 'Montserrat', sans-serif;
          --font-body: 'Open Sans', sans-serif;
          --font-special: 'Playfair Display', serif;
        }

        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }

        html {
          scroll-behavior: smooth;
        }

        body {
          font-family: var(--font-body);
          line-height: 1.6;
          color: var(--dark);
          background-color: var(--light);
          overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
          font-family: var(--font-heading);
          font-weight: 700;
          line-height: 1.2;
          margin-bottom: 1rem;
        }

        a {
          text-decoration: none;
          color: var(--primary);
          transition: all 0.3s ease;
        }

        a:hover {
          color: var(--secondary);
        }

        img {
          max-width: 100%;
          height: auto;
          display: block;
        }

        .container {
          width: 100%;
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
        }

        .btn {
          display: inline-block;
          padding: 12px 24px;
          border-radius: 4px;
          font-weight: 600;
          text-align: center;
          transition: all 0.3s ease;
          cursor: pointer;
          border: none;
          font-size: 1rem;
        }

        .btn-primary {
          background-color: var(--primary);
          color: white;
        }

        .btn-primary:hover {
          background-color: #004b5f;
          transform: translateY(-2px);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary {
          background-color: var(--secondary);
          color: white;
        }

        .btn-secondary:hover {
          background-color: #087a7d;
          transform: translateY(-2px);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .btn-outline {
          border: 2px solid var(--primary);
          color: var(--primary);
          background: transparent;
        }

        .btn-outline:hover {
          background-color: var(--primary);
          color: white;
        }

        .section-padding {
          padding: 5rem 0;
        }

        .text-center {
          text-align: center;
        }

        .section-title {
          font-size: 2.5rem;
          margin-bottom: 1.5rem;
          position: relative;
          display: inline-block;
        }

        .section-title:after {
          content: '';
          position: absolute;
          bottom: -10px;
          left: 50%;
          transform: translateX(-50%);
          width: 80px;
          height: 4px;
          background-color: var(--accent);
        }

        .section-subtitle {
          font-size: 1.1rem;
          color: var(--gray);
          margin-bottom: 3rem;
          max-width: 700px;
          margin-left: auto;
          margin-right: auto;
        }

        /* ===== Header Styles ===== */
        header {
          background-color: white;
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
          position: fixed;
          width: 100%;
          top: 0;
          z-index: 1000;
          transition: all 0.3s ease;
        }

        header.scrolled {
          padding: 5px 0;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .header-container {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 15px 0;
        }

        .logo {
          display: flex;
          align-items: center;
          gap: 15px;
        }

        .logo img {
          height: 50px;
        }

        .logo-text h1 {
          font-size: 1.5rem;
          color: var(--primary);
          margin-bottom: 0;
        }

        .logo-text p {
          font-size: 0.8rem;
          color: var(--gray);
          margin-top: 2px;
        }

        .main-nav ul {
          display: flex;
          list-style: none;
          gap: 25px;
        }

        .main-nav li {
          position: relative;
        }

        .main-nav a {
          font-weight: 600;
          color: var(--dark);
          font-size: 1rem;
          padding: 5px 0;
        }

        .main-nav a:hover {
          color: var(--primary);
        }

        .main-nav li.active a {
          color: var(--primary);
          font-weight: 700;
        }

        .main-nav li:after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 0;
          height: 2px;
          background-color: var(--primary);
          transition: width 0.3s ease;
        }

        .main-nav li:hover:after {
          width: 100%;
        }

        .cta-button {
          background-color: var(--accent);
          color: white;
          padding: 10px 20px;
          border-radius: 4px;
          font-weight: 600;
          transition: all 0.3s ease;
          margin-left: 20px;
        }

        .cta-button:hover {
          background-color: #d38d00;
          transform: translateY(-2px);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .mobile-menu-btn {
          display: none;
          cursor: pointer;
          background: none;
          border: none;
          padding: 5px;
        }

        .mobile-menu-btn span {
          display: block;
          width: 25px;
          height: 3px;
          background-color: var(--primary);
          margin: 5px 0;
          transition: all 0.3s ease;
        }

        /* ===== Hero Section ===== */
        .hero {
          padding: 150px 0 80px;
          background: linear-gradient(135deg, rgba(0, 95, 115, 0.9) 0%, rgba(10, 147, 150, 0.9) 100%), 
                      url('images/hero-bg.jpg') center/cover no-repeat;
          color: white;
          position: relative;
        }

        .hero .container {
          display: flex;
          align-items: center;
          justify-content: space-between;
          position: relative;
          z-index: 1;
        }

        .hero-content {
          flex: 1;
          padding-right: 40px;
          animation: fadeInUp 0.8s ease;
        }

        .hero-content h1 {
          font-size: 2.8rem;
          margin-bottom: 1.5rem;
          color: white;
          line-height: 1.3;
        }

        .hero-content p {
          font-size: 1.2rem;
          margin-bottom: 2rem;
          opacity: 0.9;
          max-width: 600px;
        }

        .hero-btns {
          display: flex;
          gap: 15px;
          margin-top: 2rem;
        }

        .hero-image {
          flex: 1;
          border-radius: 8px;
          overflow: hidden;
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
          animation: fadeIn 1s ease;
          position: relative;
        }

        .hero-image img {
          transition: transform 0.5s ease;
        }

        .hero-image:hover img {
          transform: scale(1.03);
        }

        .hero-features {
          display: flex;
          gap: 30px;
          margin-top: 3rem;
          flex-wrap: wrap;
        }

        .feature-item {
          display: flex;
          align-items: center;
          gap: 10px;
        }

        .feature-icon {
          width: 40px;
          height: 40px;
          background-color: rgba(255, 255, 255, 0.2);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
        }

        .feature-icon i {
          color: white;
          font-size: 1.2rem;
        }

        .feature-text {
          font-size: 0.95rem;
          opacity: 0.9;
        }
        
    /* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.slide-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 95, 115, 0.7) 0%, rgba(10, 147, 150, 0.7) 100%);
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-slider {
        max-width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 300px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
    
    
        /* ===== Services Section ===== */
        .services {
          background-color: white;
          position: relative;
        }

        .services .section-title {
          color: var(--primary);
        }

        .services-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 30px;
        }

        .service-card {
          background-color: var(--light);
          border-radius: 8px;
          padding: 30px;
          text-align: center;
          transition: all 0.3s ease;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          border: 1px solid rgba(0, 0, 0, 0.05);
          position: relative;
          overflow: hidden;
        }

        .service-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
          border-color: rgba(0, 95, 115, 0.2);
        }

        .service-card:before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 5px;
          background-color: var(--primary);
          transform: scaleX(0);
          transform-origin: left;
          transition: transform 0.3s ease;
        }

        .service-card:hover:before {
          transform: scaleX(1);
        }

        .service-icon {
          width: 80px;
          height: 80px;
          margin: 0 auto 20px;
          display: flex;
          align-items: center;
          justify-content: center;
          background-color: rgba(10, 147, 150, 0.1);
          border-radius: 50%;
          font-size: 2rem;
          color: var(--secondary);
          transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
          background-color: var(--primary);
          color: white;
        }

        .service-card h3 {
          margin-bottom: 1rem;
          color: var(--primary);
          font-size: 1.4rem;
        }

        .service-price {
          font-size: 1.2rem;
          font-weight: 700;
          color: var(--secondary);
          margin: 1rem 0;
        }

        .service-features {
          list-style: none;
          text-align: left;
          margin-top: 1.5rem;
        }

        .service-features li {
          margin-bottom: 0.8rem;
          position: relative;
          padding-left: 25px;
          font-size: 0.95rem;
        }

        .service-features li:before {
          content: '\f00c';
          font-family: 'Font Awesome 6 Free';
          font-weight: 900;
          color: var(--secondary);
          position: absolute;
          left: 0;
          top: 2px;
        }

        /* ===== About Section ===== */
        .about {
          background-color: var(--light-gray);
          position: relative;
        }

        .about .container {
          display: flex;
          align-items: center;
          gap: 50px;
        }

        .about-image {
          flex: 1;
          border-radius: 8px;
          overflow: hidden;
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
          position: relative;
        }

        .about-image img {
          transition: transform 0.5s ease;
        }

        .about-image:hover img {
          transform: scale(1.03);
        }

        .about-image:after {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(to bottom, rgba(0, 95, 115, 0.1), rgba(10, 147, 150, 0.2));
          pointer-events: none;
        }

        .about-content {
          flex: 1;
        }

        .about-content h2 {
          color: var(--primary);
          margin-bottom: 1.5rem;
          font-size: 2.2rem;
        }

        .about-content p {
          margin-bottom: 1.5rem;
          color: var(--dark);
          line-height: 1.7;
        }

        .credentials {
          display: flex;
          gap: 30px;
          margin: 2.5rem 0;
          flex-wrap: wrap;
        }

        .credential-item {
          text-align: center;
          flex: 1;
          min-width: 120px;
          background-color: white;
          padding: 20px;
          border-radius: 8px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          transition: all 0.3s ease;
        }

        .credential-item:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .credential-number {
          display: block;
          font-size: 2.2rem;
          font-weight: 700;
          color: var(--primary);
          font-family: var(--font-heading);
          line-height: 1;
          margin-bottom: 5px;
        }

        .credential-text {
          font-size: 0.9rem;
          color: var(--gray);
        }

        /* ===== Patient Info Section ===== */
        .patient-info {
          background-color: white;
        }

        .info-accordion {
          max-width: 800px;
          margin: 0 auto 3rem;
        }

        .accordion-item {
          margin-bottom: 15px;
          border-radius: 8px;
          overflow: hidden;
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
          border: 1px solid var(--light-gray);
        }

        .accordion-btn {
          width: 100%;
          padding: 20px;
          background-color: white;
          border: none;
          text-align: left;
          font-family: var(--font-heading);
          font-size: 1.1rem;
          font-weight: 600;
          color: var(--primary);
          cursor: pointer;
          display: flex;
          justify-content: space-between;
          align-items: center;
          transition: all 0.3s ease;
        }

        .accordion-btn:hover {
          background-color: var(--light-gray);
        }

        .accordion-btn:after {
          content: '\f078';
          font-family: 'Font Awesome 6 Free';
          font-weight: 900;
          font-size: 1rem;
          transition: transform 0.3s ease;
        }

        .accordion-btn.active {
          background-color: var(--primary);
          color: white;
        }

        .accordion-btn.active:after {
          transform: rotate(180deg);
          color: white;
        }

        .accordion-content {
          padding: 0 20px;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease;
          background-color: white;
        }

        .accordion-content-inner {
          padding: 20px 0;
        }

        .accordion-content p {
          margin-bottom: 1rem;
        }

        .accordion-content ul {
          margin-left: 20px;
          margin-bottom: 1rem;
        }

        .downloads-section {
          text-align: center;
          margin-top: 3rem;
        }

        .download-links {
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          gap: 15px;
          margin-top: 2rem;
        }

        .download-link {
          padding: 15px 25px;
          background-color: white;
          border-radius: 4px;
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
          font-weight: 600;
          border: 1px solid var(--light-gray);
          display: flex;
          align-items: center;
          gap: 10px;
          transition: all 0.3s ease;
        }

        .download-link i {
          color: var(--primary);
        }

        .download-link:hover {
          background-color: var(--primary);
          color: white;
          transform: translateY(-3px);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .download-link:hover i {
          color: white;
        }

    /* Team Section Styles */
    /* Team Stats Styles */
.team-stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto 40px;
    max-width: 600px;
}

.team-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.team-stat-item:hover {
    transform: translateY(-3px);
}

.stat-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-stats-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .team-stat-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
    
    
    
    .team {
        background-color: var(--light-gray);
    }
    
    .team .section-title {
        color: var(--primary);
    }
    
    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    
    .team-member {
        background-color: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        text-align: center;
    }
    
    .team-member:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .member-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }
    
    .member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .team-member:hover .member-image img {
        transform: scale(1.1);
    }
    
    .social-links {
        position: absolute;
        bottom: -50px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        gap: 15px;
        padding: 15px;
        background: rgba(0, 95, 115, 0.8);
        transition: all 0.3s ease;
    }
    
    .team-member:hover .social-links {
        bottom: 0;
    }
    
    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        background-color: white;
        border-radius: 50%;
        color: var(--primary);
        transition: all 0.3s ease;
    }
    
    .social-links a:hover {
        background-color: var(--accent);
        color: white;
    }
    
    .member-info {
        padding: 25px 20px;
    }
    
    .member-info h3 {
        color: var(--primary);
        margin-bottom: 5px;
        font-size: 1.3rem;
    }
    
    .position {
        color: var(--secondary);
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 0.95rem;
    }
    
    .bio {
        color: var(--gray);
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    @media (max-width: 768px) {
        .team-grid {
            grid-template-columns: 1fr 1fr;
        }
        
        .member-image {
            height: 200px;
        }
    }
    
    @media (max-width: 576px) {
        .team-grid {
            grid-template-columns: 1fr;
        }
    }

        /* ===== Gallery Section ===== */
        .gallery {
          background-color: white;
        }

        .gallery .section-title {
          color: var(--primary);
        }

        .gallery-grid {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
          gap: 25px;
        }

        .gallery-item {
          position: relative;
          border-radius: 8px;
          overflow: hidden;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          transition: all 0.3s ease;
          aspect-ratio: 4/3;
        }

        .gallery-item:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .gallery-item img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
          transform: scale(1.05);
        }

        .gallery-overlay {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          background: linear-gradient(to top, rgba(0, 95, 115, 0.9), transparent);
          color: white;
          padding: 20px;
          opacity: 0;
          transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
          opacity: 1;
        }

        .gallery-overlay h3 {
          margin-bottom: 5px;
          font-size: 1.1rem;
          transform: translateY(20px);
          transition: transform 0.3s ease;
        }

        .gallery-overlay p {
          font-size: 0.9rem;
          opacity: 0.9;
          transform: translateY(20px);
          transition: transform 0.3s ease 0.1s;
        }

        .gallery-item:hover .gallery-overlay h3,
        .gallery-item:hover .gallery-overlay p {
          transform: translateY(0);
        }

        /* ===== Contact Section ===== */
        .contact-section {
          background-color: var(--light-gray);
        }

        .contact-section .section-title {
          color: var(--primary);
        }

        .contact-container {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 40px;
        }

        .contact-info-card {
          background-color: white;
          border-radius: 8px;
          padding: 40px;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
          border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .contact-info-card h2 {
          color: var(--primary);
          margin-bottom: 1.5rem;
          padding-bottom: 10px;
          border-bottom: 2px solid var(--accent);
          font-size: 1.8rem;
        }

        .contact-method {
          display: flex;
          align-items: flex-start;
          margin-bottom: 1.5rem;
          gap: 15px;
        }

        .contact-icon {
          width: 50px;
          height: 50px;
          background-color: rgba(10, 147, 150, 0.1);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
          transition: all 0.3s ease;
        }

        .contact-method:hover .contact-icon {
          background-color: var(--primary);
        }

        .contact-icon i {
          color: var(--secondary);
          font-size: 1.3rem;
          transition: all 0.3s ease;
        }

        .contact-method:hover .contact-icon i {
          color: white;
        }

        .contact-details {
          flex: 1;
        }

        .contact-details h3 {
          margin-bottom: 0.5rem;
          color: var(--primary);
          font-size: 1.1rem;
        }

        .contact-details p, 
        .contact-details a {
          color: var(--dark);
          line-height: 1.5;
        }

        .contact-details a:hover {
          color: var(--secondary);
        }

        .contact-form-card {
          background-color: white;
          border-radius: 8px;
          padding: 40px;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
          border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .contact-form-card h2 {
          color: var(--primary);
          margin-bottom: 1.5rem;
          padding-bottom: 10px;
          border-bottom: 2px solid var(--accent);
          font-size: 1.8rem;
        }

        .form-group {
          margin-bottom: 1.5rem;
        }

        .form-group label {
          display: block;
          margin-bottom: 0.5rem;
          font-weight: 600;
          color: var(--primary);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
          width: 100%;
          padding: 12px 15px;
          border: 1px solid var(--light-gray);
          border-radius: 4px;
          font-family: var(--font-body);
          transition: all 0.3s ease;
          background-color: var(--light);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
          border-color: var(--secondary);
          outline: none;
          box-shadow: 0 0 0 3px rgba(10, 147, 150, 0.2);
          background-color: white;
        }

        .form-group textarea {
          min-height: 150px;
          resize: vertical;
        }

        .form-submit {
          width: 100%;
          padding: 15px;
          font-size: 1rem;
          margin-top: 10px;
        }

        .fullscreen-map {
          grid-column: 1 / -1;
          height: 450px;
          border-radius: 8px;
          overflow: hidden;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
          border: 1px solid rgba(0, 0, 0, 0.05);
        }

        /* ===== Footer Styles ===== */
        footer {
          background-color: var(--primary);
          color: white;
          padding: 5rem 0 0;
          position: relative;
        }

        .footer-main {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 40px;
          margin-bottom: 3rem;
        }

        .footer-logo {
          height: 150px;
          margin-bottom: 1.5rem;
        }

        .footer-about p {
          margin-top: 1rem;
          opacity: 0.8;
          line-height: 1.7;
        }

        .footer-links h4,
        .footer-social h4 {
          margin-bottom: 1.5rem;
          font-size: 1.2rem;
          position: relative;
          padding-bottom: 10px;
        }

        .footer-links h4:after,
        .footer-social h4:after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 50px;
          height: 2px;
          background-color: var(--accent);
        }

        .footer-links ul {
          list-style: none;
        }

        .footer-links li {
          margin-bottom: 0.8rem;
        }

        .footer-links a {
          color: rgba(255, 255, 255, 0.8);
          transition: all 0.3s ease;
          display: inline-block;
          padding: 3px 0;
        }

        .footer-links a:hover {
          color: white;
          transform: translateX(5px);
        }

        .social-icons {
          display: flex;
          gap: 15px;
        }

        .social-icons a {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 40px;
          height: 40px;
          background-color: rgba(255, 255, 255, 0.1);
          border-radius: 50%;
          transition: all 0.3s ease;
        }

        .social-icons a:hover {
          background-color: var(--accent);
          transform: translateY(-3px);
        }

        .social-icons i {
          font-size: 1.1rem;
        }

        .footer-bottom {
          border-top: 1px solid rgba(255, 255, 255, 0.1);
          padding: 1.5rem 0;
          display: flex;
          justify-content: space-between;
          align-items: center;
          flex-wrap: wrap;
          gap: 15px;
        }

        .footer-bottom p {
          opacity: 0.8;
          font-size: 0.9rem;
        }

        .legal-links {
          display: flex;
          gap: 20px;
        }

        .legal-links a {
          color: rgba(255, 255, 255, 0.7);
          font-size: 0.9rem;
          transition: all 0.3s ease;
        }

        .legal-links a:hover {
          color: white;
        }

        /* ===== Animations ===== */
        @keyframes fadeIn {
          from { opacity: 0; }
          to { opacity: 1; }
        }

        @keyframes fadeInUp {
          from {
            opacity: 0;
            transform: translateY(20px);
          }
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }

        /* ===== Responsive Styles ===== */
        @media (max-width: 1024px) {
          .hero-content h1 {
            font-size: 2.5rem;
          }
          
          .hero .container,
          .about .container {
            flex-direction: column;
          }
          
          .hero-content,
          .hero-image,
          .about-image,
          .about-content {
            flex: none;
            width: 100%;
          }
          
          .hero-content {
            padding-right: 0;
            margin-bottom: 3rem;
            text-align: center;
          }
          
          .hero-btns {
            justify-content: center;
          }
          
          .hero-features {
            justify-content: center;
          }
        }

        @media (max-width: 768px) {
          .section-padding {
            padding: 3rem 0;
          }
          
          .section-title {
            font-size: 2rem;
          }
          
          .main-nav {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: white;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-150%);
            transition: all 0.3s ease;
            z-index: 999;
          }
          
          .main-nav.active {
            transform: translateY(0);
          }
          
          .main-nav ul {
            flex-direction: column;
            gap: 15px;
          }
          
          .mobile-menu-btn {
            display: block;
          }
          
          .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
          }
          
          .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
          }
          
          .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
          }
          
          .contact-container {
            grid-template-columns: 1fr;
          }
          
          .footer-bottom {
            flex-direction: column;
            text-align: center;
          }
          
          .legal-links {
            justify-content: center;
          }
        }

        @media (max-width: 576px) {
          .hero {
            padding: 120px 0 60px;
          }
          
          .hero-content h1 {
            font-size: 2rem;
          }
          
          .hero-btns {
            flex-direction: column;
          }
          
          .credentials {
            flex-direction: column;
            gap: 20px;
          }
          
          .section-title {
            font-size: 1.8rem;
          }
        }