    /* SaahasIndia Custom Styles */

    :root {
        --primary-color: #007bff;
        --secondary-color: #6c757d;
        --light-bg: #f8f9fa;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .navbar {
        transition: all 0.3s ease;
    }

    .navbar-brand img {
        transition: transform 0.3s ease;
    }

    .navbar-brand:hover img {
        transform: scale(1.05);
    }

    .navbar-nav .nav-link {
        font-weight: 500;
        margin: 0 0.5rem;
        transition: color 0.3s ease;
    }

    .navbar-light .navbar-nav .nav-link {
        color: #333;
    }

    .navbar-dark .navbar-nav .nav-link {
        color: rgba(255,255,255,0.9) !important;
    }

    .navbar-dark .navbar-nav .nav-link:hover {
        color: #fff !important;
    }

    .navbar-nav .nav-link:hover {
        color: var(--primary-color) !important;
    }

    #quoteBtn {
        font-weight: 600;
        padding: 0.5rem 1.5rem;
        border-radius: 25px;
        transition: all 0.3s ease;
    }

    #quoteBtn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,123,255,0.3);
    }

    /* Hero Section */
    .hero-section {
        margin-top: 80px;
        margin-bottom: 0;
        width: 100%;
    }

    .hero-section .carousel {
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .hero-section .carousel-inner {
        max-height: 650px;
        overflow: hidden;
    }

    .hero-section .carousel-item {
        height: 650px;
        position: relative;
    }

    .carousel-image-wrapper {
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: relative;
    }

    .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
        object-position: center;
        display: block;
    }

    .carousel-caption {
        background: rgba(0,0,0,0.5);
        border-radius: 15px;
        padding: 2rem;
        bottom: 2%;
    }

    .carousel-caption h1 {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 5%;
        opacity: 0.8;
    }

    .carousel-indicators [data-bs-target] {
        background-color: var(--primary-color);
    }

    /* Dropdown Submenu */
    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -0.25rem;
        margin-left: 0.25rem;
        display: none;
        min-width: 12rem;
    }

    
    .dropdown-submenu > a::after {
        display: inline-block;
        margin-left: .255em;
        vertical-align: .255em;
        content: "";
        border-top: .3em solid;
        border-right: .3em solid transparent;
        border-bottom: 0;
        border-left: .3em solid transparent;
    }

    .dropdown-submenu:hover > a::after {
        border-left-color: #007bff;
    }

    .dropdown-submenu > a {
        padding-right: 1.5rem;
    }

    /* Modal Form */
    #quoteModal .modal-content {
        border-radius: 15px;
        border: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    #quoteModal .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
    }

    #quoteForm button[type="submit"] {
        background: linear-gradient(45deg, var(--primary-color), #0056b3);
        border: none;
    }

    /* Sections */
    /* section:not(.hero-section) {
        padding: 80px 0;
    } */

    section h2 {
        font-weight: 700;
        margin-bottom: 2rem;
        color: #333;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hero-section .carousel-item {
            height: 550px;
        }
    }

    @media (max-width: 768px) {
        .hero-section .carousel-item {
            height: 400px;
        }
        
        .carousel-caption {
            padding: 1rem;
            bottom: 10%;
        }
        
        .carousel-caption h1 {
            font-size: 2rem;
        }

        .carousel-caption p {
            font-size: 0.95rem;
        }

        /* Mobile Dropdown Adjustments */
        .dropdown-submenu > .dropdown-menu {
            position: static;
            float: none;
            width: 100%;
            margin: 0;
            padding: 0.5rem 0;
            border: none;
            box-shadow: none;
            display: none;
            left: auto;
        }

        .dropdown-submenu.show > .dropdown-menu,
        .dropdown-submenu:hover > .dropdown-menu {
            display: block !important;
        }

        .dropdown-submenu > a {
            display: block;
            padding: 0.5rem 1rem !important;
        }

        .dropdown-submenu > a::after {
            float: none;
            border-width: 0.425em 0.425em 0 0.425em;
            border-left-color: transparent;
            border-top-color: #6c757d;
            margin-right: auto;
            margin-top: -0.2em;
        }
    }

    @media (max-width: 576px) {
        .hero-section .carousel-item {
            height: 400px;
        }
        
        .carousel-caption {
            padding: 1rem;
        margin-top: 10%;
        }
        
        .carousel-caption h1 {
            font-size: 1.6rem !important;
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }

        .carousel-caption p {
            font-size: 0.85rem !important;
            display: block !important;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .carousel-caption .btn {
            padding: 0.4rem 0.8rem;
            font-size: 0.8rem !important;
        }

        .carousel-caption .d-flex {
            flex-direction: column !important;
            gap: 0.5rem !important;
        }
    }

    @media (max-width: 768px) {
        .carousel-caption h1 {
            font-size: 2.2rem !important;
        }
        
        .carousel-caption p {
            font-size: 1rem !important;
        }
    }

    /* Light BG for sections */
    section:nth-child(odd) {
        background: var(--light-bg);
    }

    /* Smooth scroll */
    html {
        scroll-behavior: smooth;
    }

    /* AOS Animations & Cards */
    [data-aos] {
        transition-duration: 1s;
    }

    .card {
        transition: all 0.4s ease;
        border: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        overflow: hidden;
    }

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

    .card-img-top {
        height: 250px;
        object-fit: cover;
    }

    .product-icon {
        font-size: 3rem;
        color: var(--primary-color);
    }

    /* Footer */
    footer {
        background: #78182a;
        color: white;
    }

    .footer-link {
        color: rgba(255,255,255,0.7);
        transition: color 0.3s;
    }

    .footer-link:hover {
        color: var(--primary-color);
    }

    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--primary-color);
        color: white;
        border-radius: 50%;
        margin: 0 5px;
        transition: all 0.3s;
    }

    .social-icons a:hover {
        transform: translateY(-3px);
        background: #0056b3;
    }

    /* Gallery Section */
    .gallery-section {
        background: var(--light-bg);
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        height: 250px;
    }

    .gallery-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    }

    .gallery-img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .gallery-img:hover {
        transform: scale(1.1);
    }

    /* Responsive gallery items */
    @media (max-width: 768px) {
        .gallery-item {
            height: 200px;
        }
    }

    /* Responsive Cards */
    @media (max-width: 768px) {
        .card-img-top {
            height: 200px;
        }
    }

    /* ============================================
    HERO SECTION ANIMATIONS
    ============================================ */
    .hero-caption {
        animation: fadeInUp 1s ease-in-out;
    }

    .hero-title {
        animation: slideInDown 0.8s ease-in-out;
    }

    .hero-subtitle {
        animation: slideInUp 0.8s ease-in-out 0.2s both;
    }

    .cta-button {
        animation: bounceIn 0.6s ease-in-out 0.4s both;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes bounceIn {
        0% {
            opacity: 0;
            transform: scale(0.3);
        }
        50% {
            opacity: 1;
        }
        100% {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* ============================================
    FEATURES SECTION
    ============================================ */
    .features-section {
        position: relative;
        overflow: hidden;
    }

    .feature-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        border: 2px solid transparent;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .feature-card:hover {
        border-color: var(--primary-color);
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
        background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    }

    .feature-icon {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
        transition: all 0.3s ease;
        display: inline-block;
        width: 80px;
        height: 80px;
        background: rgba(0, 123, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-card:hover .feature-icon {
        transform: rotateY(360deg) scale(1.2);
        color: white;
        background: var(--primary-color);
    }

    .feature-card h4 {
        color: #333;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .feature-card:hover h4 {
        color: var(--primary-color);
    }

    /* Interactive Why Cards */
    .why-card {
        background: white;
        border-radius: 15px;
        padding: 2.5rem 1.5rem;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

    .why-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0,123,255,0.1), transparent);
        transition: left 0.6s;
    }

    .why-card:hover::before {
        left: 100%;
    }

    .why-card:hover {
        transform: translateY(-15px) scale(1.02);
        border-color: var(--primary-color);
        box-shadow: 0 20px 50px rgba(0,123,255,0.2);
    }

    .why-icon {
        font-size: 3.5rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        transition: all 0.4s ease;
        display: inline-flex;
        width: 100px;
        height: 100px;
        background: rgba(0,123,255,0.1);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }

    .why-card:hover .why-icon {
        transform: scale(1.1) rotate(360deg);
        background: var(--primary-color);
        color: white;
        box-shadow: 0 10px 30px rgba(0,123,255,0.4);
    }

    .why-card h5 {
        color: #333;
        font-weight: 600;
        margin-bottom: 1rem;
        transition: color 0.3s ease;
    }

    .why-card:hover h5 {
        color: var(--primary-color);
    }

    .why-card p {
        color: #666;
        line-height: 1.6;
        transition: color 0.3s ease;
    }

    .why-card:hover p {
        color: #333;
    }

    /* Pulse on hover for icons */
    @keyframes iconPulse {
        0% { box-shadow: 0 0 0 0 rgba(0,123,255,0.7); }
        70% { box-shadow: 0 0 0 20px rgba(0,123,255,0); }
        100% { box-shadow: 0 0 0 0 rgba(0,123,255,0); }
    }

    .why-card:hover .why-icon {
        animation: iconPulse 1.5s infinite;
    }

    /* ============================================
    PRODUCTS SECTION
    ============================================ */
    .products-section {
        position: relative;
    }

    .product-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border: 1px solid rgba(0, 123, 255, 0.1);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .product-card:hover {
        transform: translateY(-20px);
        box-shadow: 0 20px 50px rgba(0, 123, 255, 0.3);
        border-color: var(--primary-color);
    }

    .product-image {
        position: relative;
        height: 280px;
        overflow: hidden;
        background: #f0f0f0;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .product-card:hover .product-image img {
        transform: scale(1.15) rotate(2deg);
    }

    .product-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 123, 255, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .product-card:hover .product-overlay {
        opacity: 1;
    }

    .product-overlay a {
        animation: slideUp 0.4s ease-in-out;
    }

    @keyframes slideUp {
        from {
            transform: translateY(20px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .product-info {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .product-features {
        list-style: none;
        padding: 0;
        margin: 0;
        flex-grow: 1;
    }

    .product-features li {
        margin: 0.5rem 0;
        color: #666;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .product-features li:hover {
        color: var(--primary-color);
        transform: translateX(5px);
    }

    .product-features i {
        color: var(--primary-color);
        margin-right: 0.5rem;
        font-size: 0.8rem;
    }

    .product-btn {
        background: linear-gradient(45deg, var(--primary-color), #0056b3);
        border: none;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .product-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .product-btn:hover::before {
        width: 300px;
        height: 300px;
    }

    .product-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
    }

    /* ============================================
    STATISTICS SECTION
    ============================================ */
    .stats-section {
        background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
        position: relative;
        overflow: hidden;
    }

    .stats-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 400px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }

    .stats-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        animation: float 8s ease-in-out infinite reverse;
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(30px);
        }
    }

    .stat-card {
        position: relative;
        z-index: 1;
        animation: scaleIn 0.6s ease-in-out;
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.8);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .stat-number {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        transition: all 0.3s ease;
    }

    .stat-card:hover .stat-number {
        font-size: 4rem;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }

    .stat-label {
        font-size: 1.1rem;
        margin: 0;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .stat-card:hover .stat-label {
        transform: scale(1.05);
    }

    /* ============================================
    TESTIMONIALS SECTION
    ============================================ */
    .testimonials-section {
        position: relative;
    }

    .testimonial-card {
        background: white;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-left: 4px solid transparent;
        position: relative;
    }

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
        border-left-color: var(--primary-color);
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: 20px;
        font-size: 4rem;
        color: var(--primary-color);
        opacity: 0.2;
        font-family: Georgia, serif;
    }

    .stars {
        color: #ffc107;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .testimonial-card:hover .stars {
        transform: scale(1.2);
        filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5));
    }

    .testimonial-text {
        font-style: italic;
        color: #666;
        line-height: 1.8;
        transition: color 0.3s ease;
    }

    .testimonial-card:hover .testimonial-text {
        color: #333;
    }

    .testimonial-author {
        border-top: 1px solid #eee;
        padding-top: 1rem;
        margin-top: 1rem;
    }

    .testimonial-author h6 {
        color: var(--primary-color);
        transition: color 0.3s ease;
        font-weight: 600;
    }

    .testimonial-card:hover .testimonial-author h6 {
        color: #0056b3;
    }

    /* ============================================
    CTA SECTION
    ============================================ */
    .bg-gradient {
        background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%) !important;
    }

    .cta-section {
        background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
        position: relative;
        overflow: hidden;
        padding: 60px 0 !important;
        min-height: 200px;
        display: flex;
        align-items: center;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/></svg>');
        background-size: 600px 120px;
        animation: wave 10s linear infinite;
        z-index: 0;
    }

    @keyframes wave {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(600px);
        }
    }

    .cta-section .container {
        position: relative;
        z-index: 2;
    }

    .cta-section .row {
        position: relative;
        z-index: 2;
    }

    .cta-section h2 {
        color: white;
        position: relative;
        z-index: 2;
    }

    .cta-section p {
        position: relative;
        z-index: 2;
    }

    .cta-button-large {
        font-weight: 600;
        padding: 0.75rem 2rem;
        border-radius: 30px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        z-index: 2;
        overflow: hidden;
        background: white;
        color: var(--primary-color);
        border: none;
    }

    .cta-button-large::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
        transition: left 0.5s ease;
    }

    .cta-button-large:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .cta-button-large:hover::before {
        left: 100%;
    }

    /* ============================================
    GENERAL ANIMATIONS & HOVER EFFECTS
    ============================================ */
    #quoteBtn {
        position: relative;
        overflow: hidden;
    }

    #quoteBtn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    #quoteBtn:hover::before {
        width: 300px;
        height: 300px;
    }

    /* Smooth transitions for scroll animations */
    [data-aos] {
        opacity: 1;
        animation-duration: 1s;
    }

    /* Pulse animation for icons */
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
        }
        70% {
            box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
        }
    }

    .feature-icon {
        animation: pulse 2s infinite;
    }

    /* ============================================
    RESPONSIVE DESIGN
    ============================================ */
    @media (max-width: 992px) {
        .feature-card {
            margin-bottom: 1.5rem;
        }
        
        .product-card {
            margin-bottom: 2rem;
        }
        
        .stat-number {
            font-size: 2.5rem;
        }
        
        .cta-button-large {
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .feature-icon {
            font-size: 2.5rem;
            width: 70px;
            height: 70px;
        }
        
        .stat-number {
            font-size: 2rem;
        }
        
        .testimonial-card {
            margin-bottom: 1.5rem;
        }
        
        .cta-section .row {
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2rem;
        }
    }

    /* ============================================
    EXPLORE OUR RANGE SECTION
    ============================================ */
    .explore-range-section {
        background: #fafafa;
        padding: 80px 0;
        position: relative;
        z-index: 1;
    }

    .explore-range-section h2 {
        color: #222;
        font-weight: 700;
        margin-bottom: 3rem;
        text-align: center;
        letter-spacing: -0.5px;
    }

    /* Category Icons */
    .category-icons-wrapper {
        margin-bottom: 3rem;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .category-icons-scroll {
        flex: 1;
        overflow-x: auto;
        padding: 0.5rem 0;
        scroll-behavior: smooth;
    }

    .category-icons-scroll::-webkit-scrollbar {
        height: 6px;
    }

    .category-icons-scroll::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .category-icons-scroll::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }

    .category-icons {
        display: flex;
        gap: 2rem;
        min-width: min-content;
        padding: 0 1rem;
    }

    .category-icon {
        background: none;
        border: none;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding: 0;
        flex-shrink: 0;
        position: relative;
    }

    .icon-circle {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f0f0f0;
        color: #666;
        font-size: 2.5rem;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
    }

    .icon-circle::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(0, 123, 255, 0.1);
        transition: left 0.4s ease;
        z-index: -1;
    }

    .category-icon:hover .icon-circle {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 123, 255, 0.2);
    }

    .category-icon:hover .icon-circle::before {
        left: 0;
    }

    .category-icon:hover .icon-circle {
        color: var(--primary-color);
        background: #f5f5f5;
    }

    /* Active State */
    .category-icon.active .icon-circle {
        background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
        color: white;
        transform: scale(1.1);
        box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    }

    .category-icon.active .icon-circle::before {
        left: 0;
    }

    /* View All Button */
    .view-all-btn {
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        font-weight: 600;
        transition: all 0.3s ease;
        white-space: nowrap;
        border-radius: 25px;
        padding: 0.6rem 1.5rem;
    }

    .view-all-btn:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    }

    /* Products Display */
    .products-display {
        position: relative;
    }

    .category-products {
        display: none;
        animation: fadeIn 0.5s ease-in-out;
    }

    .category-products.active {
        display: block;
        animation: fadeInProducts 0.5s ease-in-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInProducts {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Product Card Grid */
    .product-card-grid {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border: 1px solid rgba(0, 123, 255, 0.1);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .product-card-grid:hover {
        transform: translateY(-12px);
        box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
        border-color: var(--primary-color);
    }

    .product-image-grid {
        position: relative;
        height: 250px;
        overflow: hidden;
        background: #f0f0f0;
    }

    .product-image-grid img {
        width: 100%;
        height: 100%;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .product-card-grid:hover .product-image-grid img {
        transform: scale(1.08);
    }

    /* Compare Checkbox */
    .compare-checkbox {
        position: absolute;
        top: 12px;
        left: 12px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.95);
        padding: 0.5rem 0.75rem;
        border-radius: 6px;
        cursor: pointer;
        font-size: 0.75rem;
        font-weight: 600;
        color: #666;
        transition: all 0.3s ease;
        user-select: none;
    }

    .compare-checkbox:hover {
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .compare-checkbox input[type="checkbox"] {
        cursor: pointer;
        width: 16px;
        height: 16px;
        accent-color: var(--primary-color);
        transition: all 0.2s ease;
    }

    .compare-checkbox input[type="checkbox"]:checked + span {
        color: var(--primary-color);
        font-weight: 700;
    }

    /* Product Info Grid */
    .product-info-grid {
        padding: 1.25rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .product-info-grid h6 {
        color: #333;
        font-weight: 600;
        margin-bottom: 0.5rem;
        line-height: 1.4;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

    .product-card-grid:hover .product-info-grid h6 {
        color: var(--primary-color);
    }

    .product-info-grid p {
        color: #999;
        font-size: 0.85rem;
        margin-bottom: 1rem;
        flex-grow: 1;
    }

    .product-info-grid .btn {
        padding: 0.5rem;
        font-size: 0.85rem;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
    }

    .product-info-grid .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
    }

    /* Brands Carousel Styles */
    .brands-carousel-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .brand-logo {
        transition: all 0.3s ease;
        height: 140px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: 2px solid transparent;
    }

    .brand-logo:hover {
        transform: translateY(-8px);
        border-color: var(--primary-color);
        box-shadow: 0 12px 30px rgba(0,123,255,0.2);
    }

    .brand-logo i {
        transition: all 0.4s ease;
    }

    .brand-logo:hover i {
        transform: scale(1.15);
    }

    #brandsCarousel .carousel-control-prev,
    #brandsCarousel .carousel-control-next {
        width: 5%;
        opacity: 0.7;
        filter: invert(0.5);
    }

    #brandsCarousel .carousel-control-prev:hover,
    #brandsCarousel .carousel-control-next:hover {
        opacity: 1;
    }

    #brandsCarousel .carousel-indicators [data-bs-target] {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(0,123,255,0.5);
        transition: all 0.3s ease;
    }

    #brandsCarousel .carousel-indicators .active {
        background-color: var(--primary-color);
        transform: scale(1.2);
    }

    @media (max-width: 768px) {
        .brand-logo h6 {
            font-size: 0.9rem;
        }
        
        .brand-logo i {
            font-size: 3rem;
        }
    }

    /* Category Icon Animation on Load */
    @keyframes slideInCategory {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .category-icon {
        animation: slideInCategory 0.6s ease-in-out;
    }

    .category-icon:nth-child(1) { animation-delay: 0s; }
    .category-icon:nth-child(2) { animation-delay: 0.1s; }
    .category-icon:nth-child(3) { animation-delay: 0.2s; }
    .category-icon:nth-child(4) { animation-delay: 0.3s; }
    .category-icon:nth-child(5) { animation-delay: 0.4s; }
    .category-icon:nth-child(6) { animation-delay: 0.5s; }
    .category-icon:nth-child(7) { animation-delay: 0.6s; }
    .category-icon:nth-child(8) { animation-delay: 0.7s; }

    /* Responsive Design for Explore Range */
    @media (max-width: 1024px) {
        .category-icons {
            gap: 1.5rem;
        }
        
        .icon-circle {
            width: 80px;
            height: 80px;
            font-size: 2rem;
        }
    }

    @media (max-width: 768px) {
        .category-icons-wrapper {
            flex-direction: column;
            gap: 1rem;
        }
        
        .category-icons-wrapper d-flex {
            flex-direction: column;
        }
        
        .view-all-btn {
            width: 100%;
            margin-top: 1rem;
        }
        
        .category-icons {
            gap: 1rem;
        }
        
        .icon-circle {
            width: 70px;
            height: 70px;
            font-size: 1.8rem;
        }
        
        .product-image-grid {
            height: 200px;
        }
        
        .product-info-grid {
            padding: 1rem;
        }
        
        .product-info-grid h6 {
            font-size: 0.9rem;
        }
        
        .compare-checkbox {
            font-size: 0.7rem;
            padding: 0.4rem 0.6rem;
        }
    }

    /* Fix for page-header overlap under fixed navbar on non-home pages */
    .page-header {
        margin-top: 80px;
    }

    /* Centered product section headings with full-width underline covering icon + heading */
    #featured-products .product-heading-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 3rem;
    }

    #featured-products .product-heading-wrapper h3 {
        margin: 0;
        text-align: center;
    }

    #featured-products .product-heading-wrapper::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        right: 50%;
        width: max-content;
        max-width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), #0056b3);
        border-radius: 2px;
        box-shadow: 0 2px 8px rgba(0,123,255,0.3);
        transform: translateX(-50%);
    }

    #brandsCarousel .carousel-item {
        text-align: center;
    }

    #brandsCarousel img {
        max-height: 100px;
        margin: auto;
        transition: transform 0.3s ease;
    }

    #brandsCarousel img:hover {
        transform: scale(1.1);
    }
    .brandSwiper {
        padding: 20px 40px;
    }

    .brandSwiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .brandSwiper img {
        max-height: 60px;
        opacity: 0.7;
        transition: 0.3s;
    }

    .brandSwiper img:hover {
        opacity: 1;
        transform: scale(1.1);
    }

    /* Arrows styling */
    .swiper-button-next,
    .swiper-button-prev {
        color: #007bff;
    }

    /* ============================================
    PARTNERS PAGE INTERACTIVITY STYLES
    ============================================ */

    /* Trusted Brands Section - Brand Containers */
    .partners-page .trusted-brands .col-lg-6 {
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
    }

    .partners-page .trusted-brands .col-lg-6:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
    }

    .partners-page .trusted-brands .col-lg-6 h5 {
        position: relative;
        transition: color 0.3s ease;
        cursor: pointer;
    }

    .partners-page .trusted-brands .col-lg-6 h5:hover {
        color: var(--primary-color);
        text-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
    }

    /* Brand Features List */
    .partners-page .brand-features {
        list-style: none;
        padding: 0;
        margin: 1rem 0 0 0;
    }

    .partners-page .brand-features li {
        opacity: 1;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding: 0.5rem 0;
        position: relative;
        overflow: hidden;
    }



    .partners-page .col-lg-6:hover .brand-features li::before {
        transform: translateX(100%);
    }

    .partners-page .brand-features i {
        transition: all 0.3s ease;
        transform: scale(1);
    }

    .partners-page .col-lg-6:hover .brand-features i {
        transform: scale(1.2);
        color: var(--primary-color) !important;
        filter: drop-shadow(0 0 8px rgba(0, 123, 255, 0.5));
    }

    /* Industry Cards */
    .partners-page .industry-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        height: 100%;
    }

    .partners-page .industry-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0,123,255,0.1), transparent);
        transition: left 0.7s ease;
        z-index: 1;
    }

    .partners-page .industry-card:hover::before {
        left: 100%;
    }

    .partners-page .industry-card:hover {
        transform: translateY(-15px) scale(1.02);
        border-color: var(--primary-color);
        box-shadow: 0 25px 50px rgba(0,123,255,0.25);
    }

    .partners-page .industry-card i {
        font-size: 3.5rem;
        display: block;
        margin-bottom: 1rem;
        transition: all 0.4s ease;
        color: var(--primary-color);
    }

    .partners-page .industry-card:hover i {
        transform: rotateY(360deg) scale(1.2);
        filter: drop-shadow(0 0 20px rgba(0,123,255,0.6));
        color: #0056b3;
    }

    .partners-page .industry-card h5 {
        transition: color 0.3s ease;
        position: relative;
        z-index: 2;
    }

    .partners-page .industry-card:hover h5 {
        color: var(--primary-color);
    }

    .partners-page .industry-card p {
        color: #666;
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
    }

    .partners-page .industry-card:hover p {
        color: #333;
    }

    /* Why Partner Cards - Enhanced */
    .partners-page .why-partner {
        background: linear-gradient(135deg, white 0%, #f8f9ff 100%);
        border-radius: 15px;
        padding: 2rem;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .partners-page .why-partner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(0,123,255,0.05), rgba(0,123,255,0.1), rgba(0,123,255,0.05));
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .partners-page .why-partner:hover::before {
        opacity: 1;
    }

    /* .partners-page .why-partner:hover {
        transform: translateY(-12px) rotateX(5deg);
        border-color: rgba(0,123,255,0.3);
        box-shadow: 0 25px 60px rgba(0,123,255,0.25);
    } */

    .partners-page .why-partner h5 i {
        transition: all 0.4s ease;
        margin-right: 0.75rem;
    }

    /* .partners-page .why-partner:hover h5 i {
        transform: scale(1.3) rotate(360deg);
        color: var(--primary-color) !important;
        filter: drop-shadow(0 0 10px rgba(0,123,255,0.7));
        animation: pulse 1.5s infinite;
    } */

    .partners-page .why-partner h5 {
        transition: color 0.3s ease;
        cursor: pointer;
    }

    .partners-page .why-partner:hover h5 {
        color: var(--primary-color);
    }

    .partners-page .why-partner p {
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
    }

    .partners-page .why-partner:hover p {
        transform: translateX(8px);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .partners-page .industry-card,
        .partners-page .why-partner {
            margin-bottom: 1.5rem;
        }
        
        .partners-page .brand-features li {
            padding: 0.4rem 0;
        }

        /* CONTACT PAGE MOBILE FIXES */
        .contact-section .contact-info-box p {
            word-break: break-word;
            hyphens: auto;
            overflow-wrap: break-word;
            line-height: 1.5;
            font-size: 0.95rem;
        }

        .map-container iframe {
            height: 300px !important;
            width: 100% !important;
            max-width: 100vw;
        }

        .contact-section {
            padding-left: 1rem !important;
            padding-right: 1rem !important;
        }

        .map-section .container-fluid {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .map-section {
            overflow-x: hidden;
        }

        /* Form mobile safety */
        .contact-form .form-control,
        .contact-form .form-select {
            font-size: 16px; /* Prevents zoom */
        }

        /* Accordion mobile */
        .faq-section .accordion-button {
            font-size: 1rem;
            padding: 1rem;
        }

        /* General mobile viewport */
        .contact-section,
        .faq-section {
            overflow-x: hidden;
        }
    }

    /* Additional high-specificity contact fixes */
    @media (max-width: 576px) {
        .contact-info-box h5 {
            font-size: 1.1rem;
        }

        .map-container {
            overflow: hidden;
            border-radius: 10px;
        }

        .map-container iframe {
            height: 250px !important;
        }
    }

    /* Ensure no body overflow */
    .contact-page body {
        overflow-x: hidden;
    }



    /* Desktop Hover for Submenus */
@media (min-width: 992px) {
    .dropdown-submenu {
        position: relative !important; 
    }

    /* Show submenu on hover for desktop */
    .dropdown-submenu:hover > .dropdown-menu {
        display: block !important;
        top: 0 !important;
        left: 100% !important;
        margin-top: -1px !important;
    }
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .dropdown-submenu .dropdown-menu {
        position: static !important;
        display: none !important; /* Hidden by default */
        padding-left: 20px !important; /* Indent sub-items */
        background-color: #f8f9fa !important;
        border: none !important;
    }

    /* Class added by JS to show menu on mobile */
    .dropdown-submenu.show-mobile > .dropdown-menu {
        display: block !important;
    }
}

/* Arrow rotation for the sub-item */
.dropdown-submenu > a::after {
    transition: transform 0.2s !important;
    float: right !important;
    margin-top: 8px !important;
}

.dropdown-submenu.show-mobile > a::after {
    transform: rotate(90deg) !important;
}