 :root {
            --primary-50: #eff6ff;
            --primary-100: #dbeafe;
            --primary-200: #bfdbfe;
            --primary-300: #93c5fd;
            --primary-400: #60a5fa;
            --primary-500: #3b82f6;
            --primary-600: #2563eb;
            --primary-700: #1d4ed8;
            --primary-800: #1e40af;
            --primary-900: #1e3a8a;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Avenir Next, BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
        }
        
        body {
            color: #1f2937;
        }
        
        .announcement-bar {
            background: linear-gradient(90deg, var(--primary-900) 0%, var(--primary-800) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .announcement-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20L0 20z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
            opacity: 0.1;
        }
        
        .header-top {
            position: relative;
            z-index: 1;
        }
        
        .news-ticker {
            display: flex;
            align-items: center;
            overflow: hidden;
            width: 70%;
        }
        
        .news-text {
            white-space: nowrap;
            padding-left: 100%;
            animation: ticker 20s linear infinite;
        }
        
        @keyframes ticker {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-100%, 0); }
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .logo-container:hover {
            transform: translateY(-2px);
        }
        
        .logo {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
           
            padding: 8px;
        }
        
        .logo img {
            
            height: 100px;
            width: auto;
        }
        
        .school-name {
            position: relative;
        }
        
        .school-name h1 {
            font-weight: 600;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, var(--primary-800), var(--primary-600));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .school-tagline {
            position: relative;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--primary-600);
            letter-spacing: 0.5px;
        }
        
        .school-tagline::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 20px;
            height: 2px;
            background: var(--primary-400);
            border-radius: 2px;
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            padding: 8px 16px;
            background: var(--primary-50);
            
            transition: all 0.3s ease;
        }
        
        .contact-info:hover {
            background: var(--primary-100);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
        }
        
        .contact-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 12px;
            box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
            color: var(--primary-600);
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            border-top: 1px solid #e5e7eb;
            border-bottom: 1px solid #e5e7eb;
            padding: 12px 0;
        }
        
        .nav-link {
            position: relative;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-600);
            background: var(--primary-50);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--primary-600);
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 20px;
        }
        
        .dropdown-group {
            position: relative;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 220px;
            background: white;
            
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .dropdown-group:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-item {
            display: block;
            padding: 10px 20px;
            font-size: 0.9rem;
            color: #4b5563;
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background: var(--primary-50);
            color: var(--primary-700);
            padding-left: 24px;
        }
        
        .social-icons {
            display: flex;
            align-items: center;
        }
        
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary-50);
            color: var(--primary-700);
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--primary-600);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
        }
        
        .mobile-menu-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--primary-50);
            color: var(--primary-700);
            transition: all 0.3s ease;
        }
        
        .mobile-menu-button:hover {
            background: var(--primary-100);
        }
        
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }
        
        .mobile-menu.open {
            max-height: 500px;
        }
        
        .mobile-nav-link {
            display: block;
            padding: 14px 0;
            font-weight: 500;
            border-bottom: 1px solid #f3f4f6;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-link:hover {
            color: var(--primary-600);
            padding-left: 8px;
        }
        
        .mobile-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        
        .mobile-dropdown-menu.open {
            max-height: 300px;
        }
        
        .mobile-dropdown-item {
            display: block;
            padding: 12px 0 12px 24px;
            font-size: 0.9rem;
            color: #4b5563;
            border-bottom: 1px solid #f9fafb;
            transition: all 0.3s ease;
        }
        
        .mobile-dropdown-item:hover {
            color: var(--primary-600);
            padding-left: 28px;
        }
        
       
        
       /* Carousel Styles */
.carousel {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay on background */
.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust darkness here */
    z-index: 0;
}

.carousel-item.active {
    opacity: 1;
    z-index: 1;
}

.carousel-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    max-width: 800px;
    color: white;
    z-index: 2; /* ensure content stays above overlay */
}

.carousel-title {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.carousel-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.carousel-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-600);
    color: white;
    font-weight: 600;
    border-radius: 0 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: white;
    transform: scale(1.2);
}

