
    
  
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            background: #2c3e50;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn:hover {
            background: #1a252f;
        }

        /* Top Bar Styles */
        .top-bar {
            background: #FFFFFF;
            color: #2C3E50;
            /* padding: 10px 0;
            font-size: 14px; */
            margin-bottom: 5px;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* .logo {
            font-size: 24px;
            font-weight: bold;
            color: #3498db;
        } */

        .contact-info {
            display: flex;
            gap: 20px;
        }

       .contact-info a {
    display: flex;
    font-size: 1.2rem;   /* default for desktop */
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

/* ✅ Mobile override */
@media (max-width: 576px) {
    .contact-info a {
        font-size: .8rem;
    }
}

        .contact-info a:hover {
            color: #FDBE33;
        }

        /* Navigation Styles */
        .navbar {
            background: #FDBE33;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: rgb(7, 58, 78);
        }

        /* Navbar dropdown base */
/* Dropdown base */
/* Dropdown base */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 1;
  border-radius: 4px;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  border-bottom: 1px solid #f1f1f1;
}
.dropdown-content a:last-child {
  border-bottom: none;
}

/* Desktop: show on hover */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
  .dropdown:hover i {
    transform: rotate(180deg);
  }
}

/* Mobile: show on active class */
@media (max-width: 768px) {
  .dropdown.active .dropdown-content {
    display: block;
  }
  .dropdown.active i {
    transform: rotate(180deg);
  }
}

/* Chevron smooth animation */
.dropdown i {
  transition: transform 0.3s ease;
}


        .catalog-btn {
            background: #2C3E50;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 500;
            transition: background 0.3s;
        }

        .catalog-btn:hover {
            background: #568ec7;
        }


        

        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            margin-left: 5px;
        }

        /* Hero Section */
        .hero {
            height: 600px;
            position: relative;
            overflow: hidden;
        }

        .carousel {
            height: 100%;
            position: relative;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 80%;
            max-width: 800px;
            z-index: 2;
        }

        .carousel-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .carousel-content p {
            font-size: 20px;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .hero-btn {
            background: #3498db;
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            font-size: 18px;
            transition: background 0.3s;
        }

        .hero-btn:hover {
            background: #2980b9;
        }

        .carousel-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 2;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }

        .carousel-dot.active {
            background: white;
        }

        /* About Section */
        .about {
            padding: 60px 0;
            background: #FDFDFC;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            color: #2C3E50;
            margin-bottom: 10px;
        }

        .section-title p {
            color: rgb(66, 58, 58);
            max-width: 600px;
            margin: 0 auto;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .about-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
        }

        .about-image img {
            width: 100%;
            height: 400px;
            display: block;
        }

        .about-text {
            flex: 1;
        }

        .text-box {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid #3498db;
        }

        .text-box h3 {
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .comment-box {
            display: flex;
            align-items: center;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
        }

        .comment-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .comment-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .comment-text {
            flex: 1;
        }

        .comment-text p {
            font-style: italic;
            margin-bottom: 5px;
        }

        .comment-author {
            font-weight: bold;
            color: #2c3e50;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 60px 0 0;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #3498db;
        }

        .footer-column p {
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .contact-details {
            margin-top: 20px;
        }

        .contact-details p {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .contact-details i {
            margin-right: 10px;
            color: #3498db;
        }

        /*.map-container {*/
        /*    height: 330px;*/
        /*    width: 330px;*/
        /*    border-radius: 8px;*/
        /*    overflow: hidden;*/
        /*    margin-top: 20px;*/
        /*}*/

        /*.map-container iframe {*/
        /*    width: 100%;*/
        /*    height: 100%;*/
        /*    border: none;*/
        /*}*/
         .map-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.map-container iframe {
    width: 100% !important;  /* full width */
    height: 450px;            /* fixed height for mobile */
    border: 0;
    display: block;           /* prevents extra spacing */
}

@media (min-width: 768px) {
    .map-container iframe {
        height: 300px;        /* larger height for desktop */
    }
}


        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid #34495e;
            font-size: 14px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-image, .about-text {
                width: 100%;
            }
            
            .carousel-content h1 {
                font-size: 36px;
            }
            
            .carousel-content p {
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .top-bar-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .contact-info {
                justify-content: center;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                padding: 20px;
                z-index: 99;
            }
            
            .nav-links.active {
                display: flex;
            }
            
          
            
            .hero {
                height: 500px;
            }
            
            .carousel-content h1 {
                font-size: 28px;
            }
            
            .carousel-content p {
                font-size: 16px;
            }
        }

        @media (max-width: 576px) {
            .hero {
                height: 400px;
            }
            
            .carousel-content h1 {
                font-size: 24px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .footer-column {
                min-width: 100%;
            }
        }
    /* done root base */
 
    
    /* Services Section Styles */
    .services {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 50px;
    }

    .service-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
    }

    .service-card:hover {
        transform: translateY(-5px);
    }

    .service-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .service-shutter {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(52, 152, 219, 0.9) 0%, rgba(41, 128, 185, 0.9) 100%);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: translateY(100%);
        transition: all 0.5s ease;
        padding: 20px;
    }

    .service-card:hover .service-shutter {
        opacity: 1;
        transform: translateY(0);
    }

    .service-card:hover .service-image img {
        transform: scale(1.1);
    }

    .shutter-content {
        text-align: center;
        max-width: 100%;
    }

    .shutter-content h3 {
        font-size: 24px;
        margin-bottom: 15px;
        color: #f1c40f;
    }

    .shutter-content p {
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .shutter-content ul {
        text-align: left;
        margin-bottom: 20px;
        padding-left: 20px;
    }

    .shutter-content li {
        margin-bottom: 8px;
        position: relative;
    }

    .shutter-content li:before {
        content: "✓";
        color: #f1c40f;
        font-weight: bold;
        position: absolute;
        left: -20px;
    }

    .service-btn {
        background: #e74c3c;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s;
    }

    .service-btn:hover {
        background: #c0392b;
    }

    .service-name {
        padding: 20px;
        text-align: center;
        background: white;
    }

    .service-name h3 {
        color: #2c3e50;
        font-size: 20px;
        margin: 0;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        
        .service-image {
            height: 220px;
        }
    }

    @media (max-width: 768px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .service-image {
            height: 200px;
        }
        
        .shutter-content {
            padding: 15px;
        }
        
        .shutter-content h3 {
            font-size: 20px;
        }
    }

    @media (max-width: 576px) {
        .services-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .service-image {
            height: 250px;
        }
        
        .service-name {
            padding: 15px;
        }
    }

    /* Animation for service cards on scroll */
    .service-card {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s, transform 0.6s;
    }

    .service-card.visible {
        opacity: 1;
        transform: translateY(0);
    }
/* done services */


    /* Testimonials Section Styles */
    .testimonials {
        padding: 80px 0;
        background: #f8f9fa;
        position: relative;
    }

    .testimonials-container {
        position: relative;
        max-width: 1200px;
        margin: 50px auto 0;
        overflow: hidden;
        padding: 20px 80px;
    }

    .testimonials-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        background: white;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .testimonial-card.active {
        opacity: 1;
        position: relative;
        transform: scale(1);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        z-index: 2;
    }

    .testimonial-content {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .rating {
        color: #f1c40f;
        margin-bottom: 25px;
        font-size: 20px;
    }

    .testimonial-text {
        font-size: 18px;
        line-height: 1.6;
        color: #555;
        margin-bottom: 30px;
        font-style: italic;
        position: relative;
        padding: 0 20px;
    }

    .testimonial-text:before,
    .testimonial-text:after {
        content: '"';
        font-size: 50px;
        color: #3498db;
        opacity: 0.3;
        position: absolute;
        font-family: Georgia, serif;
    }

    .testimonial-text:before {
        top: -20px;
        left: 0;
    }

    .testimonial-text:after {
        bottom: -40px;
        right: 0;
    }

    .customer-info {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .customer-avatar {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid #3498db;
        flex-shrink: 0;
    }

    .customer-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .customer-details {
        text-align: left;
    }

    .customer-details h4 {
        margin: 0 0 5px 0;
        color: #2c3e50;
        font-size: 20px;
        font-weight: 600;
    }

    .customer-details p {
        margin: 0;
        color: #7f8c8d;
        font-size: 14px;
    }

    /* Navigation */
    .testimonial-nav {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 40px;
    }

    .nav-dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #bdc3c7;
        cursor: pointer;
        transition: all 0.3s;
    }

    .nav-dot.active {
        background: #3498db;
        transform: scale(1.3);
    }

    .nav-dot:hover {
        background: #3498db;
        transform: scale(1.2);
    }

    .testimonial-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #3498db;
        color: white;
        border: none;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 20px;
        transition: all 0.3s;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonial-nav-btn:hover {
        background: #2980b9;
        transform: translateY(-50%) scale(1.1);
    }

    .testimonial-nav-btn:active {
        transform: translateY(-50%) scale(0.95);
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .testimonials-container {
            padding: 20px 70px;
        }
        
        .testimonial-card {
            padding: 30px;
        }
        
        .testimonial-text {
            font-size: 16px;
        }
    }

    @media (max-width: 768px) {
        .testimonials-container {
            padding: 20px 60px;
        }
        
        .testimonial-nav-btn {
            width: 50px;
            height: 50px;
            font-size: 18px;
        }
        
        .prev-btn {
            left: 5px;
        }
        
        .next-btn {
            right: 5px;
        }
        
        .customer-info {
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }
        
        .customer-details {
            text-align: center;
        }
    }

    @media (max-width: 576px) {
        .testimonials-container {
            padding: 20px 40px;
        }
        
        .testimonial-card {
            padding: 25px 20px;
        }
        
        .testimonial-text {
            font-size: 15px;
            padding: 0 10px;
        }
        
        .testimonial-text:before {
            left: -5px;
        }
        
        .testimonial-text:after {
            right: -5px;
        }
        
        .testimonial-nav-btn {
            width: 45px;
            height: 45px;
            font-size: 16px;
        }
        
        .customer-avatar {
            width: 60px;
            height: 60px;
        }
    }
/* done testimonials */

    /* Brands Strip Section Styles */
    .brands-strip {
        padding: 40px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        overflow: hidden;
    }

    .brands-container {
        margin-top: 40px;
        position: relative;
    }

    .brands-marquee {
        width: 100%;
        overflow: hidden;
        position: relative;
        padding: 20px 0;
    }

    .brands-track {
        display: flex;
        animation: scrollBrands 30s linear infinite;
        width: max-content;
    }

    .brand-logo {
        flex: 0 0 auto;
        width: 300px;
        height: 200px;
        margin: 0 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .brand-logo:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .brand-logo img {
        max-width: 100%;
        max-height: 100%;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: filter 0.3s, opacity 0.3s;
    }

    .brand-logo:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }

    /* Pause animation on hover */
    .brands-marquee:hover .brands-track {
        animation-play-state: paused;
    }

    /* Animation */
    @keyframes scrollBrands {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    /* Gradient overlays for smooth edges */
    .brands-container::before,
    .brands-container::after {
        content: '';
        position: absolute;
        top: 0;
        width: 100px;
        height: 100%;
        z-index: 2;
    }

    .brands-container::before {
        left: 0;
        background: linear-gradient(to right, #f8f9fa, transparent);
    }

    .brands-container::after {
        right: 0;
        background: linear-gradient(to left, #f8f9fa, transparent);
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .brand-logo {
            width: 240px;
            height: 140px;
            margin: 0 20px;
        }
        
        .brands-track {
            animation-duration: 25s;
        }
    }

    @media (max-width: 768px) {
        .brand-logo {
            width: 240px;
            height: 130px;
            margin: 0 15px;
            padding: 10px;
        }
        
        .brands-track {
            animation-duration: 20s;
        }
        
        .brands-container::before,
        .brands-container::after {
            width: 60px;
        }
    }

    @media (max-width: 576px) {
        .brand-logo {
            width: 90px;
            height: 50px;
            margin: 0 10px;
        }
        
        .brands-track {
            animation-duration: 15s;
        }
        
        .brands-container::before,
        .brands-container::after {
            width: 40px;
        }
    }

    /* Alternative animation for reduced motion users */
    @media (prefers-reduced-motion: reduce) {
        .brands-track {
            animation: none;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            width: 100%;
        }
        
        .brands-container::before,
        .brands-container::after {
            display: none;
        }
    }
/* done brands */

    /* Product Section Styles */
    .products {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .product-tabs {
        margin-top: 40px;
    }

    .tab-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 30px;
    }

    .tab-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px 20px;
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
        min-width: 120px;
    }

    .tab-button i {
        font-size: 24px;
        margin-bottom: 8px;
        color: #3498db;
    }

    .tab-button span {
        font-weight: 500;
    }

    .tab-button.active {
        background: #3498db;
        color: white;
        border-color: #3498db;
    }

    .tab-button.active i {
        color: white;
    }

    .tab-button:hover:not(.active) {
        background: #f1f1f1;
    }

    .tab-content {
        display: none;
    }

    .tab-content.active {
        display: block;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }

    .product-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
    }

    .product-card:hover {
        transform: translateY(-5px);
    }

    .product-image {
        height: 200px;
        overflow: hidden;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .product-card:hover .product-image img {
        transform: scale(1.05);
    }

    .product-info {
        padding: 20px;
    }

    .product-info h3 {
        margin-bottom: 10px;
        color: #2c3e50;
    }

    .product-info p {
        color: #7f8c8d;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .buy-now-btn {
        width: 100%;
        padding: 10px;
        background: #e74c3c;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 500;
        transition: background 0.3s;
    }

    .buy-now-btn:hover {
        background: #c0392b;
    }

    @media (max-width: 768px) {
        .tab-buttons {
            gap: 5px;
        }
        
        .tab-button {
            min-width: 100px;
            padding: 10px 15px;
        }
        
        .tab-button i {
            font-size: 20px;
        }
        
        .product-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
    }

    @media (max-width: 576px) {
        .tab-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .tab-button {
            width: 100%;
            max-width: 250px;
            flex-direction: row;
            justify-content: flex-start;
        }
        
        .tab-button i {
            margin-bottom: 0;
            margin-right: 10px;
        }
        
        .product-grid {
            grid-template-columns: 1fr;
        }
    }
/* done product */


    /* Excellence Section Styles */
.excellence {
    padding: 20px 0;
    background: linear-gradient(135deg, #FDBE33 0%, #FDBE33 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.excellence .section-title h2 {
    color: white;
}

.excellence .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 columns on desktop */
    gap: 30px;
    margin-top: 40px;
}

.excellence-card {
    background: #2c3e50;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.5s, box-shadow 0.5s;
    opacity: 0;
}

.excellence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #f9fbfc;
    transition: transform 0.5s;
}

.excellence-card:hover .card-icon {
    transform: scale(1.2) rotate(10deg);
}

.card-content h3 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
    transition: all 0.5s;
}

.excellence-card:hover .card-content h3 {
    color: #f1c40f;
}

.card-content p {
    font-size: 18px;
    opacity: 0.9;
}

.card-animation {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.excellence-card:hover .card-animation {
    left: 100%;
}

/* Animation Classes */
.slide-left {
    transform: translateX(-100px);
}

.slide-right {
    transform: translateX(100px);
}

.slide-in {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .excellence-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller desktop/tablet */
        gap: 25px;
    }
    
    .excellence-card {
        padding: 35px 25px;
    }
    
    .card-content h3 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .excellence-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        gap: 20px;
    }
    
    .excellence-card {
        padding: 30px 20px;
    }
    
    .card-content h3 {
        font-size: 36px;
    }
    
    .card-icon {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .excellence-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 20px;
    }
    
    .slide-left, .slide-right {
        transform: translateY(50px);
    }
    
    .slide-in {
        transform: translateY(0);
    }
    
    .excellence-card {
        padding: 25px 15px;
    }
    
    .card-content h3 {
        font-size: 32px;
    }
    
    .card-icon {
        font-size: 35px;
    }
}
    /* done excellence */


/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  background: #f9f9f9;
}
.faq-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}
.faq-image {
    margin-top: 10px;
  flex: 1 1 400px;
}
.faq-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.faq-content {
  flex: 1 1 500px;
}
.faq-content h2 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #0a1d37;
}

/* Accordion */
.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px;
  background: #fff;
  border: none;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  color: #0a1d37;
}
.faq-question:hover {
  background: #0a1d37;
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #fff;
  padding: 0 15px;
}
.faq-answer p {
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  max-height: 200px; /* expand */
  padding: 10px 15px;
}

    