:root {
    color-scheme: light;
}
:root {
            --primary-blue: #336666;
            --accent-yellow: #993399;
            --light-gray: #a1a1a1;
            --text-dark: #333;
            --main-font: 'Inter', sans-serif;
            --link-active: #ffffff;
            --link-before: #ffffff;
            --product-info: #336666;
            --servicebox-shadow:rgba(0, 51, 102, 0.2);
            --scrollbtn:#ffffff;
            --contact:rgba(0,123,255,0.1);

            /* --primary-blue: #003366;
            --accent-yellow: #f9b233;
            --light-gray: #a1a1a1;
            --text-dark: #333;
            --main-font: 'Inter', sans-serif;
            --link-active: #f0b80f;
            --link-before: #ffc107;
            --product-info: rgba(0, 34, 68, 0.92);
            --servicebox-shadow:rgba(0, 51, 102, 0.2);
            --scrollbtn:#ffcc55;
            --contact:rgba(0,123,255,0.1); */
        }


        body {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--main-font);
            overflow-x: hidden;
            background-color: #f8f9fa;
        }

        header {
            font-family: var(--main-font);
        }


        /* Top Bar - Desktop Layout */
        .navbar-top {
            background-color: #ffffff;
            min-height: 80px;
            font-weight: 600;
            border-bottom: 1px solid #eee;
            position: relative;
            z-index: 1050;
        }

        .navbar-brand {
            color: var(--primary-blue) !important;
            font-size: 32px;
            font-weight: 900;
            text-decoration: none;
            flex-shrink: 0;
        }

        /* Centering the contact container in the middle of header */
        .desktop-contact-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-link1 {
            color: var(--light-gray);
            text-decoration: none;
            font-size: 15px;
            white-space: nowrap;
            transition: color 0.3s ease;
        }

        .nav-link1:hover {
            color: var(--primary-blue); /* blue */
    }

        .contact-btn {
            background-color: #ffffff;
            color: var(--primary-blue);
            width: 140px;
            font-weight: 600;
            border: 2px solid var(--primary-blue);
            padding: 8px;
            transition: 0.3s;
            flex-shrink: 0;
        }

        .contact-btn:hover {
            background-color: var(--primary-blue);
            color: #fff;
        }

        /* Desktop Nav - Aligned Left with Logo */
        .nav-bg {
            background-color: var(--primary-blue);
            min-height: 60px;
        }

        /* Aligning the menu to the left (straight bottom of logo) */
        .desktop-nav-container {
            display: flex;
            justify-content: flex-start;
        }

        .main-nav .nav-link {
            color: #ffffff !important;
            position: relative;
            padding: 10px 15px;
            font-weight: 500;
            cursor: pointer;
        }

        /* Dropdown Logic (Desktop Hover) */
        .nav-item.dropdown {
            position: relative;
        }

        .custom-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: #ffffff;
            min-width: 200px;
            display: none;
            padding: 10px 0;
            z-index: 1000;
            list-style: none;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-radius: 0 0 4px 4px;
            margin: 0;
        }

        .nav-item.dropdown:hover .custom-dropdown {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .custom-dropdown li a {
            display: block;
            padding: 10px 20px;
            color: var(--primary-blue);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: 0.2s;
        }

        .custom-dropdown li a:hover {
            background: #f0f4f8;
            color: var(--accent-yellow);
        }

        /* MOBILE NAVIGATION ELEMENTS */
        .mobile-nav-toggle {
            display: none;
            font-size: 26px;
            color: var(--primary-blue);
            cursor: pointer;
            padding: 5px;
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 2000;
            display: none;
        }
        
        
    .side-menu {
        overflow-y: scroll;   /* auto க்கு பதிலா scroll use பண்ணுங்க */
        max-height: 100vh;
    }

    /* Scrollbar styling (Chrome, Edge, Safari) */
    .side-menu::-webkit-scrollbar {
        width: 8px;
    }

    .side-menu::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }

    .side-menu::-webkit-scrollbar-track {
        background: transparent;
    }


        .side-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100%;
            background: #ffffff;
            margin-bottom: 280px;
            z-index: 2001;
            transition: right 0.3s ease-in-out;
            padding: 60px 20px 20px;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        }

        .side-menu.open {
            right: 0;
        }

        .close-menu-btn {
            position: absolute;
            top: 5px;
            right: 20px;
            font-size: 24px;
            color: var(--primary-blue);
            cursor: pointer;
        }

        .side-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
            margin-top: -20px;
        }

        .side-menu ul li {
            border-bottom: 1px solid #f0f0f0;
        }

        .side-menu ul li a {
            display: block;
            padding: 15px 5px;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
        }

        .mobile-submenu {
            display: none;
            background: #f9f9f9;
            padding-left: 20px;
            margin-top: 5px !important;
        }

        .mobile-submenu a {
            font-size: 15px !important;
            /*font-weight: 500 !important;*/
            color: #666 ;
        }

        /* Hero & Slideshow */
        
.hero-carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Slide logic */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  position: relative;
}

/* Images */
.slide img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Device image control */
.desktop-img { display: block; }
.mobile-img { display: none; }

/* Tablet + Mobile */
@media (max-width: 992px) {
  .desktop-img { display: none; }
  .mobile-img { display: block; }
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 0px 10px;
  cursor: pointer;
  border-radius: 50%;
  display: none;
}

.arrow.left { left: 5px; }
.arrow.right { right: 5px; }



        /* Feature Cards */
        .hero-cards-container {
            position: relative;
            margin-top: 50px;
            width: 100%;
            z-index: 10;
            padding-bottom: 50px;
        }

        .hero-cards {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            padding: 0 20px;
        }

        .card-custom {
            background: #ffffff;
            flex: 1;
            min-width: 280px;
            max-width: 360px;
            padding: 45px 35px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,51,102,0.1);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: pointer;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .card-custom:hover {
            background: var(--primary-blue);
            transform: translateY(-15px);
            box-shadow: 0 20px 40px var(--servicebox-shadow);
        }

        .card-custom i { font-size: 48px; color: var(--primary-blue); margin-bottom: 25px; transition: 0.4s; }
        .card-custom:hover i { color: var(--white); transform: scale(1.1); }
        .card-custom:hover h3, .card-custom:hover p { color: #fff; }

        /* MOBILE BOTTOM NAVIGATION */
        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 75px;
            background: #ffffff;
            display: none;
            justify-content: space-around;
            align-items: center;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
            z-index: 9999;
            border-top: 1px solid #eee;
        }

        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--light-gray);
            font-size: 11px;
            font-weight: 700;
        }

        /* Active home bottom line (yellow) */