.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.carousel-progress-bar {
    height: 100%;
    width: 0%;
    background: white;
    transition: width 0.1s linear;
}

        
        @media (max-width: 768px) {
            .news-ticker {
                width: 100%;
                margin-bottom: 8px;
            }
            
            .header-top {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .portal-link {
                align-self: flex-end;
                margin-top: -30px;
            }
            
            .carousel {
                height: 400px;
            }
            
            .carousel-content {
                left: 5%;
                right: 5%;
                bottom: 15%;
            }
            
            .carousel-title {
                font-size: 1.8rem;
            }
            
            .carousel-subtitle {
                font-size: 1rem;
            }
            
            .carousel-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .carousel-control {
                width: 40px;
                height: 40px;
            }
        }
        
        @media (max-width: 480px) {
            .carousel {
                height: 350px;
            }
            
            .carousel-title {
                font-size: 1.5rem;
            }
            
            .carousel-subtitle {
                font-size: 0.9rem;
            }
        }

          .container {
           
        }
        
        /* About Section */
        .about-section {
            padding: 80px 6%;
            background: #fff;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 2rem;
            color: #555;
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: #1d4ed8;
            font-weight: 500;
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .welcome-message {
            font-size: 1rem;
            margin-bottom: 25px;
            color: #555;
            line-height: 1.8;
        }
        
        .about-highlights {
            margin: 30px 0;
        }
        
        .highlight-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .highlight-icon {
            width: 40px;
            height: 40px;
            background: #1d4ed8;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .highlight-text {
            color: #555;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 38px;
            background:#1d4ed8;
            color: white;
            text-decoration: none;
           
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background: #2563eb;
            transform: translateY(-2px);
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
        
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Events Section */
        .events-section {
            background: #f1f5f9;
            padding: 20px 6%;
        }
        
        .events-title {
            font-size: 2rem;
            color: #555;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .events-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        
        .event-card {
            background: white;
          
            padding: 25px;
            width: 100%;
            max-width: 350px;
            transition: transform 0.3s ease;
        }
        
        .event-card:hover {
            transform: translateY(-5px);
        }
        
        .event-date {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #1d4ed8;
        }
        
        .event-date i {
            margin-right: 10px;
            font-size: 1rem;
        }
        
        .event-date span {
            font-weight: 600;
        }
        
       
        
        .event-description {
            color: #6b7280;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .event-time {
            display: flex;
            align-items: center;
            color: #6b7280;
            font-size: 0.9rem;
        }
        
        .event-time i {
            margin-right: 8px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .about-content {
                flex-direction: column-reverse;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .about-text, .about-image {
                min-width: 100%;
            }
            
            .events-container {
                flex-direction: column;
                align-items: center;
            }
            
            .event-card {
                max-width: 100%;
            }
        }
         /* Responsive Design */
        @media (max-width: 568px) {
            .about-content {
                flex-direction: column-reverse;
            }
            
            .section-title {
                font-size: 1.4rem;
            }
            
            .about-text, .about-image {
                min-width: 100%;
            }
            
            .events-container {
                flex-direction: column;
                align-items: center;
            }
            
            .event-card {
                max-width: 100%;
            }

            .mission-vision-section {
            padding: 20px 6%;
           
        }
          .events-title {
            font-size: 1.5rem;
            color: #555;
            margin-bottom: 30px;
            text-align: center;
        }
         .event-title {
            font-size: 1.2rem!important;
            color: #1e3a8a;
            margin-bottom: 10px;
        }
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
    }
        
      

.enrollment-section {
            padding: 100px 6%;
            background: linear-gradient(to bottom, #f0f7ff 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .enrollment-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231e40af' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            z-index: 1;
        }
        
        .section-title {
            font-size: 2rem;
            color: #555;
            margin-bottom: 15px;
            font-weight: 500;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-500), var(--primary-700));
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 600px;
            margin: 25px auto 0;
            line-height: 1.6;
        }
        
        .programs-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .program-card {
            background: white;
          
            overflow: hidden;
           
            transition: all 0.4s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .program-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .program-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(30, 58, 138, 0.2) 100%);
            z-index: 1;
        }
        
        .program-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .program-card:hover .program-image img {
            transform: scale(1.1);
        }
        
        .program-level {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary-600);
            color: white;
            font-size: 0.8rem;
            font-weight: 500;
            padding: 6px 15px;
            border-radius: 20px;
            z-index: 2;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .program-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .program-title {
            font-size: 1.5rem;
            color: #1e293b;
            margin-bottom: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .program-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            flex-shrink: 0;
        }
        
        .early-years .program-icon {
            background: rgba(239, 146, 190, 0.2);
            color: #db2777;
        }
        
        .primary .program-icon {
            background: rgba(134, 239, 146, 0.2);
            color: #16a34a;
        }
        
        .secondary .program-icon {
            background: rgba(146, 194, 239, 0.2);
            color: #2563eb;
        }
        
        .college .program-icon {
            background: rgba(239, 212, 146, 0.2);
            color: #d97706;
        }
        
        .program-description {
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
        }
        
        .program-features {
            margin-bottom: 25px;
        }
        
        .program-feature {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: #475569;
        }
        
        .program-feature i {
            margin-right: 10px;
            color: var(--primary-500);
        }
        
        .program-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-600);
            color: white;
            font-weight: 500;
            padding: 12px 25px;
          
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: auto;
        }
        
        .program-link:hover {
            background: var(--primary-700);
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
        }
        
        .program-link i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .program-link:hover i {
            transform: translateX(4px);
        }
        
        @media (max-width: 1024px) {
            .programs-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .enrollment-section {
                padding: 40px 6%;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .programs-container {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .program-card {
                max-width: 400px;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 1.5rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .program-content {
                padding: 20px;
            }
            
            .program-title {
                font-size: 1.1rem;
            }
        }









           /* Testimonials Section */
        .testimonials-section {
            padding: 80px 6%;
            background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
            position: relative;
            overflow: hidden;
        }
        
        .testimonials-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: var(--primary-100);
            opacity: 0.3;
            z-index: 0;
        }
        
        .testimonials-section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: var(--primary-100);
            opacity: 0.3;
            z-index: 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }
        
        .section-title {
            font-size: 2rem;
            color: #555;
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
          
            font-weight: 500;
        }
        
        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-card {
            background: white;
           
            overflow: hidden;
       
            transition: all 0.4s ease;
            padding: 30px;
            position: relative;
            border: 1px solid var(--primary-100);
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 60px;
            color: var(--primary-100);
            opacity: 0.7;
        }
        
        .testimonial-content {
            position: relative;
            z-index: 1;
        }
        
        .testimonial-text {
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
            font-size: 1.05rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            border-top: 1px solid var(--primary-100);
            padding-top: 20px;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid var(--primary-100);
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-details {
            flex: 1;
        }
        
        .author-name {
            font-weight: 600;
            color: #1e3a8a;
            margin-bottom: 5px;
        }
        
        .author-role {
            color: #6b7280;
            font-size: 0.9rem;
        }
        
        .rating {
            color: #f59e0b;
            margin-top: 5px;
            font-size: 0.9rem;
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 10px;
            position: relative;
            z-index: 1;
        }
        
      
        
        /* Gallery Section */
        .gallery-section {
            padding: 80px 6%;
            background: white;
            position: relative;
        }
        
        .gallery-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
            gap: 10px;
            position: relative;
            z-index: 1;
        }
        
        .filter-btn {
            padding: 10px 20px;
            border-radius: 30px;
            background: var(--primary-50);
            color: var(--primary-700);
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            cursor: pointer;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--primary-600);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        
        .gallery-item {
            position: relative;
            
            overflow: hidden;
            
            transition: all 0.4s ease;
            height: 250px;
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px 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.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(30, 58, 138, 0.8), transparent);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-caption {
            color: white;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
        .gallery-caption h3 {
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .gallery-caption p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .view-more-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 40px;
            padding: 12px 28px;
            background: var(--primary-600);
            color: white;
            font-weight: 500;
           
            text-decoration: none;
            transition: all 0.3s ease;
     
        }
        
        .view-more-btn:hover {
            background: var(--primary-700);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
        }
        
        .btn-container {
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .testimonials-container {
                grid-template-columns: 1fr;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .section-title {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-filters {
                flex-direction: column;
                align-items: center;
            }
            
            .filter-btn {
                width: 180px;
                margin-bottom: 8px;
            }
            
            .testimonial-author {
                flex-direction: column;
                text-align: center;
            }
            
            .author-image {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }