/* ===================================
   COMPLETE CSS - MERGED & FIXED
   =================================== */

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #961937;
    --secondary-color: #e65476;
    --accent-color: #ff6f91;
    --dark-color: #2d1b3d;
    --text-color: #333333;
    --light-bg: #fef8fc;
    --white: #ffffff;
    --grey: #666666;
    --light-grey: #f5f5f5;
    --shadow: 0 4px 15px rgba(196, 84, 156, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    color: var(--grey);
}

/* Buttons (single authoritative definition) */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    /* border: 2px solid transparent; */
    transition: all 0.3s ease;
    font-size: 1rem;
    background: transparent;
    color: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    /* box-shadow: 0 4px 15px rgba(196, 84, 156, 0.3); */
}

.btn-primary:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 20px rgba(196, 84, 156, 0.4); */
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid transparent;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img{
    width: 250px;
    height: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* If a nav item contains the booking button, we avoid the underline on hover.
   :has() is not used for broad compatibility; instead give the booking link a class. */
.btn-book-now {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-block;
}

.btn-book-now:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #9d1c22bf, rgb(0 0 0 / 88%)), url(https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920) center / cover no-repeat;
    margin-top: 70px;
    padding: 60px 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(244, 164, 212, 0.3), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    color: var(--white);
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
}

.feature-badge i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 3rem;
}

/* Why Choose Us */
.why-choose-us {
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(196, 84, 156, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Popular Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(196, 84, 156, 0.25);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 84, 156, 0.9), rgba(139, 46, 111, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.btn-view {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    margin-bottom: 0.75rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
}

.service-link:hover {
    gap: 12px;
}

.text-center {
    text-align: center;
}

/* AIBAC CTA */
.aibac-cta {
    background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
    color: var(--white);
}

.cta-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.cta-text h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-text p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-features {
    margin-bottom: 2rem;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.05rem;
}

.cta-features i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.cta-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.1);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials */
.testimonials {
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(196, 84, 156, 0.2);
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--grey);
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-col ul.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-col ul.contact-info i {
    color: var(--accent-color);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.footer-bottom a {
    color: var(--accent-color);
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    z-index: 999;
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .logo img{
        width: 180px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .btn-book-now {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 50px 0;
    }

    .hero {
        min-height: 80vh;
        padding: 40px 0;
    }

  .feature-badge{
    padding: 8px 14px;
    font-size: 12px;
  }
  .feature-badge i {
    font-size: 16px;
  }
  .hero-features {
    gap: 10px;
  }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .features-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .scroll-to-top {
        bottom: 80px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }


    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb i {
    font-size: 0.8rem;
    margin: 0 10px;
}

/* Contact Info Cards */
.contact-info-section {
    padding: 80px 0 40px;
    background: var(--light-bg);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(196, 84, 156, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Booking Form Section */
.booking-section {
    padding: 80px 0;
    background: var(--white);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.info-box h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-color);
}

.info-box h3 i {
    color: var(--primary-color);
}

.info-box ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-box ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box ul li i {
    color: var(--primary-color);
}

/* Form Styles */
.booking-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(196, 84, 156, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group label span {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(196, 84, 156, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* override .btn inside form to full width buttons */
.booking-form .btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
}

/* reuse .btn-primary styles for form submit */
.booking-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    /* box-shadow: 0 4px 15px rgba(196, 84, 156, 0.3); */
}

.booking-form .btn-primary:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 20px rgba(196, 84, 156, 0.4); */
}

.success-message {
    display: none;
    padding: 1.5rem;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    color: #155724;
    margin-bottom: 1.5rem;
}

.success-message.show {
    display: block;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(196, 84, 156, 0.15);
    height: 450px;
    background: var(--white);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Business Hours */
.business-hours {
    padding: 80px 0;
    background: var(--white);
}

.hours-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.hours-grid {
    display: grid;
    gap: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
}

.hours-row.today {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.day {
    font-weight: 600;
}

.time {
    color: var(--grey);
}

.hours-row.today .time {
    color: rgba(255, 255, 255, 0.9);
}

/* Reusable small utilities */
.text-center { text-align: center; }

/* ============================================================
   End of main CSS
   ============================================================ */

/* Responsive adjustments for Contact / Booking etc. (kept and deduped) */
@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .nav-menu.active { left: 0; }

    .booking-container { grid-template-columns: 1fr; gap: 2rem; }

    .form-row { grid-template-columns: 1fr; }

    .booking-form { padding: 2rem 1.5rem; }

    .hours-container { padding: 2rem 1.5rem; }

    .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    .stats-grid { grid-template-columns: 1fr; }
}

                /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 120px 0 60px;
            text-align: center;
            margin-top: 70px;
        }

        .page-header h1 {
            color: var(--white);
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
        }

        .breadcrumb {
            color: rgba(255,255,255,0.9);
        }

        .breadcrumb a {
            color: var(--white);
        }

        .breadcrumb i {
            font-size: 0.8rem;
            margin: 0 10px;
        }

        /* Services Navigation Tabs */
        .services-nav {
            background: var(--white);
            padding: 2rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 95px;
            z-index: 100;
        }

        .services-tabs {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .tab-link {
            padding: 10px 20px;
            background: var(--light-bg);
            border-radius: 50px;
            color: var(--text-color);
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .tab-link:hover,
        .tab-link.active {
            background: var(--primary-color);
            color: var(--white);
        }

        /* Service Sections */
        .service-detail-section {
            padding: 80px 0;
        }

        .service-detail-section.alt-bg {
            background: var(--light-bg);
        }

        .service-detail-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .service-detail-header h2 {
            margin-bottom: 1rem;
        }

        .service-detail-header p {
            font-size: 1.1rem;
            color: var(--grey);
        }

        .service-detail-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .service-detail-content.reverse {
            direction: rtl;
        }

        .service-detail-content.reverse > * {
            direction: ltr;
        }

        .service-detail-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(196, 84, 156, 0.2);
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            position: sticky;
            top: 300px;
        }

        .service-detail-text h3 {
            margin: 2rem 0 1.5rem;
            color: var(--dark-color);
        }

        .service-detail-text p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .services-list {
            margin: 2rem 0;
        }

        .service-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .alt-bg .service-item {
            background: var(--light-bg);
        }

        .service-item:hover {
            transform: translateX(10px);
            box-shadow: 0 6px 20px rgba(196, 84, 156, 0.2);
        }

        .service-item i {
            color: var(--primary-color);
            font-size: 1.5rem;
            flex-shrink: 0;
            margin-top: 3px;
        }

        .service-item strong {
            display: block;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .service-item p {
            color: var(--grey);
            margin: 0;
        }

        .mt-2 {
            margin-top: 2rem;
        }

        /* Service Benefits */
        .service-benefits {
            background: var(--light-bg);
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            margin: 20px auto;
            border-radius: 2px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .benefit-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(196, 84, 156, 0.2);
        }

        .benefit-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .benefit-card h4 {
            margin-bottom: 0.75rem;
            color: var(--dark-color);
        }

        .benefit-card p {
            color: var(--grey);
            margin: 0;
        }

        /* Services CTA */
        .services-cta {
            background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
            color: var(--white);
            padding: 80px 0;
        }

        .cta-box {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-box h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .cta-box p {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        /* Footer */
        .footer {
            background: var(--dark-color);
            color: rgba(255,255,255,0.8);
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col h3 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .footer-col p {
            color: rgba(255,255,255,0.7);
        }

        .footer-col ul li {
            margin-bottom: 0.75rem;
        }

        .footer-col ul li a {
            color: rgba(255,255,255,0.7);
        }

        .footer-col ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .footer-col ul.contact-info li {
            display: flex;
            gap: 12px;
        }

        .footer-col ul.contact-info i {
            color: var(--accent-color);
            margin-top: 4px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--white);
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
        }

        .footer-bottom a {
            color: var(--accent-color);
        }

        /* Floating Elements */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25d366;
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 999;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        .scroll-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 999;
        }

        .scroll-to-top.show {
            display: flex;
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
        }


        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 120px 0 60px;
            text-align: center;
            margin-top: 70px;
        }

        .page-header h1 {
            color: var(--white);
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
        }

        .breadcrumb {
            color: rgba(255,255,255,0.9);
        }

        .breadcrumb a {
            color: var(--white);
        }

        .breadcrumb i {
            font-size: 0.8rem;
            margin: 0 10px;
        }

        /* Profile Hero */
        .profile-hero {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .profile-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: start;
        }

        .profile-left {
            position: sticky;
            top: 100px;
        }

        .profile-image {
            border-radius: 20px;
            overflow: hidden;
            /* box-shadow: 0 10px 40px rgba(196, 84, 156, 0.2); */
            /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
            min-height: 400px;
            margin-bottom: 2rem;
        }

        .profile-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .stat-box {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow);
        }

        .stat-box .number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-box .label {
            color: var(--grey);
            font-size: 0.9rem;
        }

        .profile-info h1 {
            color: var(--dark-color);
            margin-bottom: 0.5rem;
        }

        .profile-title {
            color: var(--primary-color);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 2rem;
            display: block;
        }

        .profile-description {
            line-height: 1.8;
            color: var(--text-color);
            margin-bottom: 2rem;
        }

        .profile-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .highlight-badge {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Qualifications Section */
        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            margin: 20px auto;
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--grey);
            margin-bottom: 3rem;
        }

        .qualifications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .qualification-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--primary-color);
            transition: all 0.3s ease;
        }

        .qualification-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(196, 84, 156, 0.2);
        }

        .qualification-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .qualification-card h4 {
            color: var(--dark-color);
            margin-bottom: 1rem;
        }

        .qualification-card p {
            color: var(--grey);
            margin: 0;
        }

        /* Expertise Section */
        .expertise {
            background: var(--light-bg);
        }

        .expertise-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .expertise-item {
            display: flex;
            gap: 1.5rem;
            padding: 2rem;
            background: var(--white);
            border-radius: 15px;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .expertise-item:hover {
            transform: translateX(10px);
            box-shadow: 0 6px 20px rgba(196, 84, 156, 0.2);
        }

        .expertise-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
            opacity: 0.5;
            flex-shrink: 0;
        }

        .expertise-content h4 {
            color: var(--dark-color);
            margin-bottom: 0.75rem;
        }

        .expertise-content p {
            color: var(--grey);
            margin: 0;
        }

        /* Journey Timeline */
        .journey {
            background: var(--white);
        }

        .timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
            border-radius: 2px;
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
            position: relative;
        }

        .timeline-item:nth-child(even) .timeline-content {
            grid-column: 1;
        }

        .timeline-item:nth-child(even) .timeline-year {
            grid-column: 2;
            grid-row: 1;
            text-align: right;
        }

        .timeline-content {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }

        .timeline-content h4 {
            color: var(--dark-color);
            margin-bottom: 1rem;
        }

        .timeline-year {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .timeline-item:nth-child(even) .timeline-year {
            justify-content: flex-start;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 2rem;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--white);
            border: 4px solid var(--primary-color);
            border-radius: 50%;
            z-index: 1;
        }

        /* CTA Section */
        .profile-cta {
            background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
            color: var(--white);
        }

        .cta-box {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-box h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .cta-box p {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        /* Footer */
        .footer {
            background: var(--dark-color);
            color: rgba(255,255,255,0.8);
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col h3 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .footer-col p {
            color: rgba(255,255,255,0.7);
        }

        .footer-col ul li {
            margin-bottom: 0.75rem;
        }

        .footer-col ul li a {
            color: rgba(255,255,255,0.7);
        }

        .footer-col ul li a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .footer-col ul.contact-info li {
            display: flex;
            gap: 12px;
        }

        .footer-col ul.contact-info i {
            color: var(--accent-color);
            margin-top: 4px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--white);
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
        }

        .footer-bottom a {
            color: var(--accent-color);
        }

        /* Floating Elements */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25d366;
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 999;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        .scroll-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 999;
        }

        .scroll-to-top.show {
            display: flex;
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
        }

        /* Responsive */
        @media (max-width: 1140px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                padding: 2rem;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                transition: left 0.3s ease;
                align-items: flex-start;
                gap: 1.5rem;
            }

            .tab-link {
                font-size: 14px;
                padding: 8px 16px;
            }

            .nav-menu.active {
                left: 0;
            }

            .profile-content {
                grid-template-columns: 1fr;
            }

            .profile-left {
                position: static;
            }

            .qualifications-grid {
                grid-template-columns: 1fr;
            }

            .timeline::before {
                left: 20px;
            }

            

            .timeline-item {
                grid-template-columns: 1fr;
                padding-left: 50px;
            }

            .timeline-item:nth-child(even) .timeline-content,
            .timeline-item:nth-child(even) .timeline-year {
                grid-column: 1;
                text-align: left;
            }

            .timeline-year {
                justify-content: flex-start !important;
                font-size: 1.5rem;
            }

            .timeline-dot {
                left: 20px;
            }

            section {
                padding: 50px 0;
            }
        }




        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }
.services-nav{
                top: 75px;
                display: none;
            }
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                padding: 2rem;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                transition: left 0.3s ease;
                align-items: flex-start;
                gap: 1.5rem;
            }

            .nav-menu.active {
                left: 0;
            }

            .service-detail-content,
            .service-detail-content.reverse {
                grid-template-columns: 1fr;
                direction: ltr;
            }

            .services-tabs {
                gap: 10px;
            }

            .tab-link {
                font-size: 12px;
                padding: 5px 10px;
            }

            .service-detail-section {
                padding: 50px 0;
            }

            .service-item {
                padding: 1rem;
            }

            .service-item:hover {
                transform: translateX(5px);
            }
        }

               /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 120px 0 60px;
            text-align: center;
            margin-top: 70px;
        }

        .page-header h1 {
            color: var(--white);
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
        }

        .breadcrumb {
            color: rgba(255,255,255,0.9);
        }

        .breadcrumb a {
            color: var(--white);
        }

        .breadcrumb i {
            font-size: 0.8rem;
            margin: 0 10px;
        }

        /* Our Story */
        .our-story {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .story-text h2 {
            margin-bottom: 1.5rem;
        }

        .story-text p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .story-text strong {
            color: var(--primary-color);
        }

        .story-highlights {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .highlight-item i {
            font-size: 2rem;
            color: var(--primary-color);
        }

        .highlight-item strong {
            display: block;
            color: var(--dark-color);
            margin-bottom: 0.25rem;
        }

        .highlight-item span {
            color: var(--grey);
            font-size: 0.9rem;
        }

        .story-image {
            position: sticky;
            top: 150px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(196, 84, 156, 0.2);
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            min-height: 400px;
        }

        .experience-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: var(--white);
            padding: 1.5rem 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .badge-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .badge-text {
            color: var(--dark-color);
            font-weight: 600;
        }

        /* Section Styles */
        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            margin: 20px auto;
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--grey);
            margin-bottom: 3rem;
        }

        /* Mission & Vision */
        .mv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .mv-card {
            background: var(--white);
            padding: 3rem 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.3s ease;
        }

        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(196, 84, 156, 0.2);
        }

        .mv-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 3rem;
        }

        .mv-card h3 {
            margin-bottom: 1.5rem;
            color: var(--dark-color);
        }

        .mv-card p {
            line-height: 1.8;
        }

        /* Our Values */
        .our-values {
            background: var(--light-bg);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .value-card {
            background: var(--white);
            padding: 2rem 1.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(196, 84, 156, 0.2);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.8rem;
        }

        .value-card h4 {
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        /* What Sets Apart */
        .what-sets-apart {
            background: var(--white);
        }

        .apart-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .apart-item {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
            padding: 2rem;
            background: var(--light-bg);
            border-radius: 15px;
            border-left: 4px solid var(--primary-color);
        }

        .apart-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-color);
            opacity: 0.5;
        }

        .apart-item h3 {
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .apart-item p {
            line-height: 1.8;
        }

        /* Our Team */
        .our-team {
            background: var(--light-bg);
        }

        /* .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        } */
         .team-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
            justify-content: center;
            align-items: center;
         }

        .team-grid img {
            margin: auto;
            max-width: 500px;
            width: 100%;
            height: auto;
             border-radius: 15px;
        }

        .team-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(196, 84, 156, 0.25);
        }

        .team-image {
            position: relative;
            height: 300px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            overflow: hidden;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-social {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .team-card:hover .team-social {
            opacity: 1;
        }

        .team-social a {
            width: 35px;
            height: 35px;
            background: var(--white);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-info {
            padding: 1.5rem;
            text-align: center;
        }

        .team-info h3 {
            margin-bottom: 0.5rem;
            color: var(--dark-color);
        }

        .team-info span {
            display: block;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .team-info p {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .team-link {
            color: var(--primary-color);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .team-link:hover {
            gap: 10px;
        }

        /* About CTA */
        .about-cta {
            background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
            color: var(--white);
        }

        .cta-box {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-box h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .cta-box p {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                padding: 2rem;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                transition: left 0.3s ease;
                align-items: flex-start;
                gap: 1.5rem;
            }

            .nav-menu.active {
                left: 0;
            }
            .service-detail-image{
                position: static;
            }

            .story-content {
                grid-template-columns: 1fr;
            }

            .mv-grid,
            .values-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

            .apart-item {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .apart-number {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            section {
                padding: 50px 0;
            }
        }


         
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 120px 0 60px;
            text-align: center;
            margin-top: 70px;
        }

        .page-header h1 {
            color: var(--white);
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
        }

        .page-header .subtitle {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 1rem;
        }

        .breadcrumb {
            color: rgba(255,255,255,0.9);
        }

        .breadcrumb a {
            color: var(--white);
        }

        .breadcrumb i {
            font-size: 0.8rem;
            margin: 0 10px;
        }

        /* Institute Intro */
        .institute-intro {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .intro-text h2 {
            margin-bottom: 1.5rem;
        }

        .intro-text p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .intro-features {
            display: grid;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .intro-feature {
            display: flex;
            gap: 1rem;
            align-items: center;
            padding: 1rem;
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .intro-feature i {
            font-size: 2rem;
            color: var(--primary-color);
        }

        .intro-feature strong {
            display: block;
            color: var(--dark-color);
            margin-bottom: 0.25rem;
        }

        .intro-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(196, 84, 156, 0.2);
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            /* min-height: 400px; */
            position: sticky;
            top: 150px;
        }

        /* Courses Section */
        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            margin: 20px auto;
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--grey);
            margin-bottom: 3rem;
        }

        .courses-grid {
            display: grid;
            gap: 3rem;
        }

        .course-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 40px rgba(196, 84, 156, 0.25);
        }

        .course-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 2rem;
            position: relative;
        }

        .course-duration {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .course-header h3 {
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .course-header p {
            color: rgba(255,255,255,0.9);
            margin: 0;
        }

        .course-body {
            padding: 2rem;
        }

        .course-description {
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .course-modules h4 {
            color: var(--dark-color);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .course-modules h4 i {
            color: var(--primary-color);
        }

        .modules-list {
            display: grid;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .module-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 0.75rem;
            background: var(--light-bg);
            border-radius: 8px;
        }

        .module-item i {
            color: var(--primary-color);
            margin-top: 3px;
            flex-shrink: 0;
        }

        .course-footer {
            padding: 1.5rem 2rem;
            background: var(--light-bg);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .course-benefits {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .benefit-tag {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: var(--grey);
        }

        .benefit-tag i {
            color: var(--primary-color);
        }

        /* Why Choose AIBAC */
        .why-aibac {
            background: var(--light-bg);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(196, 84, 156, 0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
        }

        .feature-card h4 {
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        /* Admission Process */
        .admission-process {
            background: var(--white);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
            font-weight: 700;
        }

        .process-step h4 {
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .process-step p {
            color: var(--grey);
            margin: 0;
        }

        /* CTA Section */
        .courses-cta {
            background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
            color: var(--white);
        }

        .cta-box {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-box h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .cta-box p {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
  /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                padding: 2rem;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                transition: left 0.3s ease;
                align-items: flex-start;
                gap: 1.5rem;
            }

            .nav-menu.active {
                left: 0;
            }

            .intro-content {
                grid-template-columns: 1fr;
            }

            .course-footer {
                flex-direction: column;
                align-items: flex-start;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .cta-buttons .btn {
                width: 100%;
            }

            section {
                padding: 50px 0;
            }
        }

            /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 120px 0 60px;
            text-align: center;
            margin-top: 70px;
        }

        .page-header h1 {
            color: var(--white);
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
        }

        .breadcrumb {
            color: rgba(255,255,255,0.9);
        }

        .breadcrumb a {
            color: var(--white);
        }

        .breadcrumb i {
            font-size: 0.8rem;
            margin: 0 10px;
        }

        /* Gallery Filters */
        .gallery-filters {
            padding: 60px 0 40px;
            background: var(--light-bg);
        }

        .filter-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 24px;
            background: var(--white);
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary-color);
            color: var(--white);
        }

        /* Gallery Grid */
        .gallery-section {
            padding: 60px 0 80px;
            background: var(--light-bg);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            aspect-ratio: 1;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        /* .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(196, 84, 156, 0.3);
        } */

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
            border-radius: 15px;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(45, 27, 61, 0.9), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            opacity: 1;
            transition: all 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-title {
            color: var(--white);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .gallery-category {
            color: var(--accent-color);
            font-size: 0.9rem;
            z-index: 2;
            padding: 20px;
            position: absolute;
        }

        /* Stats Section */
        .gallery-stats {
            padding: 80px 0;
            background: var(--white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            margin: 20px auto;
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--grey);
            margin-bottom: 3rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--grey);
            font-size: 1rem;
        }

        /* Instagram Feed */
        .instagram-feed {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }

        .instagram-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            aspect-ratio: 1;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            cursor: pointer;
        }

        .instagram-item:hover {
            transform: scale(1.05);
        }

        .instagram-overlay {
            position: absolute;
            inset: 0;
            background: rgba(196, 84, 156, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .instagram-item:hover .instagram-overlay {
            opacity: 1;
        }

        .instagram-overlay i {
            color: var(--white);
            font-size: 2rem;
        }

        /* CTA Section */
        .gallery-cta {
            background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
            color: var(--white);
            padding: 80px 0;
        }

        .cta-box {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-box h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .cta-box p {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            /* box-shadow: 0 4px 15px rgba(196, 84, 156, 0.3); */
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            /* box-shadow: 0 6px 20px rgba(196, 84, 156, 0.4); */
        }

             /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.95);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
            overflow-y: auto;
        }

        .lightbox-close {
            position: absolute;
            right: 10px;
            background: none;
            border: none;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
            padding: 10px;
            mix-blend-mode: difference;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                padding: 2rem;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                transition: left 0.3s ease;
                align-items: flex-start;
                gap: 1.5rem;
            }

            .nav-menu.active {
                left: 0;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 1rem;
            }

            .instagram-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }

            .stats-grid {
                grid-template-columns: repeat(1, 1fr);
            }
        }