.nav-link.active {
    position: relative;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background-color: var(--link-active); /* yellow */
}

/* Hover – line comes from left */
.nav-link {
    position: relative;
}

.nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    background-color: var(--link-before); /* yellow */
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

        .mobile-nav-item i { font-size: 22px; margin-bottom: 5px; }
        .mobile-nav-item.active { color: var(--primary-blue); }

        /* RESPONSIVE BREAKPOINTS */
        @media (max-width: 991px) {
            .navbar-top .container { justify-content: space-between !important; }
            .desktop-contact-center { display: none !important; }
            .d-lg-block, .nav-bg { display: none !important; }
            .mobile-nav-toggle { display: block; }
            .mobile-bottom-nav { display: none; }
            .hero-carousel { height: 35vh; }
            .hero-content { margin-left: 0; text-align: left; width: 100%; }
        }

        @media (max-width: 768px) {
            /* .hero-cards-container { margin-top: 50px; } */
            .card-custom { max-width: 100%; }
            .hero-carousel { height: 50vh; }
        }


/* About Section Styles */


        /* Keyframes for Continuous Floating Motion */
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        /* About Section Styles */
        .about-section { 
            padding: 50px 20px;
            background: var(--soft-bg); 
            overflow: hidden; 
            perspective: 1000px; 
        }

        .about-container { 
            max-width: 1200px; 
            margin: auto; 
            display: flex; 
            align-items: center; 
            gap: 80px; 
        }
        
        .about-content { 
            flex: 1.2; 
            opacity: 0; 
            transform: translateY(30px); 
            transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); 
        }

        .about-image-wrapper { 
            flex: 0.8; 
            position: relative;
            opacity: 0; 
            transform: rotateY(-15deg) translateX(50px) scale(0.9);
            transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), 
                        transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .image-accent {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary-blue);
            border-radius: 20px;
            z-index: 0;
            transition: all 1.5s ease;
            transform: translate(20px, 20px);
        }

        /* Reveal Animations Triggered by Scroll */
        .about-section.visible .about-content { 
            opacity: 1; 
            transform: translateY(0); 
        }

        .about-section.visible .about-image-wrapper { 
            opacity: 1; 
            transform: rotateY(0deg) translateX(0) scale(1); 
        }
        
        /* Apply the Floating Animation ONLY after the section becomes visible */
        .about-section.visible .about-image-wrapper img {
            animation: floating 4s ease-in-out infinite;
        }

        .about-section.visible .image-accent {
            transform: translate(0, 0);
            /* Optional: the accent can also float slightly differently */
            animation: floating 4s ease-in-out infinite reverse;
        }

        .about-content h2 { 
            font-size: clamp(28px, 3vw, 36px); 
            font-weight: 800; 
            color: var(--primary-blue); 
            margin-bottom: 25px; 
            position: relative; 
        }

        .about-content h2::after { 
            content: ''; 
            position: absolute; 
            bottom: -10px; 
            left: 0; 
            width: 0; 
            height: 4px; 
            background: var(--accent-yellow); 
            transition: width 1s ease 0.5s;
        }

        .about-section.visible .about-content h2::after { 
            width: 450px; 
        }

        .about-content p { 
            font-size: 17px; 
            line-height: 1.8; 
            color: #444; 
            margin-bottom: 20px;
        }
        
        .address-box {
            display: flex; 
            align-items: flex-start; 
            gap: 15px; 
            background: #fff; 
            padding: 20px;
            border-radius: 10px; 
            box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
            margin-top: 30px;
            margin-bottom: 30px;
            border-left: 4px solid var(--primary-blue);
            transition: transform 0.3s ease;
        }

        .address-box:hover { transform: scale(1.02); }
        .address-box i { color: var(--primary-blue); font-size: 20px; margin-top: 5px; }

        .about-image-wrapper img { 
            width: 100%; 
            height: auto; 
            border-radius: 20px; 
            position: relative;
            z-index: 1;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        @media (max-width: 991px) {
            .about-container { flex-direction: column; gap: 50px; }
            .about-content h2{text-align: center;}
            .about-content h2::after { left: 50%; transform: translateX(-50%); }
            .about-image-wrapper { transform: translateY(40px) scale(0.95); opacity: 0; }
            .about-section.visible .about-image-wrapper { transform: translateY(0) scale(1); }
            /* Reduce floating intensity on mobile */
            @keyframes floating {
                0% { transform: translateY(0px); }
                50% { transform: translateY(-10px); }
                100% { transform: translateY(0px); }
            }
        }        

/* Product Section Styles */

/* --- PRODUCT SECTION --- */
        .product-section {
            background-color: var(--primary-blue);
            /* Technical Grid Background Pattern for Desktop */
            background-image: radial-gradient(var(--dot-color) 1.5px, transparent 2px);
            background-size: 30px 30px;
            padding: 50px 0;
            color: white;
            text-align: center;
            position: relative;
            /* margin-top: -65px; */
        }

        .section-title { font-size: 32px; font-weight: 900; margin-bottom: 30px; letter-spacing: 2px; color:#ffffff;  }
        .section-title span { color: var(--primary-blue); }
        .short-para { font-size: 20px; font-weight: 500; margin-bottom: 60px; margin-top: 25px;  }
        .para { font-size: 20px; font-weight: 500; margin-bottom: 50px;letter-spacing: 2px;  }
        .products-grid {
            display: flex;
            justify-content: center;
            /* flex-wrap: wrap; */
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            /* padding: 0 20px; */
        }

        .product-title {
        font-size: clamp(28px, 3vw, 36px);
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }
    .product-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--accent-yellow);
        border-radius: 2px;
    }

        .product-card {
            position: relative;
            width: 350px;
            height: 450px;
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.4);
            cursor: pointer;
        }

        .product-card img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        /* Information Overlay */
        .product-info {
            position: absolute;
            left: 0;
            width: 100%;
            background: var(--product-info);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 25px;
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .product-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; color: var(--white); }

        /* Desktop View Styles */
        @media (min-width: 992px) {
            .product-info {
                bottom: -100%; /* Hidden off-screen */
                height: 50%;
            }
            
            .product-card:hover .product-info {
                bottom: 0; 
            }
            .product-card:hover img {
                transform: scale(1.1) translateY(-10px);
            }
            
            /* Learn More Button Animation */
            .learn-more-btn {
                display: inline-block;
                margin-top: 15px;
                padding: 10px 20px;
                color: white;
                text-decoration: none;
                font-weight: 700;
                font-size: 15px;
                border-radius: 30px;
                transition: all 0.3s ease;
                align-self: center;
                position: relative;
                overflow: hidden;
            }
            .learn-more-btn:hover {
                color: var(--white);
                transform: scale(1.05);
            }
        }

        .section-title.active {
    position: relative;
}

.section-title.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background-color: var(--accent-yellow); /* yellow */
}

        

        /* Mobile & Tablet View: Only Name Shown */
        @media (max-width: 991px) {

  .product-card {
    width: 100%;
    max-width: 380px;
    height: 350px;
  }
  .products-grid{
    flex-wrap: wrap;
  }
  /* Default hidden */
  .product-info {
    bottom: -100%;
    height: 50%;
    padding: 15px;
    background: var(--product-info);
    transition: all 0.4s ease;
  }

  /* Tap / hover → show info */
  .product-card:hover .product-info,
  .product-card:focus-within .product-info {
    bottom: 0;
  }

  .product-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  /* Show description + button */
  .product-info p {
    display: block;
    font-size: 15px;
  }

  .learn-more-btn {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
  }
  .learn-more-btn:hover {
    color: var(--white);
    transform: scale(1.05);
  }

  /* No zoom on mobile */
  .product-card img {
    transform: none !important;
  }
}



/* --- SERVICES SECTION style --- */
:root {
    --grey-card: #f0f2f5;
    --grey-text: #666;
        }

        /* --- SERVICE CARD ANIMATIONS (AUTO-BLINK) --- */
        
        /* Background & Movement Animation */
        @keyframes cardScan {
            0%, 20% { 
                background: var(--primary-blue); 
                transform: translateY(-10px);
                box-shadow: 0 10px 25px var(--servicebox-shadow);
            }
            25%, 100% { 
                background: var(--grey-card); 
                transform: translateY(0);
                box-shadow: none;
            }
        }

        /* Icon Color Animation (Blue to Yellow) */
        @keyframes iconScan {
            0%, 20% { color: var(--white); }
            25%, 100% { color: var(--primary-blue); }
        }

        /* Title & Content Text Animation (Blue/Grey to White) */
        @keyframes textScan {
            0%, 20% { color: white; }
            25%, 100% { color: var(--primary-blue); }
        }

        @keyframes pScan {
            0%, 20% { color: white; opacity: 1; }
            25%, 100% { color: var(--grey-text); opacity: 1; }
        }

        /* --- SERVICES SECTION STYLING --- */
        .services-section {
            padding: 50px 0;
            background: white;
            text-align: center;
        }

        .section-title {
        font-size: clamp(28px, 3vw, 36px);
        font-weight: 800;
        color: var(--primary-blue);
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }
    .section-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--accent-yellow);
        border-radius: 2px;
    }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 40px auto 0;
            padding: 0 20px;
        }

        .service-card {
            background: var(--grey-card);
            border-radius: 20px;
            padding: 40px 30px;
            transition: all 0.4s ease;
            text-align: center;
            cursor: pointer;
            position: relative;
            animation: cardScan 8s infinite;
        }

        .service-card i { 
            font-size: 40px; 
            color: var(--primary-blue); 
            margin-bottom: 20px; 
            animation: iconScan 8s infinite;
        }

        .service-card h4 { 
            font-size: 20px; 
            font-weight: 700; 
            color: var(--primary-blue); 
            margin-bottom: 15px; 
            animation: textScan 8s infinite;
        }

        .service-card p { 
            font-size: 15px; 
            color: var(--grey-text); 
            line-height: 1.6; 
            animation: pScan 8s infinite;
        }

        /* Sequential delays for the auto-blink "light sweep" */
        .service-card:nth-child(1), .service-card:nth-child(1) i, .service-card:nth-child(1) h4, .service-card:nth-child(1) p { animation-delay: 0s; }
        .service-card:nth-child(2), .service-card:nth-child(2) i, .service-card:nth-child(2) h4, .service-card:nth-child(2) p { animation-delay: 2s; }
        .service-card:nth-child(3), .service-card:nth-child(3) i, .service-card:nth-child(3) h4, .service-card:nth-child(3) p { animation-delay: 4s; }
        .service-card:nth-child(4), .service-card:nth-child(4) i, .service-card:nth-child(4) h4, .service-card:nth-child(4) p { animation-delay: 6s; }

        /* MOUSE INTERACTION: Disable auto-blink on all cards when user hovers the grid */
        .services-grid:hover .service-card,
        .services-grid:hover .service-card i,
        .services-grid:hover .service-card h4,
        .services-grid:hover .service-card p {
            animation: none;
        }

        /* Highlight only the specific card under the mouse */
        .services-grid .service-card:hover {
            background: var(--primary-blue) !important;
            transform: translateY(-10px) !important;
            box-shadow: 0 15px 30px var(--servicebox-shadow);
        }

        .services-grid .service-card:hover i { color: var(--white) !important; }
        .services-grid .service-card:hover h4,
        .services-grid .service-card:hover p {
            color: white !important;
        }

        

        @media (max-width: 991px) {
            .service-card, .service-card i, .service-card h4, .service-card p { animation-duration: 6s; }
        }

        /* --- Brands section styles --- */

        @keyframes floatLogo {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0px); }
    }

    .brands-section {
        padding: 50px 20px;
        background: #ffffff;
        text-align: center;
        overflow: hidden;
        font-family: var(--main-font);
    }
    .brands-container {
        max-width: 1100px;
        margin: auto;
    }
    .brands-title {
        font-size: clamp(28px, 3vw, 36px);
        font-weight: 800;
        color: var(--primary-blue);
        margin-bottom: 60px;
        position: relative;
        display: inline-block;
    }
    .brands-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: var(--accent-yellow);
        border-radius: 2px;
    }
    .brands-desc {
        font-size: 16px;
        color: var(--grey-text);
        max-width: 700px;
        margin: 25px auto 60px;
        line-height: 1.8;
    }
    .brands-logos {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }
    .brand-card {
        width: 240px;
        height: 140px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 16px;
        border: 1px solid #eee;
        box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        padding: 20px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0; 
        /* transform: translateY(20px); */
    }

    /* Activation classes */
    .brand-card.animate-float {
        opacity: 1;
        /* animation: floatLogo 4s ease-in-out infinite; */
    }
    .brand-card:nth-child(even).animate-float {
        animation-duration: 5s;
        animation-delay: 0.5s;
    }

    .brand-card img {
        max-width: 80%;
        max-height: 60px;
        /* No grayscale filter by default as requested */
        transition: all 0.4s ease;
        margin-bottom: 10px;
    }

    .brand-tag {
        font-size: 11px;
        font-weight: 700;
        color: var(--primary-blue);
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0;
        transition: 0.4s;
    }
    
    /* Universal Hover State for both cards */
    .brand-card:hover {
        animation-play-state: paused;
        transform: translateY(-10px) scale(1.02) !important;
        background-color: var(--white) !important;
        /* border-color: var(--primary-blue); */
        box-shadow: 0 20px 40px var(--servicebox-shadow);
    }

    /* Tag turns white on hover for both */
    .brand-card:hover .brand-tag {
        opacity: 1;
        color: #ffffff;
    }

    /* --- First Card Specifics --- */
    .brand-logos:hover img {
        filter: brightness(0) invert(1); /*Logo turns white*/
    }

    /* --- Second Card Specifics --- */
    /* .brand-exide:hover img {
        Using filter to force logo to Red (#ff0000)
        filter: brightness(0) saturate(100%) invert(13%) sepia(91%) saturate(7463%) hue-rotate(359deg) brightness(101%) contrast(114%);
    } */

    @media (max-width: 768px) {
        .brand-card { width: 100%; max-width: 280px; }
        .brands-title { font-size: 28px; }
    }

    /* Footer Section Style */

    .footer {
        background: linear-gradient(180deg, #1c1c1c, #111);
        color: #aaa;
        padding: 50px 0;
        text-align: left;
        font-family: var(--main-font);
    }

    .footer-container {
        max-width: 1200px;
        margin: auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }

    .footer-logo {
        width: 150px;
        margin-bottom: 20px;
        filter: brightness(0) invert(1); 
    }

    .footer-col h4 {
        color: #fff;
        margin-bottom: 25px;
        font-size: 18px;
    }

    .footer-col p {
        line-height: 1.7;
        font-size: 14px;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
    }

    .footer-col ul li {
        margin-bottom: 15px;
    }

    /* Underline Left-to-Right Hover Effect */
    .footer-col ul li a {
        text-decoration: none;
        color: #aaa;
        transition: 0.3s;
        position: relative;
        padding-bottom: 5px;
    }

    .footer-col ul li a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent-yellow);
        transition: width 0.3s ease;
    }

    .footer-col ul li a:hover {
        color: #fff;
    }

    .footer-col ul li a:hover::after {
        width: 100%;
    }

    .social-icons {
        margin-top: 25px;
    }

    .social-icons a {
        /* display: inline-block; */
        display: none;
        margin-right: 15px;
        color: #aaa;
        font-size: 20px;
        transition: 0.3s;
    }

    .social-icons a:hover {
        color: var(--accent-yellow);
        transform: translateY(-3px);
    }

    .footer-bottom {
        border-top: 1px solid #333;
        text-align: center;
        padding: 20px;
        margin-top: 50px;
        font-size: 14px;
        color: #777;
    }

    .footer-col .fas, .footer-col .fa-location-dot {
        margin-right: 12px;
        color: var(--accent-yellow);
        font-size: 16px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        /* margin-bottom: 15px; */
    }

    #scrollTopBtn {
        position: fixed;
        bottom: 25px;
        right: 25px;
        background: var(--accent-yellow);
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 4px;
        cursor: pointer;
        display: none;
        z-index: 999;
        transition: 0.3s;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    #scrollTopBtn i {
        color: var(--white);
        font-size: 16px;
    }
    
    #scrollTopBtn:hover {
        background: var(--accent-yellow);
        transform: translateY(-5px);
    }

    /* Desktop */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* Tablet */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-bottom{
        padding-bottom: 90px;
    }
}

/* Hide on Mobile */
@media (max-width: 768px) {
    #scrollTopBtn {
        display: none !important;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 2, 1fr;
    }
    .footer-col{
        margin-top: 55px;
    }
    .footer-bottom{
        padding-bottom: 90px;
    }
}



    /* Row icon section style */

    .desktop-icon-row {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 45px 20px;
        background: var(--grey-card);
        border-bottom: 1px solid #eee;
        font-family: var(--main-font);
    }

    .icon-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        font-size: 15px;
        font-weight: 700;
        color: #333;
        transition: all 0.3s ease;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .icon-item:hover {
        transform: translateY(-5px);
        color: var(--primary-blue);
    }

    .icon-item i {
        font-size: 36px;
        color: var(--primary-blue);
        transition: 0.3s;
    }

    .icon-item:hover i {
        color: var(--accent-yellow);
    }

    /* Hide desktop row on tablet & mobile */
    @media (max-width: 991px) {
        .desktop-icon-row {
            display: none;
        }
    }

    /* About us page code */

 /* Standard banner Section 
           Height: 450px is a standard 'impactful' height for sub-pages.
           Use 60vh or 70vh if you want it to scale based on screen size.
        */
/* ================= Hero Banner ================= */
.page-hero {
  position: relative;
  /* background: url('images/sri-lakshmi-traders.webp') center/cover no-repeat; */
  padding: 15px 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
  90deg,
  rgba(22, 36, 31, 0.9),
  rgba(44, 66, 60, 0.9)
);
}
/* rgba(23, 42, 71, 0.9),
  rgba(30, 47, 78, 0.9) */
/* linear-gradient(to right, rgba(0,51,102,0.85), rgba(0,0,0,0.2)) */
.page-hero * {
  position: relative;
  z-index: 2;
}


.page-title {
  color: #ffffff;
  font-weight: 800;
  margin: 0;
  font-size: 38px;
}

/* Tablet */
@media (max-width: 991px) {
  .page-title {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .page-hero {
    padding: 20px 0;
  }
  .page-title {
    font-size: 30px;
  }
}





        /* Testimonial section code on About page */

        /* --- Testimonials Section --- */
        /* --- Testimonials Section --- */
        .testimonials {
            padding: 50px 0;
            background: #fff;
            text-align: center;
            overflow: hidden;
            font-family: var(--main-font);
        }

        .testimonials h2 {
            font-size: clamp(28px, 3vw, 36px);
            font-weight: 800; 
            color: var(--primary-blue); 
            margin-bottom: 15px; 
        }

        .title-underline {
            width: 60px;
            height: 4px;
            background: var(--accent-yellow);
            margin: 0 auto 20px;
        }

        .subtitle {
            color: var(--text-gray);
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
            padding: 0 20px;
            font-size: 16px;
        }

        .testimonial-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Slider viewport */
        .testimonial-viewport {
            overflow: hidden;
            width: 100%;
            padding: 20px 0;
        }

        /* The moving track */
        .testimonial-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            gap: 20px; /* Space between cards */
        }

        /* Individual Card */
        .testimonial-card {
            background: #fff;
            flex: 0 0 calc(33.333% - 14px); /* Default: 3 cards */
            padding: 30px 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            position: relative;
            border-radius: 12px;
            text-align: center;
            box-sizing: border-box;
        }

        .top-bar {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary-blue);
            border-radius: 12px 12px 0 0;
        }

        .testimonial-card img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 10px;
            border: 3px solid #f9f9f9;
        }

        .testimonial-card h4 {
            margin: 10px 0 2px;
            color: var(--primary-blue);
            font-size: 18px;
        }

        .testimonial-card small {
            color: var(--text-gray);
            font-weight: 500;
            display: block;
            margin-bottom: 10px;
        }

        .testimonial-card hr {
            margin: 15px 0;
            border: none;
            border-top: 1px solid #eee;
        }

        .testimonial-card h5 {
            color: var(--primary-blue);
            margin-bottom: 8px;
            font-size: 16px;
        }

        .testimonial-card p {
            font-size: 14px;
            color: var(--text-dark);
            line-height: 1.6;
            min-height: 70px;
        }

        .stars {
            margin-top: 15px;
            font-size: 18px;
        }

        /* Navigation */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            border: 1px solid #ddd;
            background: #fff;
            cursor: pointer;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .nav-btn:hover {
            background: var(--primary-blue);
            color: #fff;
        }

        .nav-btn.left { left: -10px; }
        .nav-btn.right { right: -10px; }

        /* Pagination Dots */
        .dots-container {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .dot {
            width: 10px;
            height: 10px;
            background: #ddd;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: var(--primary-blue);
            width: 25px;
            border-radius: 10px;
        }

        /* Responsive Breakpoints */
        @media (max-width: 992px) {
            .testimonial-card {
                flex: 0 0 calc(50% - 10px); /* 2 cards */
            }
            .nav-btn { display: none; } /* Hide buttons on touch devices */
        }

        @media (max-width: 600px) {
            .testimonial-card {
                flex: 0 0 100%; /* 1 card */
            }
            .testimonial-container {
                padding: 0 15px;
            }
        }

        /* Why choose us section style */

        /* Keyframes for Continuous Floating Motion */
    @keyframes floating {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
        100% { transform: translateY(0px); }
    }

    /* choose Section Styles */
    .choose-section { 
        padding: 50px 20px;
        background: var(--primary-blue); 
        overflow: hidden; 
        perspective: 1000px; 
    }

    .choose-container { 
        max-width: 1200px; 
        margin: auto; 
        display: flex; 
        align-items: center; 
        gap: 80px; 
    }
    
    .choose-content { 
        flex: 1.2; 
        opacity: 0; 
        transform: translateY(30px); 
        transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); 
    }

    .choose-image-wrapper { 
        flex: 0.8; 
        position: relative;
        opacity: 0; 
        transform: rotateY(-15deg) translateX(50px) scale(0.9);
        transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), 
                    transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .image-accent {
        position: absolute;
        top: -20px;
        right: -20px;
        width: 100%;
        height: 100%;
        border: 2px solid var(--primary-blue);
        border-radius: 20px;
        z-index: 0;
        transition: all 1.5s ease;
        transform: translate(20px, 20px);
    }

    /* Reveal Animations Triggered by Scroll */
    .choose-section.visible .choose-content { 
        opacity: 1; 
        transform: translateY(0); 
    }

    .choose-section.visible .choose-image-wrapper { 
        opacity: 1; 
        transform: rotateY(0deg) translateX(0) scale(1); 
    }
    
    /* Apply the Floating Animation ONLY after the section becomes visible */
    .choose-section.visible .choose-image-wrapper img {
        animation: floating 4s ease-in-out infinite;
    }

    .choose-section.visible .image-accent {
        transform: translate(0, 0);
        animation: floating 4s ease-in-out infinite reverse;
    }

    .choose-content h2 { 
        font-size: clamp(28px, 3vw, 36px);; 
        font-weight: 800; 
        color: #ffffff; 
        margin-bottom: 25px; 
        position: relative; 
    }

    .choose-content h2::after { 
        content: ''; 
        position: absolute; 
        bottom: -10px; 
        left: 0; 
        width: 0; 
        height: 4px; 
        background: var(--white); 
        transition: width 1s ease 0.5s;
    }

    .choose-section.visible .choose-content h2::after { 
        width: 100%; 
        max-width: 450px;
    }

    .choose-content p { 
        font-size: 17px; 
        line-height: 1.8; 
        color: #ffffff; 
        margin-bottom: 20px; 
    }

    .choose-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.choose-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #ffffff;
}

.choose-list i {
    color: var(--white); /* green tick */
    font-size: 18px;
}

    
    .address-box {
        display: flex; 
        align-items: flex-start; 
        gap: 15px; 
        background: #fff; 
        padding: 20px;
        border-radius: 10px; 
        box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
        margin-top: 30px;
        border-left: 4px solid var(--primary-blue);
        transition: transform 0.3s ease;
    }

    .address-box:hover { transform: scale(1.02); }
    .address-box i { color: var(--primary-blue); font-size: 20px; margin-top: 5px; }

    .choose-image-wrapper img { 
        width: 100%; 
        height: auto; 
        border-radius: 20px; 
        position: relative;
        z-index: 1;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        object-fit: cover;
    }

    @media (max-width: 991px) {
        .choose-container { flex-direction: column-reverse; gap: 50px; }
        .choose-content h2{text-align:center;}
        .choose-content h2::after { left: 50%; transform: translateX(-50%); }
        .address-box { text-align: left; }
        .choose-image-wrapper { transform: translateY(40px) scale(0.95); opacity: 0; }
        .choose-section.visible .choose-image-wrapper { transform: translateY(0) scale(1); }
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
    }

    /* Contact section on about us page */

    :root {
        --primary-blue: #336666;
        --accent-yellow: #993399;
        --soft-bg: #f8f9fa;
        --card-icon:rgba(0, 86, 179, 0.1);
    }

    /* :root {
        --primary-blue: #0056b3;
        --accent-yellow: #ffcc00;
        --soft-bg: #f8f9fa;
        --card-icon:rgba(0, 86, 179, 0.1);
    } */

    @keyframes floating {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
        100% { transform: translateY(0px); }
    }

    /* --- Updated Section Class: contact-row --- */
    .contact-row {
        position: relative;
        padding: 50px 0px;
        background: var(--soft-bg);
        overflow: hidden;
    }

    .blue-banner {
        background: var(--primary-blue);
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        padding: 0 20px;
    }

    .contact-header-content {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.8s ease;
    }

    .contact-row.visible .contact-header-content {
        opacity: 1;
        transform: translateY(0);
    }

    .contact-header-content h3 {
        font-size: 32px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .card-container {
        max-width: 1100px;
        margin: -100px auto 0; /* Positions cards half inside the blue banner */
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 0 20px;
        position: relative;
        z-index: 10;
    }

    .contact-card {
        background: white;
        padding: 40px 30px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        text-align: center;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .contact-row.visible .contact-card {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for cards */
    .contact-row.visible .contact-card:nth-child(1) { transition-delay: 0.2s; }
    .contact-row.visible .contact-card:nth-child(2) { transition-delay: 0.4s; }
    .contact-row.visible .contact-card:nth-child(3) { transition-delay: 0.6s; }

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    }

    .card-icon {
        width: 70px;
        height: 70px;
        background: var(--card-icon);
        color: var(--primary-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 28px;
        transition: all 0.3s ease;
    }

    .contact-card:hover .card-icon {
        background: var(--primary-blue);
        color: white;
        animation: floating 3s ease-in-out infinite;
    }

    .contact-card h4 {
        margin-bottom: 15px;
        color: var(--primary-blue);
        font-size: 20px;
        font-weight: 700;
    }

    .contact-card p {
        color: #666;
        line-height: 1.6;
        font-size: 15px;
    }

    @media (max-width: 991px) {
        .card-container {
            grid-template-columns: 1fr;
            margin-top: -50px;
            justify-content: center;
        }
        .blue-banner { height: 250px; }
        .contact-header-content h3 { font-size: 26px; }
    }

    /* Downloades page code style */

    /* Custom Drop-In Animation */
        @keyframes dropIn {
            0% { transform: translateY(-100px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }

        .animate-logo {
            animation: dropIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            display: inline-block;
        }

        .logo-wrapper {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        /* Card Hover Effects */
        .solar-card {
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
            border-radius: 1.25rem;
            background: white;
            height: 100%;
        }

        .solar-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
        }

        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #dee2e6, transparent);
            margin: 5rem 0;
        }

        .main-content-row {
            background: white;
            border-radius: 2rem;
            padding: 2.5rem;
            border: 1px solid #f1f3f5;
            box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
        }

        .img-container {
            border-radius: 1.5rem;
            overflow: hidden;
        }

        .img-container img {
            transition: transform 0.7s ease;
        }

        .img-container:hover img {
            transform: scale(1.05);
        }

        /* Toast Styling */
        #toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #212529;
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 0.5rem;
            display: none;
            z-index: 1050;
            box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.5);
        }

        .badge-custom {
            font-size: 0.75rem;
            letter-spacing: 1px;
            padding: 0.5em 1em;
            border-radius: 50rem;
        }

        /* Services section code on services page */
        :root {
           --primary-blue: #336666;
            --primary-accent: #993399;
            --text-gray: #666;
            --text-dark: #333;
            --white: #ffffff;
            --dot-color: rgba(255, 255, 255, 0.15);
        }

        /* :root {
           --primary-blue: #003366;
            --primary-accent: #ffcc00;
            --text-gray: #666;
            --text-dark: #333;
            --white: #ffffff;
            --dot-color: rgba(255, 255, 255, 0.15);
        } */


        * {
            box-sizing: border-box;
        }

        

        .container2 {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- Row Backgrounds --- */
        .services2-section {
            background-color: var(--white);
            padding: 50px 20px;
            text-align: center;
        }

        .advantages2-section {
            background-color: var(--primary-blue);
            /* White Dotted Pattern */
            background-image: radial-gradient(var(--dot-color) 1.5px, transparent 1.5px);
            background-size: 25px 25px;
            position: relative;
            padding: 50px 20px;
            text-align: center;
        }

        /* Adjust text for dark background section */
        .advantages2-section h2 {
            color: var(--white) !important;
        }

        h2 {
            font-size: clamp(28px, 5vw, 36px); 
            font-weight: 800; 
            color: var(--primary-blue); 
            margin-bottom: 15px; 
        }

        .section2-subtitle {
            max-width: 700px;
            margin: 10px auto 40px;
            color: var(--text-gray);
            font-size: 18px;
        }

        .advantages2-section .section2-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        /* --- Grid Layouts --- */
        .card2-grid {
            display: grid;
            gap: 25px;
            margin: 0 auto;
        }

        .card2-grid.four { grid-template-columns: repeat(2, 1fr); }
        .card2-grid.six { grid-template-columns: repeat(3, 1fr); }

        /* --- SHARED CARD HOVER LOGIC --- */
        .service2-card, .adv2-card {
            background: var(--white);
            padding: 40px 25px;
            border-radius: 14px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .service2-card i, .adv2-card i {
            font-size: 45px;
            color: var(--primary-blue); /* Default blue */
            margin-bottom: 20px;
            transition: color 0.3s ease;
        }

        .service2-card h4, .adv2-card h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary-blue); /* Default blue */
            transition: color 0.3s ease;
            text-align: center;
        }

        .service2-card p, .adv2-card p, .adv2-points li {
            font-size: 15px;
            color: var(--primary-blue); /* Default blue */
            margin: 0;
            transition: color 0.3s ease;
        }

        /* Hover states (Triggered on any card) */
        .service2-card:hover, .adv2-card:hover {
            background-color: var(--primary-blue);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .service2-card:hover i:not(.fa-check), .adv2-card:hover i:not(.fa-check) {
            color: var(--white); /* Icon Yellow */
        }

        .service2-card:hover h4, .service2-card:hover p,
        .adv2-card:hover h4, .adv2-card:hover .adv2-points li,
        .adv2-card:hover .adv2-points li i {
            color: var(--white); /* Contents White */
        }

        /* --- Advantages Specifics --- */
        .adv2-card { text-align: left; }
        .adv2-points { list-style: none; padding: 0; margin: 0; width: 100%; }
        .adv2-points li { font-size: 14px; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 10px; }
        .adv2-points li i { font-size: 14px; margin-top: 4px; margin-bottom: 0; }

        /* --- Responsive --- */
        @media (max-width: 991px) {
            .card2-grid.four, .card2-grid.six { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            .card2-grid.four, .card2-grid.six { grid-template-columns: 1fr; }
        }

/* common for all */

        a{
            text-decoration: none;
            color: inherit;
        }

        i.active,
        i:active {
            color: var(--accent-yellow);
        }

/* Contact page sections Style */

/* CONTACT3 SECTION */
        .contact3 {
            padding: 50px 0;
            background: #f4f7f6;
            font-family: var(--main-font);
            overflow-x: hidden;
        }

        /* TITLE ANIMATION */
        .contact3-title {
            text-align: center;
            margin-bottom: 60px;
        }
        .contact3-title h2 {
            font-size: clamp(28px, 3vw, 36px);
            font-weight: 800;
            letter-spacing: 1px;
            /* text-transform: uppercase; */
            color: var(--primary-blue);
            position: relative;
            display: inline-block;
        }
        .contact3-title span {
            display: block;
            width: 0;
            height: 4px;
            background: var(--accent-yellow);
            margin: 0px auto;
            border-radius: 5px;
            animation: lineGrow 1.5s forwards ease-in-out;
        }

        @keyframes lineGrow {
            to { width: 100px; }
        }

        /* CARD ENHANCEMENTS */
        .contact3-card {
            background: #fff;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,.05);
            height: 100%;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .contact3-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px var(--contact);
        }

        .contact3-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue));
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }

        .contact3-card:hover::before {
            transform: scaleX(1);
        }

        .contact3-card h5 {
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 30px;
            color: #333;
        }

        /* INFO ROW ANIMATIONS */
        .contact3-info {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 10px;
            border-radius: 12px;
            transition: background 0.3s ease, transform 0.3s ease;
        }
        
        .contact3-info:hover {
            background: rgba(0, 123, 255, 0.05);
            /* transform: translateX(10px); */
        }

        .contact3-info i {
            font-size: 24px;
            color: var(--primary-blue);
            margin-right: 20px;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 123, 255, 0.1);
            border-radius: 50%;
            transition: all 0.4s ease;
        }
        
        .contact3-info:hover i {
            background: var(--accent-yellow);
            color: #fff;
            transform: rotateY(360deg);
        }

        .contact3-info:hover h6,
        .contact3-info:hover p {
            color: var(--accent-yellow);
        }

        .contact3-info h6 {
            font-weight: 700;
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }
        .contact3-info p {
            margin: 0;
            color: #666;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        /* SOCIAL MEDIA ANIMATION */
        .contact3-follow {
            font-weight: 800;
            margin: 30px 0 15px;
        }
        .contact3-social a {
            display: inline-flex;
            width: 45px;
            height: 45px;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--primary-blue);
            background: #f0f4f8;
            border-radius: 50%;
            margin-right: 12px;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .contact3-social a:hover {
            color: #fff;
            background: var(--accent-yellow);
            transform: scale(1.2) rotate(15deg);
        }

        /* FORM INPUT ANIMATIONS */
        .contact3 input,
        .contact3 textarea {
            width: 100%;
            padding: 15px 20px;
            border-radius: 12px;
            border: 2px solid #eee;
            margin-bottom: 10px;
            outline: none;
            transition: all 0.3s ease;
            background: #fafafa;
        }
        .contact3 input:focus,
        .contact3 textarea:focus {
            border-color: var(--primary-blue);
            background: #fff;
            box-shadow: 0 5px 15px var(--contact);
            transform: translateY(-2px);
        }

        /* BUTTON ANIMATION */
        .contact3-btn button {
            background: var(--primary-blue);
            color: #fff;
            border: none;
            padding: 14px 50px;
            font-weight: 800;
            border-radius: 50px;
            box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .contact3-btn button::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            background: var(--accent-yellow);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .contact3-btn button:hover {
            color: #000;
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(255, 193, 7, 0.4);
        }
        
        .contact3-btn button:hover::after {
            width: 100%;
        }

        /* MAP REVEAL */
        .contact3-map {
            margin-top: 80px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,.1);
            width: 100%;
            transform: scale(0.98);
            transition: transform 0.6s ease;
        }
        
        .contact3-map:hover {
            transform: scale(1);
        }

        .contact3-map iframe {
            width: 100%;
            height: 500px;
            border: 0;
            display: block;
            filter: grayscale(20%);
            transition: filter 0.5s ease;
        }
        
        .contact3-map:hover iframe {
            filter: grayscale(0%);
        }

        /* FLOATING ELEMENT ANIMATION */
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }




        /* Logo style */

        .logo-img {
    /* height: 70px;        adjust as needed */
    width: 150px;
}


/* soluions */

.solutions-section {
  background-color: #f8f9fa;
}

.solution-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 25px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.solution-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(11, 60, 111, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.solution-icon i {
  font-size: 32px;
  color: var(--primary-blue);
  transition: all 0.35s ease;
}

.solution-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 10px;
  transition: all 0.35s ease;
}

.solution-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  transition: all 0.35s ease;
}

/* Hover Effects */
.solution-card:hover {
  background-color: var(--primary-blue);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.solution-card:hover .solution-icon {
  background: rgba(255,255,255,0.15);
}

.solution-card:hover .solution-icon i {
  color: var(--white);
  transform: scale(1.1);
}

.solution-card:hover h5 {
  color: var(--white);
}

.solution-card:hover p {
  color: var(--white);
}




/* Our Brands section Style code */



.brand-table {
  border-top: 1px solid var(--white);
}

.brand-row {
  padding: 25px 0;
  border-bottom: 1px solid var(--white);
}

/* Category Title */
.brand-title {
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
}

/* Brand Logos */
.brand-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Brand Card */
.brand-card {
  background: var(--white);
  padding: 15px 20px;
  border-radius: 12px;
  text-align: center;
  min-width: 170px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.brand-card img {
  max-height: 45px;
  margin-bottom: 6px;
}

.brand-card span {
  font-size: 15px;
  /* font-weight: 600; */
  color: var(--accent-yellow);
}

/* 🔥 MOBILE CENTER FIX */
@media (max-width: 767px) {

  .brand-title {
    text-align: center;
    margin-bottom: 15px;
  }

  .brand-list {
    justify-content: center;
  }

  .brand-row {
    text-align: center;
  }
}








/* Sidebar Social Media links style code */


/* Desktop Sidebar */
.social-sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    transition: right 0.3s ease;
}

.social-sidebar a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 48px;
    height: 48px;
    margin-bottom: 5px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px 0 0 8px;
    transition: all 0.3s ease;
}

.social-sidebar a i {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    font-size: 18px;
    border-radius: 8px 0 0 8px;
}

.social-sidebar a .label {
    position: absolute;
    right: 48px;
    width: 120px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.35s ease;
}

.social-sidebar a:hover .label {
    opacity: 1;
    transform: translateX(0);
}

/* Colors */
.whatsapp i, .whatsapp .label { background: #25d366; }
.bg{
    background: var(--accent-yellow);
}

.bg:hover{
    background: var(--accent-yellow)!important;
}

/* Close Button */
.sidebar-close-button {
    background: var(--accent-yellow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    color: #fff;
}

/* Reopen Button */
.re-open-toggle {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 32px;
    height: 60px;
    background: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    z-index: 9998;
}

.re-open-toggle.hidden {
    right: -40px;
    opacity: 0;
    pointer-events: none;
}

/* Collapsed */
.social-sidebar.collapsed {
    right: -200px;
}

/* Mobile Bottom Bar */
@media (max-width: 768px) {
    .social-sidebar {
        flex-direction: row;
        position: fixed;
        bottom: 0;
        top: auto;
        left: 0;
        width: 100%;
        transform: none;
        background: #222;
        padding: 10px 0;
        justify-content: space-around;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    }

    .social-sidebar a,
    .social-sidebar a i {
        width: 50px;
        height: 50px;
        line-height: 50px;
        border-radius: 50%;
        font-size: 24px;
    }

    .label,
    .sidebar-close-button,
    .re-open-toggle {
        display: none;
    }
}


/* Products containers-cards */
/* The Main White Container Pro */
        .white-card-wrapper-pro {
            background-color: #ffffff;
            border-radius: 0px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            padding: 2rem;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        /* Brand Badge Design Pro */
        .brand-badge-pro {
            display: block;
            color: var(--primary-blue);
            font-weight: 800;
            font-size: clamp(28px, 3vw, 36px);
            border-bottom: 1px solid #edf2f7;
            padding-bottom: 8px;
        }
        @media (max-width: 768px) {
    .brand-badge-pro {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

        /* Square Floating Card Design Pro */
        .product-card-pro {
            background: #ffffff;
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            position: relative;
            width: 100%;
            cursor: pointer;
            /* height: 100%; */
            display: flex;
            flex-direction: column;
            margin-bottom: 1rem;
        }

        .product-card-pro:hover {
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            border-color: var(--brand-blue-pro);
        }

        /* Square Image Container Pro */
        .img-container-pro {
            width: 100%;
            aspect-ratio: 1 / 1; 
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            overflow: hidden;
            margin-bottom: 10px;
        }

        .img-container-pro img {
            max-width: 100%;
            max-height: 100%;
            width: 100vh;
            height: auto;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .product-card-pro:hover .img-container-pro img {
            transform: scale(1.05);
        }

        /* CTA Design Pro */
        .cta-container-pro {
            margin-top: auto; 
            padding-top: 10px;
        }

        .btn-modern-pro {
            width: 100%;
            border-radius: 8px;
            padding: 10px 5px;
            border: none;
            color: white;
            font-weight: 700;
            font-size: 0.85rem;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .bg-blue-pro { background-color: var(--primary-blue); }
        .bg-blue-pro:hover { background-color: var(--accent-yellow); }
        .bg-green-pro { background-color: var(--primary-blue); }
        .bg-green-pro:hover { background-color: var(--accent-yellow); }

        .btn-modern-pro:hover {
            opacity: 0.9;
        }

        /* Mobile Layout Adjustments Pro */
        @media (max-width: 576px) {
            .white-card-wrapper-pro { padding: 1rem; margin-top: 1rem; border-radius: 0; }
            .col-6 { padding-left: 5px; padding-right: 5px; }
            .product-card-pro { padding: 10px; border-radius: 10px; }
            .btn-modern-pro { font-size: 0.7rem; padding: 8px 2px; }
        }

        b{
          color:var(--accent-yellow);
        };




/* AMC section code on services section*/

/* Font Styling */

/* Card Styling */
.amc-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  background: #fff;
}

/* Hover Top Move */
.amc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Icon Styling */
.amc-icon {
  color: #336666;
  font-size: 40px;
}

/* List Styling */
.amc-list li {
  font-size: 18px;
  padding: 10px 0;
}

/* Smooth Fade Animation */
.amc-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.amc-card:nth-child(1) { animation-delay: 0.2s; }
.amc-card:nth-child(2) { animation-delay: 0.4s; }
.amc-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*Customer logos Scrolling section code on home page*/

 /* Continuous Scrolling Logic */
        .scroller-wrapper {
            overflow: hidden;
            width: 100%;
            padding: 20px 0;
            position: relative;
        }

        /* The moving track */
        .scroller-track {
            display: flex;
            width: max-content;
            /* Animation speed controlled here or via inline style */
            animation: scroll-left 25s linear infinite;
        }

        /* Reverse direction animation */
        .scroller-track-reverse {
            animation: scroll-right 30s linear infinite;
        }

        /* Logo Card Style */
        .logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 250px;
            height: 120px;
            margin: 0 15px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            padding: 20px;
            transition: transform 0.3s ease;
        }

        /* Tablet devices (<= 992px) */
@media (max-width: 992px) {
    .logo-item {
        width: 200px;
        height: 70px;
        padding: 10px;
    }
}

/* Mobile devices (<= 576px) */
@media (max-width: 576px) {
    .logo-item {
        width: 200px;
        height: 70px;
        padding: 10px;
    }
}

        /* Image sizing within the card */
        .logo-item img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .logo-item:hover {
            transform: translateY(-5px);
        }

        /* Animations */
        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes scroll-right {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        /* Pause on hover */
        .scroller-wrapper:hover .scroller-track {
            animation-play-state: paused;
        }

        .row-label {
            font-size: 0.85rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            margin-top: 30px;
        }

        



/*click button effect */

.product-card {
    position: relative;
    cursor: pointer;
}

/* Default: Hide on desktop */
.tap-overlay {
    display: none;
}

/* Show only on mobile & tablet */
@media (max-width: 991px) {
    .tap-overlay {
        display: block;
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        
        background: var(--accent-yellow);
        color: #fff;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.5px;

        white-space: nowrap;
        pointer-events: none;

        /* Smooth animation */
        animation: fadePulse 2s infinite;
    }
}

/* Animation */
@keyframes fadePulse {
    0% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
    100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
}



/*Footer-Icon-Review on pages footer sections*/

.footer-google-review i {
    color: #ffc107;
}

.footer-google-review a {
    text-decoration: none;
    color: #fff; /* text color (change based on footer bg) */
}


