        @font-face {
            font-family: 'Montserrat';
            src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
            font-weight: 100 900;
            font-style: normal;
        }

        @font-face {
            font-family: 'Morris';
            src: url('../fonts/MorrisSansW01Medium.ttf') format('truetype');
            font-weight: 100 900;
            font-style: normal;
        }

        html,
        body {
            height: 100%;
            overflow-x: hidden;
        }

        /* Disable body scroll */
        body.no-scroll {
            position: fixed;
            width: 100%;
        }

        :root {
            /* Light Theme (Default) */
            --bg-primary: #326780;
            --bg-secondary: #5BAEC3;
            --bg-tertiory: #B7E1EA;
            --bg-card: #D6EAF0;
            --bg-dark: #181818;
            /* --bg-primary-gradient: linear-gradient(90deg, #326789 0%, #5BAEC3 50%, #B7E1EA 100%); */
            --bg-primary-gradient: linear-gradient(90deg, #326789 0%, #5BAEC3 100%, #B7E1EA 10%);
            --bg-light: #ffffff;
            --text-primary: #333333;
            --text-secondary: #666666;
            --text-inverse: #ffffff;
            --accent-color: #326780;
            --accent-hover: #5BAEC3;
            --border-color: #e0e0e0;
            --overlay-dark: rgba(0, 0, 0, 0.9);
            --overlay-light: rgba(0, 0, 0, 0.3);
            --ticker-bg: linear-gradient(90deg, #4a9eff 0%, #5ba8ff 100%);
            --social-bg: linear-gradient(135deg, #4a9eff 0%, #5ba8ff 100%);
        }

        [data-theme="dark"] {
            /* Dark Theme */
            --bg-primary: #181818;
            --bg-secondary: #2a2a2a;
            --bg-dark: #181818;
            --text-primary: #ffffff;
            --text-secondary: #cccccc;
            --text-inverse: #333333;
            --accent-color: #326780;
            --accent-hover: #5BAEC3;
            --border-color: #3a3a3a;
            --overlay-dark: rgba(0, 0, 0, 0.95);
            --overlay-light: rgba(0, 0, 0, 0.5);
            --ticker-bg: linear-gradient(90deg, #3a7ecc 0%, #4a9eff 100%);
            --social-bg: linear-gradient(135deg, #3a7ecc 0%, #4a9eff 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', 'Arial', sans-serif;
            overflow-x: hidden;
            background: var(--bg-primary);
            color: var(--text-primary);
            transition: background 0.3s ease, color 0.3s ease;
        }

        /* Top Bar */
        .top-bar {
            background: var(--bg-light);
            padding: 0;
            border-bottom: 1px solid var(--border-color);
            transition: background 0.3s ease, border-color 0.3s ease;
            position: relative;
        }

        .top-bar .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 5px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info {
            display: flex;
            gap: 10px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .contact-info .contact-item span {
            color: #000000;
        }

        .contact-numbers {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }


        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--bg-dark);
        }

        .contact-item i {
            /* color: var(--accent-color); */
            color: #181818;
        }

        .social-links {
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            padding: 10px 40px;
            /* background: var(--social-bg); */
            /* clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%); */
            background: linear-gradient(90deg, #326789 0%, #5BAEC3 50%, #B7E1EA 100%);
            /* clip-path: polygon(0 0, 100% 0, 100% 100%, 3% 100%); */
            background-image: url("../images/homepage/header.png");
            background-position: left;
            background-size: cover;
            margin-right: -40px;
        }

        .social-links span {
            font-size: 14px;
            color: white;
            font-weight: 600;
        }

        .social-links a {
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            backdrop-filter: blur(5px);
        }

        .social-links a:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.3);
        }

        /* Theme Toggle Button */
        .theme-toggle {
            /* background: rgba(255, 255, 255, 0.2); */
            background: rgb(0, 0, 0);
            border: none;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s;
            margin-left: 10px;
            backdrop-filter: blur(5px);
        }

        .theme-toggle:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(180deg);
        }


        /* ================= MOBILE NAV ================= */

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile Styles */
        @media (max-width: 768px) {


             .top-bar {
                display: none;
            }

            .navbar .nav-lang {
                margin-left: 0;
            }

            .navbar .nav-lang-select {
                font-size: 13px;
                padding: 6px 32px 6px 10px;
            }

            .navbar .container {
                padding: 0 20px;
            }

            .hamburger {
                display: flex;
                flex-direction: column;
                gap: 5px;
                cursor: pointer;
                position: relative;
                z-index: 1000;
                /* above menu */
            }


            .navbar .container .logo img {
                height: 25px;
            }

            .navbar .container {
                height: 60px;
                display: flex;
                align-items: center;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                left: 0;

                width: 100vw;
                height: 100dvh;

                background: #000;

                display: flex;
                flex-direction: column;

                justify-content: center;
                align-items: center;

                padding: 0;
                /* important */
                margin: 0;
                /* important */

                transform: translateX(-100%);
                transition: transform 0.4s ease;

                z-index: 999;
                overflow: hidden;
            }

            .nav-menu.active {
                transform: translateX(0);
            }


            .nav-menu li {
                list-style: none;
            }

            .nav-menu a {
                font-size: 30px;
                color: white;
                text-decoration: none;
            }

            .nav-lang {
                display: none;
                /* optional hide language in mobile */
            }

            .navbar .nav-menu a.active {

                font-size: 30px;

            }

                   body .hero-section {
            position: relative;
            width: 100%;
            /* height: calc(100vh - 120px); Earlier before 26-01-26 */
            height: calc(70vh - 50px);
            overflow: hidden;
            margin-bottom: 0;
            border-bottom: 20px solid var(--bg-primary);
        }

             .hero-content-wrapper .hero-left {
                height: auto;
            /* background-color: red; */
            padding: 30px 20px;
           
        }

         .industries-section .container .industries-header{
            padding: 15px;
        }

         .industries-section .container .industries-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            flex-wrap: wrap;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
        }
        }

        /* Navigation */
        .navbar {
            background: #000;
            /* background: var(--bg-primary-gradient); */
            /* padding: 15px 0;  Earlier before 26-01-26*/
            padding: 8px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: background 0.3s ease;
        }

        .navbar .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 40px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-menu a {
            color: var(--text-inverse);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            padding-bottom: 5px;
        }

        .nav-menu a:hover {
            color: var(--accent-color);
            font-size: 18px;
        }

        /* Active/Selected nav item */
        .nav-menu a.active {
            color: var(--accent-color);
            font-size: 18px;
            font-weight: 600;
        }

        /* Underline for active nav */
        .nav-menu a.active::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-color);
        }

        /* Hover underline effect for all links */
        .nav-menu a::before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::before {
            width: 100%;
        }

        /* Don't show hover effect on active link */
        .nav-menu a.active::before {
            display: none;
        }

        .enquiry-btn {
            background: var(--bg-primary-gradient);
            color: white;
            padding: 10px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }

        .enquiry-btn:hover {
            background: var(--accent-hover);
        }

        /* ================================
   Navbar Language Selector
   ================================ */

        .navbar .nav-lang {
            display: flex;
            align-items: center;
            margin-left: 16px;
        }

        .navbar .nav-lang-select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;

            background-color: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.15);
            border-radius: 6px;

            padding: 8px 36px 8px 12px;
            font-size: 14px;
            font-weight: 600;
            color: #222;
            cursor: pointer;

            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23222' stroke-width='2' fill='none'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 12px;

            transition: all 0.2s ease;
        }

        .navbar .nav-lang-select:hover {
            border-color: var(--accent-color);
        }

        .navbar .nav-lang-select:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
        }

        /* Dark navbar support (optional) */
        [data-theme="dark"] .navbar .nav-lang-select {
            background-color: #111;
            color: #fff;
            border-color: rgba(255, 255, 255, 0.2);
        }


        /* Hero Section */
        .hero-section {
            position: relative;
            width: 100%;
            /* height: calc(100vh - 120px); Earlier before 26-01-26 */
            height: calc(100vh - 50px);
            overflow: hidden;
            margin-bottom: 0;
            border-bottom: 20px solid var(--bg-primary);
        }

        /* .hero-section-main{
            height: calc(100vh - 50px);
        } */

        .hero-swiper {
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Black Background Image */
        /* .hero-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        } */

        .hero-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        /* Background image */
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hero-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* makes it behave like background */
            display: block;
        }


        /* Dark overlay */
        .hero-bg::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.3);
            /* 👈 adjust darkness here */
            z-index: 1;
        }

        .hero-section-service {
            height: auto;
        }

        .services-hero-bg::after {
            display: none;
        }




        [data-theme="dark"] .hero-bg img {
            filter: brightness(0.2);
        }

        /* Content Wrapper */
        .hero-content-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: space-between;
            z-index: 1;
        }


        /* Left Text Section */
        .hero-left {
            width: 65%;
            display: flex;
            align-items: center;
            padding: 60px 80px;
            position: relative;
            z-index: 2;
            /* background-image: url("../images/homepage/hero-page-2.png");
            background-size: cover;
            background-position: right; */
        }

        .hero-left>* {
            position: relative;
            z-index: 1;
        }

        .hero-left::before {
            content: "";
            position: absolute;
            inset: 0;
            /* background: rgba(0, 0, 0, 0.6); */
            /* background: color-mix(in srgb, var(--bg-primary) 85%, transparent); */
            /* clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%); */
            /* clip-path: polygon(0 0, 71% 0, 100% 100%, 14% 100%); */
            transform: translateX(-100%);
            z-index: 0;
        }

        /* Animate ONLY when class is added */
        .hero-left.animate::before {
            animation: slideOverlay 1s ease-out forwards;
        }

        .hero-download-btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--bg-light);
            color: var(--bg-primary);
            font-weight: bold;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            margin-top: 15px;
            transition: background 0.3s;
        }

        .hero-download-btn:hover {
            background-color: var(--bg-primary);
            color: var(--bg-light);
        }


        @keyframes slideOverlay {
            to {
                transform: translateX(0);
            }
        }




        .hero-text-content {
            max-width: 950px;
        }



        /* 🔹 Service Page – Make all text black */
        .service-text-content .hero-title {
            color: #000;
        }

        .service-text-content .hero-description {
            color: #000;
            font-style: italic;
            font-weight: 500;
        }

        .service-text-content .hero-cta {
            color: #000;
            background: transparent;
            border: 2px solid #000;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .service-text-content .service-cta {
            color: var(--bg-light);
            background: var(--bg-primary-gradient);
            font-style: italic;
        }

        .service-text-content .hero-cta:hover {
            background: #000;
            color: #fff;
        }

        .service-text-content .view-products-link {
            color: #000;
        }

        .service-text-content .view-products-link::after {
            background: var(--bg-dark);
        }

        .service-text-content .view-products-link:hover {
            color: var(--bg-light);
        }



        .hero-title {
            font-size: clamp(1.5rem, 3vw, 0.8rem);
            font-weight: 700;
            color: var(--text-inverse);
            line-height: 1.3;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            font-family: "Morris";
        }

        .hero-title .first-letter {
            font-size: 1.3em;
            font-weight: 700;
            /* color: var(--accent-color); */
        }


        .hero-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .hero-cta {
            display: inline-block;
            background: var(--accent-color);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            z-index: 9;
        }

        .hero-cta:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }

        /* Right Image Section with Angle Cut */
        .hero-right {
            width: 40%;
            position: relative;
            overflow: visible;
        }

        .angle-container {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            /* clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%); */
            z-index: 1;
        }

        .angle-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
        }

        .logo-overlay {
            position: absolute;
            top: 40px;
            right: 60px;
            max-width: 180px;
            z-index: 4;
        }

        /* Swiper Pagination */
        .hero-swiper .swiper-pagination {
            bottom: 30px !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            width: auto !important;
            text-align: center;
        }

        .hero-swiper .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 1;
            border-radius: 50%;
            margin: 0 5px;
        }

        .hero-swiper .swiper-pagination-bullet-active {
            background: white;
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .hero-products {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 30px;
            z-index: 5;
        }

        .hero-product-item {
            text-align: center;
            text-decoration: none;
            color: white;
            transition: transform 0.3s ease;
        }

        .hero-product-item img {
            width: 90px;
            height: 90px;
            object-fit: contain;
            background: rgba(255, 255, 255, 0.1);
            padding: 10px;
            border-radius: 20px;
            backdrop-filter: blur(6px);
            transition: all 0.3s ease;
        }

        .hero-product-item span {
            display: block;
            margin-top: 8px;
            font-size: 14px;
            font-weight: 500;
        }

        /* Hover Effect */
        .hero-product-item:hover {
            transform: translateY(-6px);
        }

        .hero-product-item:hover img {
            background: rgba(var(--bg-secondary-rgb), 0.8);
        }


        /* News Ticker */
        .news-ticker-container {
            position: relative;
            width: 100%;
            /* background: var(--bg-primary-gradient); */
            background-image: url("../images/Color-BG-4.png");
            background-size: cover;
            background-position: center;
            padding: 15px 0;
            overflow: hidden;
            transition: background 0.3s ease;
        }

        .news-ticker-wrapper {
            display: flex;
            width: max-content;
            animation: scroll 30s linear infinite;
        }

        .news-ticker-content {
            display: flex;
            white-space: nowrap;
            padding: 0 10px;
        }

        .news-item {
            color: white;
            font-size: 18px;
            margin-right: 30px;
            display: inline-flex;
            align-items: center;
            font-weight: 800;
        }

        .news-item::before {
            content: "";
            display: inline-block;
            width: 20px;
            height: 20px;
            margin-right: 15px;

            background-image: url("../images/section2/Icon.png");
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }


        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content-wrapper {
                flex-direction: column;
            }

            .hero-left,
            .hero-right {
                width: 100%;
                height: 50%;
            }

            .angle-container {
                clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
            }

            .contact-info {
                flex-direction: column;
                gap: 10px;
            }

            .nav-menu {
                gap: 20px;
                font-size: 14px;
            }

            .social-links {
                clip-path: none;
                margin-right: 0;
                padding: 10px 20px;
            }
        }

        #products-hero-page {
            height: auto;
        }

        /* Products Section */
        .products-section {
            padding: 40px 10px;
            background: url("../images/section5/BG-6.png");
            background-size: cover;
            background-position: center;
            transition: background 0.3s ease;
        }

        .products-section .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .products-section .section-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .products-section .section-description {
            font-size: 18px;
            color: var(--bg-dark);
            font-style: italic;
            font-weight: 600;
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto;
        }

        .products-section .products-grid {
            max-height: 400px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .products-section .product-card {
            background: var(--bg-light);
            border-radius: 25px;
            padding: 0;
            transition: all 0.3s ease;
            box-shadow: 6px 6px 15px rgba(150, 150, 150, 0.35);
            display: flex;
            flex-direction: column;
            scale: 1;
            position: relative;
            overflow: hidden;
            /* IMPORTANT */
        }

        /* IMAGE AREA */
        .products-section .product-image {
            width: 100%;
            height: 220px;
            background: var(--bg-card);
            border-radius: 25px 25px 0 50px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        /* BG ICON (WATERMARK) */
        .products-section .product-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url("../images/section6/Logo-icon.png");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 70%;

            opacity: 0.2;
            /* subtle watermark */
            pointer-events: none;
        }

        /* INNER BORDER */
        .products-section .product-image::before {
            content: "";
            position: absolute;
            inset: 6px;
            border: 1.5px solid var(--bg-primary);
            border-radius: 18px 18px 0 42px;
            pointer-events: none;
        }




        .products-section .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
            z-index: 50;
        }

        .products-section .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .products-section .product-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--accent-color);
            text-align: center;
            margin: 15px 0 5px;
            padding: 0 20px;
        }

        .products-section .product-divider {
            width: 80%;
            height: 2px;
            background: var(--accent-color);
            margin: 5px auto 15px;
        }

        /* .products-section .product-description {
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
            padding: 0 20px;
            margin-bottom: 15px;
            line-height: 1.6;
            flex-grow: 1;
        } */

        .products-section .product-description {
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
            padding: 0 20px;
            margin-bottom: 15px;
            line-height: 1.6;
            flex-grow: 1;

            /* 👇 truncate */
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            /* number of lines */
            overflow: hidden;
        }


        .products-section .product-buttons {
            display: flex;
            gap: 12px;
            padding: 0 20px 25px;
            justify-content: center;
            white-space: noWrap;
        }

        .products-section .btn-read-more,
        .btn-enquiry {
            padding: 10px 24px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            font-size: 10px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .products-section .btn-read-more {
            background: var(--accent-color);
            color: white;
            border: none;
        }

        .products-section .btn-read-more:hover {
            background: var(--accent-hover);
        }

        .products-section .btn-enquiry {
            background: var(--accent-color);
            color: white;
            border: none;
        }

        .products-section .btn-enquiry:hover {
            background: var(--accent-hover);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .products-section {
                padding: 60px 0;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .product-buttons {
                flex-direction: column;
            }

            .btn-read-more,
            .btn-enquiry {
                width: 100%;
                text-align: center;
            }
        }

        /* About Section */
        .about-section {
            padding: 20px 0;
            background: url("../images/black-bg-all.jpg");
            background-position: center;
            background-size: cover;
            color: white;
            transition: background 0.3s ease;
        }

        /* [data-theme="dark"] .about-section {
            background-image: url("../images/section6/BG-7.png");
            background-position: center;
            background-size: cover;
        } */

        .about-header {
            text-align: center;
            margin-bottom: 10px;
        }

        .about-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .about-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            font-style: italic;
            font-weight: 500;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Left Content */
        .about-left {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .about-description {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            text-align: justify;
        }

        .about-features {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .feature-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .feature-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: var(--accent-color);
            border-radius: 25px;
            border: 2px solid #5BAEC3;
            transition: all 0.3s ease;
        }

        .feature-badge:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(91, 174, 195, 0.3);
        }

        .feature-badge i {
            font-size: 20px;
            color: white;
        }

        .feature-badge span {
            font-size: 15px;
            font-weight: 700;
            color: white;
        }

        .learn-more-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 600;
            font-style: italic;
            color: white;
            text-decoration: none;
            margin-top: 10px;
            transition: all 0.3s ease;
        }

        .learn-more-link:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }

        .learn-more-link i {
            transition: transform 0.3s ease;
        }

        .learn-more-link:hover i {
            transform: translateX(5px);
        }

        /* Right Images - Ring Layout */
        .about-section .about-right {
            position: relative;
            height: auto;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            /* background: var(--bg-dark); */
        }

        .about-section .image-group {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            /* gap: 30px; */
        }

        .about-section .main-image-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-section .main-image {
            border-radius: 25px;
            overflow: hidden;
            /* border: 3px solid var(--accent-color); */
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); */
        }

        .about-section .main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .about-section .image-1 {
            height: 300px;
        }

        .about-section .sub-image {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 350px;
            height: 240px;
            border-radius: 25px;
            overflow: hidden;
            border: none;
            /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6); */
            z-index: 3;
            background: transparent;
        }

        .about-section .sub-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .about-section .image-group .image-2 {
            width: 200px;
            height: 200px;
            border-radius: 25px;
            margin-top: 0;
            position: relative;
            bottom: 100px;
            left: 80px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-right {
                height: 550px;
                margin-top: 40px;
            }

            .feature-row {
                grid-template-columns: 1fr;
            }

            .image-1 {
                width: 350px;
                height: 180px;
            }

            .sub-image {
                width: 200px;
                height: 200px;
                bottom: -70px;
            }

            .image-group .image-2 {
                width: 450px;
                height: 250px;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 60px 0;
            }

            .about-content {
                padding: 0 20px;
            }

            .about-description {
                text-align: left;
            }

            .about-right {
                height: 500px;
            }

            .image-1 {
                width: 100%;
                max-width: 320px;
                height: 160px;
            }

            .sub-image {
                width: 180px;
                height: 180px;
                bottom: -60px;
            }

            .image-group .image-2 {
                width: 100%;
                max-width: 400px;
                height: 220px;
            }
        }

        /* Industries Section */
        .industries-section {
            position: relative;
            padding: 40px 0;
            overflow: hidden;
            min-height: 600px;
        }

        .industries-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .industries-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* filter: brightness(0.4); */
        }

        .industries-section .container {
            position: relative;
            z-index: 1;
        }

        .industries-section .industries-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .industries-section .industries-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .industries-section .industries-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.95);
            font-style: italic;
            font-weight: 500;
            max-width: 800px;
            margin: 0 auto;
        }

        .industries-section .industries-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
        }

        .industries-section .industry-card {
            /* background: white; */
            /* border-radius: 25px; */
            overflow: hidden;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
            transition: all 0.3s ease;
            position: relative;
        }

        .industries-section .industry-card:hover {
            transform: translateY(-15px);
            /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5); */
        }

        .industries-section .industry-image {
            position: relative;
            width: 100%;
            height: 350px;
            overflow: hidden;
        }

        .industry-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            scale: 1;
            transition: transform 0.3s ease;
        }

        .industry-card:hover .industry-image img {
            transform: scale(1.1);
        }

        .industry-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1f4068 0%, #2a527a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 3px solid white;
        }

        .industry-icon i {
            font-size: 28px;
            color: white;
        }

        .industry-content {
            background: white;
            padding: 30px 20px;
            text-align: center;
            border-radius: 0 0 25px 25px;
            margin-top: -30px;
            position: relative;
            z-index: 2;
        }

        .industry-name {
            font-size: 22px;
            font-weight: 700;
            color: #1f4068;
            line-height: 1.3;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .industries-section {
                padding: 60px 0;
            }

            .industries-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .industry-image {
                height: 220px;
            }

            .industry-icon {
                width: 50px;
                height: 50px;
            }

            .industry-icon i {
                font-size: 24px;
            }
        }

        /* Why Choose Section */
        .why-choose-section {
            padding: 40px 0 100px 0;
            background-image: url("../images/section5/BG-6.png");
            background-size: cover;
            background-position: center;
            transition: background 0.3s ease;
        }

        .why-choose-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .why-choose-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--bg-dark);
            margin-bottom: 15px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Hexagon Container */
        .hexagon-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        .hexagon-row {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-left: -5px;
            margin-right: -5px;
        }

        .top-row {
            margin-bottom: -40px;
        }

        .middle-row {
            margin-top: 0;
        }

        .hex-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            gap: 25px;
            z-index: 1;
            transition: z-index 0.3s ease;
            margin: 0 -5px;
        }

        .hex-wrapper:hover {
            z-index: 10;
        }

        /* Hexagon Image */
        .hexagon-image {
            width: 155px;
            height: 155px;
            position: relative;
            transition: transform 0.3s ease;
            /* filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15)); */
            flex-shrink: 0;
        }

        .hexagon-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.95));
        }



        .hex-wrapper:hover .hexagon-image {
            transform: scale(1.15);
            filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
        }

        /* Labels */
        .hex-label {
            max-width: 200px;
            flex-shrink: 0;
        }

        .hex-label h3 {
            font-size: 20px;
            font-weight: 900;
            color: var(--text-primary);
            line-height: 1.3;
        }

        .left-label {
            text-align: right;
        }

        .right-label {
            text-align: left;
        }

        .center-label {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            min-width: 350px;
            max-width: 350px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hexagon-image {
                width: 135px;
                height: 135px;
            }

            .hex-label {
                max-width: 150px;
            }

            .hex-label h3 {
                font-size: 16px;
            }

            .hex-wrapper {
                gap: 12px;
            }

            .top-row {
                margin-bottom: -50px;
            }
        }

   @media (max-width: 768px) {

    .why-choose-section {
        padding: 60px 0;
        background-position: center;
    }

    .why-choose-header {
        margin-bottom: 40px;
    }

    /* Remove row structure */
    .hexagon-row {
        flex-direction: column;
        gap: 35px;
        margin: 0;
    }

    /* Make each hex a clean vertical card */
    .hex-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;

        width: 100%;
        max-width: 320px;
        margin: 0 auto;

        gap: 18px;
    }

    /* Remove overlapping behaviour */
    .top-row,
    .middle-row {
        margin: 0;
    }

    /* Hex size smaller */
    .hexagon-image {
        width: 110px;
        height: 110px;
    }

    /* Remove absolute center label */
    .center-label {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        min-width: auto;
        max-width: 100%;
        margin-top: 0;
    }

    /* All labels centered */
    .left-label,
    .right-label {
        text-align: center;
    }

    .hex-label {
        max-width: 100%;
    }

    .hex-label h3 {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.4;
    }

}

        /* Footer Section */
        .footer-section {
            background-image: url("../images/BG-7.jpg");
            background-position: center;
            background-size: cover;
            color: white;
            padding: 60px 0 20px;
            transition: background 0.3s ease;
        }

        [data-theme="dark"] .footer-section {
            background: #000000;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 0.8fr 1.3fr;
            gap: 10px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Footer Left - Logo and Contact */
        .footer-left {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .footer-logo img {
            height: 60px;
            margin-bottom: 10px;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
        }

        .contact-icon {
            width: 24px;
            height: 24px;
            object-fit: contain;
            /* filter: brightness(0) invert(1); */
        }

        .contact-item a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--accent-color);
        }

        .contact-item span {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Social Links */
        /* Social Links */
        .footer-social {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 10px;
        }

        .social-title {
            font-weight: 600;
            font-size: 16px;
        }

        .footer-social .social-links-footer {
            display: flex;
            gap: 12px;
        }

        .footer-social .social-links-footer a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 8px;
        }

        .footer-social .social-links-footer a img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: brightness(0) invert(1);
            transition: filter 0.3s ease;
        }

        .footer-social .social-links-footer a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-social .social-links-footer a:hover img {
            filter: brightness(0) invert(1);
        }

        /* Footer Middle and Right - Links */
        .footer-middle,
        .footer-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-heading {
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            font-style: italic;
            letter-spacing: 0.5px;
        }

        /* .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links li {
            display: flex;
            align-items: center;
            gap: 10px;
        } */

        .footer-links {
            list-style: none;
            display: grid;
            grid-auto-flow: column;
            /* fill top → bottom, then next column */
            grid-template-rows: repeat(6, auto);
            /* exactly 6 items per column */
            gap: 12px 40px;
            /* row gap | column gap */
        }

        .footer-links li {
            display: flex;
            align-items: center;
            gap: 10px;
        }


        .link-icon {
            width: 18px;
            height: 18px;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        /* Footer Bottom */
        .footer-bottom {
            text-align: center;
            padding: 20px 40px 0;
            margin-top: 20px;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--accent-color);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-right {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .footer-section {
                padding: 40px 0 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 20px 30px;
            }

            .footer-logo img {
                height: 50px;
            }

            .contact-item {
                font-size: 14px;
            }

            .footer-social {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .footer-heading {
                font-size: 18px;
            }

            .footer-links a {
                font-size: 14px;
            }

            .footer-bottom {
                padding: 15px 20px 0;
            }

            .footer-bottom p {
                font-size: 12px;
                line-height: 1.6;
            }
        }



        /* About us page  */

        /* About Us Section */
        .about-us-section {
            padding: 40px 0;
            background: url("../images/section5/BG-6.png");
            background-position: center;
            background-size: cover;
            transition: background 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .about-us-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Left Image Grid */
        .about-us-left {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ================= CONTAINER ================= */
        .image-grid {
            position: relative;
            width: 100%;
            max-width: 440px;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* ================= ROWS ================= */
        .row-1,
        .row-2 {
            display: grid;
            gap: 30px;
        }

        .row-1 {
            grid-template-columns: 70% 30%;
        }

        .row-2 {
            grid-template-columns: 40% 60%;
        }

        /* ================= BASE CARD ================= */
        .grid-image {
            position: relative;
            width: 100%;
            height: 220px;
            background: #fff;
            border: 3px solid var(--accent-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            overflow: visible;
        }

        /* ================= IMAGE ================= */
        .grid-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
        }

        /* ================= IMAGE 1 ================= */
        .about-us-section .image-1 {
            border-radius: 75px 5px 5px 5px;
            background: var(--accent-color);
            z-index: 4;
            box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
        }

        .about-us-section .image-1 img {
            width: 102%;
            height: 102%;
            position: relative;
            top: 10px;
            left: 10px;
            border-radius: 75px 5px 5px 5px;
            box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
        }

        /* ================= IMAGE 2 ================= */
        .about-us-section .image-2 {
            top: 10px;
            border-radius: 5px 100px 5px 5px;
            overflow: hidden;
            border: none;
            box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
            z-index: 2;
        }

        /* ================= IMAGE 3 ================= */
        .about-us-section .image-3 {
            height: 100%;
            border-radius: 5px 5px 5px 75px;
            overflow: hidden;
            border: none;
            box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
            z-index: 2;
        }

        /* ================= IMAGE 4 ================= */
        .about-us-section .image-4 {
            top: 15px;
            border-radius: 5px 5px 75px 5px;
            background: var(--bg-dark);
            border: none;
            box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
            z-index: 4;
        }

        .about-us-section .image-4 img {
            bottom: 15px;
            right: 15px;
            width: 102%;
            height: 102%;
            position: relative;
            border-radius: 5px 5px 75px 5px;
            box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
        }


        /* ================= MOBILE ================= */
        @media (max-width: 640px) {

            .row-1,
            .row-2 {
                grid-template-columns: 1fr;
            }

            .grid-image {
                height: 200px;
            }
        }

        /* Center Logo */
        .center-logo {
            position: absolute;
            top: 50%;
            left: 75%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            z-index: 5;
            border-radius: 50%;
            background: #1f4068;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            /* border: 4px solid var(--accent-color); */
        }

        .center-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Decorative Stars */
        .decorative-stars {
            position: absolute;
            left: -40px;
            bottom: 100px;
        }

        .star {
            position: absolute;
            color: var(--accent-color);
            font-size: 24px;
            opacity: 0.6;
        }

        .star-1 {
            top: 0;
            left: 0;
        }

        .star-2 {
            top: 30px;
            left: 20px;
            font-size: 18px;
        }

        .star-3 {
            top: 60px;
            left: 10px;
            font-size: 28px;
        }

        /* Right Text Content */
        .about-us-right {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .about-us-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
            line-height: 1.2;
        }

        .about-us-tagline {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-style: italic;
            color: var(--accent-color);
            font-weight: 500;
            margin: 0 0 20px 0;
        }

        .about-us-text {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .about-us-text p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-primary);
            margin: 0;
            text-align: justify;
            font-weight: 700;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .about-us-content {
                gap: 50px;
            }

            .image-grid {
                height: 450px;
            }

            .image-1 {
                width: 240px;
                height: 180px;
            }

            .image-2 {
                width: 200px;
                height: 240px;
            }

            .image-3 {
                width: 180px;
                height: 160px;
            }

            .image-4 {
                width: 220px;
                height: 200px;
            }

            .center-logo {
                width: 100px;
                height: 100px;
            }
        }

        @media (max-width: 768px) {
            .about-us-section {
                padding: 60px 0;
            }

            .about-us-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .image-grid {
                height: 400px;
                margin: 0 auto;
                max-width: 400px;
            }

            .image-1 {
                width: 200px;
                height: 160px;
            }

            .image-2 {
                width: 180px;
                height: 200px;
            }

            .image-3 {
                width: 160px;
                height: 140px;
            }

            .image-4 {
                width: 180px;
                height: 180px;
            }

            .center-logo {
                width: 80px;
                height: 80px;
            }

            .decorative-stars {
                left: -20px;
                bottom: 50px;
            }

            .about-us-text p {
                text-align: left;
            }
        }


        /* Our Strengths Section */
        .strengths-section {
            padding: 80px 0;
            /* background: var(--bg-primary); */
            background-image: url("../images/about/section3/Bg-33.png");
            background-position: center;
            background-size: cover;
            color: white;
        }

        .strengths-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .strengths-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .strengths-tagline {
            font-size: clamp(1.2rem, 3vw, 1.6rem);
            font-style: italic;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        .strengths-timeline {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
        }

        .strength-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            flex: 1;
            position: relative;
        }

        .strength-icon {
            width: 140px;
            height: 140px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 5px solid rgba(255, 255, 255, 0.3);
        }

        .strength-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* filter: brightness(0) saturate(100%) invert(25%) sepia(50%) saturate(1000%) hue-rotate(180deg); */
        }

        .strength-number {
            position: absolute;
            bottom: -5px;
            right: -5px;
            width: 40px;
            height: 40px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            color: white;
            border: 3px solid white;
        }

        .strength-item .strength-title {
            font-size: 20px;
            font-weight: 700;
            color: white;
            text-align: center;
            line-height: 1.3;
            text-transform: uppercase;
        }

        .timeline-connector {
            width: 100px;
            height: 3px;
            background: rgba(255, 255, 255, 0.4);
            margin: 0 -20px;
            margin-bottom: 60px;
        }

        /* Our Core Values Section */
        .core-values-section {
            padding: 70px 0;
            /* background: var(--bg-light); */
            background-image: url("../images/section5/BG-6.png");
            background-position: center;
            background-size: cover;
            transition: background 0.3s ease;
        }

        .core-values-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .core-values-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 1px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 25px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* .values-grid .border-bottom{
    padding-bottom: 2px;
    background-color: rebeccapurple;
    border-radius: 30px;

}  */

        .value-card {
            background: var(--bg-dark);
            border-radius: 30px;
            overflow: hidden;
            /* box-shadow: 0 10px 30px rgba(119, 7, 7, 0.15); */
            transition: all 0.3s ease;
            position: relative;
            border: 3px solid #000;
            padding-bottom: 5px;
            box-shadow: var(--bg-primary) 0px 3px 3px 0px;
        }

        .value-card:hover {
            transform: translateY(-10px);
            /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25); */
        }

        .value-image {
            width: 100%;
            height: 180px;
            overflow: hidden;
            position: relative;
            bottom: 30px;
            right: 30px;
            border: 1.5px solid var(--bg-light);
            border-radius: 0 0px 27px 0;
        }

        .value-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.3s ease;
        }

        .value-card:hover .value-image img {
            transform: scale(1.1);
        }

        .value-content {
            background: var(--bg-dark);
            padding: 0 20px;
            text-align: left;
            min-height: 140px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .value-name {
            font-size: 22px;
            font-weight: 700;
            color: white;
            margin: 0;
            line-height: 1.2;
        }

        .value-description {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.5;
            margin: 0;
            font-style: italic;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .values-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .core-values-section {
                padding: 60px 0;
            }

            .values-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 0 20px;
            }

            .value-image {
                height: 150px;
            }

            .value-content {
                padding: 20px 15px;
                min-height: 120px;
            }

            .value-name {
                font-size: 20px;
            }

            .value-description {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .values-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Industries Grid Section */
        .industries-grid-section {
            padding: 80px 0;
            background-image: url("../images/services/Section2/bg-55.jpg");
            background-size: cover;
            background-position: center;
            color: white;
            overflow: hidden;
        }

        /* Hero buttons container */
        .hero-buttons {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .hero-cta:hover::before {
            left: 100%;
        }


        .arrow-icon {
            font-size: 20px;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .service-cta .arrow-icon {
            color: var(--bg-light);
            display: inline-block;
            transform: scaleX(1.8);
            /* stretch horizontally */
            margin-left: 8px;
        }

        /* View All Product link */
        .view-products-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            position: relative;
            padding: 5px 0;
            transition: all 0.3s ease;
        }

        .view-products-link::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: white;
            transform: scaleX(1);
            transition: transform 0.3s ease;
        }

        .view-products-link:hover {
            color: var(--accent-color);
        }

        .view-products-link:hover::after {
            background: var(--accent-color);
            transform: scaleX(1.1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-buttons {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .hero-cta {
                padding: 12px 25px;
                font-size: 14px;
            }

            .view-products-link {
                font-size: 14px;
            }
        }

        .industries-grid-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .industries-grid-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .industries-grid-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            font-style: italic;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .industry-grid-card {
            background: transparent;
            border: none;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1;
        }

        .industry-grid-card:hover .industry-icon-wrapper img {
            transform: scale(1.1) translateY(-10px);
        }

        .industry-icon-wrapper {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .industry-icon-wrapper img {
            width: 100%;
            height: 100%;
            max-width: 280px;
            max-height: 280px;
            object-fit: contain;
            display: block;
            transition: all 0.3s ease;
        }

        .industry-grid-card:hover .industry-icon-wrapper img {
            filter: brightness(1.1);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .industries-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 35px;
            }

            .industry-icon-wrapper img {
                max-width: 240px;
                max-height: 240px;
            }
        }

        @media (max-width: 768px) {
            .industries-grid-section {
                padding: 60px 0;
            }

            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                padding: 0 20px;
            }

            .industry-icon-wrapper img {
                max-width: 200px;
                max-height: 200px;
            }

            .industry-grid-card:hover {
                transform: scale(1.05) translateY(-5px);
            }
        }

        @media (max-width: 480px) {
            .industries-grid {
                gap: 20px;
            }

            .industry-icon-wrapper img {
                max-width: 160px;
                max-height: 160px;
            }
        }

        /* ===============================
   PRODUCTS PAGE WRAPPER
================================ */
        .all-products-section {
            background: #f5fcff;
            /* overflow: hidden; */
            padding: 80px 0;
        }

        /* ===============================
   GRID LAYOUT
================================ */
        .products-layout {
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 40px;
            height: 100%;
        }

        /* ===============================
   CATEGORY SIDEBAR
================================ */
        .products-sidebar {
            background: #eaf6fb;
            padding: 24px;
            border-radius: 14px;
            /* height: 90vh; */
            /* overflow-y: auto; */
        }

        .products-sidebar h3 {
            font-size: 20px;
            color: #2f6c8f;
            margin-bottom: 20px;
        }

        /* Category List */
        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .category-list li {
            background: #2f6c8f;
            color: #fff;
            padding: 10px 14px;
            margin-bottom: 10px;
            border-radius: 6px;
            font-size: 14px;
            text-align: center;
            cursor: pointer;
            transition: background 0.25s ease;
            text-transform: capitalize;
        }

        .category-list li:hover,
        .category-list li.active {
            background: #255a77;
        }

        .category-list li[data-category="all"] {
            background: #1f4f69;
            font-weight: 600;
        }

        /* ===============================
   PRODUCTS GRID (SCROLLABLE)
================================ */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            /* height: 90vh; */
            /* overflow-y: auto; */
            padding-right: 12px;
        }

        .products-grid.details-mode {
            grid-template-columns: 1fr;
            height: auto;
            overflow: visible;
        }

        /* Scrollbars */
        .products-grid::-webkit-scrollbar,
        .products-sidebar::-webkit-scrollbar {
            width: 6px;
        }

        .products-grid::-webkit-scrollbar-thumb,
        .products-sidebar::-webkit-scrollbar-thumb {
            background: #2f6c8f;
            border-radius: 4px;
        }

        /* ===============================
   PRODUCT CARD
================================ */
        .product-card {
            background: #fff;
            border: 2px solid #2f6c8f;
            border-radius: 18px;
            padding: 18px;
            text-align: center;
            min-height: 300px;
        }

        .product-card img {
            width: 100%;
            max-height: 160px;
            object-fit: contain;
        }

        .product-card h4 {
            color: #2f6c8f;
            margin: 12px 0 6px;
        }

        /* ===============================
   PRODUCT ACTIONS
================================ */
        .product-actions {
            margin-top: 10px;
        }

        .mobile-filter-btn {
    display: none;
}

        .product-actions button,
        .product-actions a {
            font-size: 13px;
            padding: 6px 12px;
            margin: 4px;
            border-radius: 6px;
            cursor: pointer;
            text-decoration: none;
        }

        .read-more {
            background: transparent;
            border: 1px solid #2f6c8f;
            color: #2f6c8f;
            font-weight: 600;
        }

        .enquiry-btn-small {
            background: #2f6c8f;
            color: #fff;
            border: none;
        }

        /* ===============================
   PRODUCT DETAILS VIEW
================================ */
        .product-details {
            min-height: 100vh;
            background: #fff;
            padding: 32px;
            border-radius: 18px;
        }

        /* BACK */
        .back-btn {
            background: none;
            border: none;
            color: #2f6c8f;
            font-weight: 600;
            cursor: pointer;
            margin-bottom: 16px;
        }

        /* TITLE */
        .product-title {
            text-align: center;
            color: #2f6c8f;
            margin-bottom: 24px;
        }

        /* TOP IMAGE */
        .product-top {
            display: flex;
            justify-content: center;
            margin-bottom: 32px;
        }

        .product-top img {
            max-width: 240px;
            border-radius: 16px;
        }

        /* ===============================
   DETAILS WRAPPER
================================ */
        .details-wrapper {
            height: 100vh;
            overflow: auto;

            display: flex;
            flex-direction: column;
            gap: 32px;

            /* Hide scrollbar */
            scrollbar-width: none;
            /* Firefox */
            -ms-overflow-style: none;
            /* IE & Edge */
        }

        /* Chrome, Safari, Edge */
        .details-wrapper::-webkit-scrollbar {
            display: none;
        }


        /* ROW (2 ITEMS) */
        .details-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: stretch;
        }

        /* ===============================
   DETAIL SECTION CARD
================================ */
        .details-section {
            background: #fff;
            padding: 24px;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .details-section h3 {
            color: #2f6c8f;
            margin-bottom: 12px;
        }

        .details-section ul {
            padding-left: 18px;
        }

        .details-section li {
            margin-bottom: 8px;
            line-height: 1.6;
        }

        /* KEY */
        .details-section li strong {
            font-weight: 700;
            color: #1c2f3a;
        }

        /* ===============================
   LAST ROW IMAGE
================================ */
        .details-image {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .details-image img {
            width: 100%;
            max-height: 250px;
            object-fit: contain;
            border-radius: 16px;
        }

        /* ===============================
   DETAILS PAGE SCROLLBAR (MATCH CATEGORY)
================================ */

        /* scrollbar width */
        .details-wrapper::-webkit-scrollbar {
            width: 6px;
        }

        /* scrollbar thumb */
        .details-wrapper::-webkit-scrollbar-thumb {
            background: #2f6c8f;
            border-radius: 4px;
        }

        /* optional track styling */
        .details-wrapper::-webkit-scrollbar-track {
            background: transparent;
        }


        /* ===============================
   RESPONSIVE
================================ */
        @media (max-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            /* Hide default sidebar */
    .products-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 260px;
        height: 100vh;

        background: #eaf6fb;
        padding: 24px;
        border-radius: 0;

        transition: left 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }

    /* Active state */
    .products-sidebar.active {
        left: 0;
    }

    /* Filter Button */
    .mobile-filter-btn {
        display: block;
        background: #2f6c8f;
        color: #fff;
        border: none;
        padding: 10px 16px;
        border-radius: 8px;
        margin-bottom: 20px;
        font-weight: 600;
        cursor: pointer;
    }

    /* Layout single column */
    .products-layout {
        grid-template-columns: 1fr;
    }


            .products-grid {
                height: auto;
                overflow: visible;
            }

            .details-row {
                grid-template-columns: 1fr;
            }

            .details-image img {
                max-height: 240px;
            }
        }


        /* Contact Section - Specific Naming */
        .contact-section {
            /* padding: 40px 0 0; */
            background: #f5f5f5;
        }

        .contact-section .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 0;
        }

        /* Left Side - Contact Info */
        .contact-section .contact-left {
            background: linear-gradient(135deg, #e8f4f8 0%, #d0e8f0 100%);
            padding: 50px 40px;
        }

        .contact-section .contact-info-box {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-section .contact-heading {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a1a;
            margin: 0 0 10px 0;
            text-align: center;
        }

        .contact-section .contact-tagline {
            font-size: 18px;
            font-style: italic;
            color: #333;
            text-align: center;
            margin: 0 0 30px 0;
            line-height: 1.4;
        }

        .contact-section .contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-section .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-section .contact-icon {
            width: 50px;
            height: 50px;
            /* background: linear-gradient(135deg, #3a6b9e 0%, #5a9ec7 100%); */
            background: var(--bg-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            padding: 12px;
        }

        .contact-section .contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
        }

        .contact-section .contact-text h4 {
            font-size: 16px;
            font-weight: 600;
            color: #3a6b9e;
            margin: 0 0 5px 0;
        }

        .contact-section .contact-text p {
            font-size: 15px;
            color: #333;
            margin: 0;
            line-height: 1.5;
        }

        .contact-section .working-hours {
            background: white;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #3a6b9e;
        }

        .contact-section .working-hours p {
            margin: 5px 0;
            font-size: 14px;
            color: #333;
        }

        .contact-section .working-hours strong {
            color: #3a6b9e;
        }

        .contact-section .contact-social {
            text-align: center;
        }

        .contact-section .contact-social h4 {
            font-size: 18px;
            font-weight: 600;
            color: #3a6b9e;
            margin: 0 0 15px 0;
        }

        .contact-section .social-icons-contact {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .contact-section .social-icons-contact a {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #3a6b9e 0%, #5a9ec7 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-section .social-icons-contact a:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(58, 107, 158, 0.4);
        }

        .contact-section .social-icons-contact i {
            font-size: 18px;
        }

        /* Right Side - Enquiry Form */
        .contact-section .contact-right {
            background: white;
            padding: 50px 40px;
        }

        .enquiry-form-box {
            max-width: 500px;
        }

        .form-heading {
            font-size: 32px;
            font-weight: 700;
            color: #1a1a1a;
            margin: 0 0 30px 0;
            text-align: center;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: flex;
            gap: 10px;
            /* space between country and state */
            margin-bottom: 15px;
        }

        .form-row .form-group {
            flex: 1;
            /* both fields take equal width */
        }


        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-size: 14px;
            font-weight: 500;
            color: #3a6b9e;
            font-style: italic;
        }

        .form-group:has(input[required], textarea[required], select[required])>label::after {
            content: " *";
            color: #e53935;
            font-weight: 600;
        }



        .form-group input,
        .form-group textarea {
            padding: 12px 15px;
            border: 2px solid #d0e8f0;
            border-radius: 5px;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.3s ease;
        }


        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border-radius: 6px;
            border: 2px solid #d0e8f0;
            font-family: inherit;
            font-size: 14px;
            transition: all 0.3s ease;
        }



        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3a6b9e;
            box-shadow: 0 0 0 3px rgba(58, 107, 158, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #3a6b9e 0%, #5a9ec7 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: center;
            min-width: 150px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(58, 107, 158, 0.4);
        }

        /* Map Section */
        .contact-section .map-section {
            margin: 0 0;
            padding: 0;
            border-radius: 0 0 20px 20px;
            overflow: hidden;
        }

        .contact-section .map-section iframe {
            display: block;
            width: 100%;
            border: none;
        }

        /* Brochure Modal */
        .brochure-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 99999;
        }

        .brochure-modal.active {
            display: flex;
        }

        .brochure-modal-content {
            background: #fff;
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            border-radius: 10px;
            padding: 30px;
            position: relative;
            overflow-y: auto;
        }

        .brochure-close {
            position: absolute;
            top: 15px;
            right: 18px;
            font-size: 28px;
            cursor: pointer;
            color: #333;
        }

        /* ===============================
   Brochure Modal Scrollbar
================================ */

        /* width */
        .brochure-modal-content::-webkit-scrollbar {
            width: 6px;
        }

        /* thumb */
        .brochure-modal-content::-webkit-scrollbar-thumb {
            background: #2f6c8f;
            border-radius: 4px;
        }

        /* track */
        .brochure-modal-content::-webkit-scrollbar-track {
            background: transparent;
        }



        /* Responsive */
        @media (max-width: 1024px) {
            .contact-section .contact-wrapper {
                grid-template-columns: 1fr;
            }

            .contact-section .contact-left,
            .contact-section .contact-right {
                padding: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 60px 0 0;
            }

            .contact-section .container {
                padding: 0 20px;
            }

            .contact-section .contact-left,
            .contact-section .contact-right {
                padding: 30px 20px;
            }

            .contact-section .contact-heading,
            .contact-section .form-heading {
                font-size: 26px;
            }

            .contact-section .contact-tagline {
                font-size: 16px;
            }

            .contact-section .map-section iframe {
                height: 300px;
            }
        }

        /* Floating Small Icons */
 .floating-icons {
    position: fixed;
    right: 16px;
    bottom: 16px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 9999;

    /* Prevent overflow issues */
    max-width: 100vw;
}

        .float-icon {
            position: relative;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
            transition: all 0.3s ease;
        }

        .float-icon i {
            font-size: 25px;
        }

        /* Enquiry */
        .enquiry-icon {
            background: var(--bg-primary);
        }

        /* WhatsApp */
        .whatsapp-icon {
            background: #25d366;
        }

        /* Hover Effect */
        .float-icon:hover {
            transform: translateY(-3px);
        }

        /* Hover Label */
        .float-label {
            position: absolute;
            right: 58px;
            background: #111;
            color: #fff;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transform: translateX(8px);
            transition: all 0.25s ease;
        }

        /* Show label on hover */
        .float-icon:hover .float-label {
            opacity: 1;
            transform: translateX(0);
        }

        /* Mobile: hide labels */
      @media (max-width: 768px) {

    .floating-icons {
        right: 14px;
        bottom: 14px;
        gap: 10px;
    }

    .float-icon {
        width: 44px;
        height: 44px;
    }

    .float-icon i {
        font-size: 20px;
    }

}

        /* ================= MAIN SECTION ================= */

        .reconditioning-refurbishment {
            width: 100%;
            font-family: inherit;
        }

        /* ================= HEADER ================= */

        .reconditioning-refurbishment-header {
            background: var(--bg-light);
            text-align: center;
        }

        .reconditioning-refurbishment-header h2 {
            padding: 25px 0;
            color: var(--bg-primary);
            font-size: 2rem;
            font-weight: 700;
        }

        /* ================= TOP SECTION ================= */

        .reconditioning-top {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 80px;
            padding: 50px 8%;
            background: linear-gradient(135deg, #5fa3bf, #2f6c8f);
            color: #fff;
            flex-wrap: wrap;
            width: 100%;
        }

        /* INNER CONTAINER (NEW – controls content width) */
        .reconditioning-container {
            max-width: 1400px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 80px;
        }

        /* ================= LEFT IMAGES ================= */

        .reconditioning-left {
            display: flex;
            gap: 30px;
            flex: 1;
            justify-content: center;
            align-items: center;
        }

        /* Image wrapper */
        .image-wrapper {
            position: relative;
        }

        /* Image */
        .image-wrapper img {
            width: 100%;
            max-width: 260px;
            aspect-ratio: 3 / 4;
            border-radius: 18px;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 8px solid var(--bg-primary);
            transition: transform 0.4s ease;
        }

        /* Hover */
        .image-wrapper img:hover {
            transform: translateY(-3px);
        }

        /* ================= LABELS ================= */

        .image-wrapper {
            position: relative;
        }

        /* Label */
        .image-wrapper .label {
            /* position: absolute;
    left: 50%;
    transform: translateX(-50%); */

            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;

            font-weight: 800;
            font-size: 18px;
            letter-spacing: 1px;
            color: #000;
        }

        /* BEFORE */
        .before .label {
            bottom: 10px;
        }

        /* AFTER */
        .after .label {
            top: -30px;
        }


        /* Visual stagger */
        .image-wrapper.after {
            margin-top: 40px;
        }

        /* ================= RIGHT CONTENT ================= */

        .reconditioning-right {
            flex: 1;
            max-width: 650px;
        }

        .main-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .reconditioning-right p {
            line-height: 1.8;
            margin-bottom: 20px;
            font-weight: 500;
            font-size: 16px;
        }

        /* ================= BOTTOM SECTION ================= */

        .reconditioning-bottom {
            padding: 60px 8%;
            background: #f4f6f8;
        }

        .content-block {
            margin-bottom: 45px;
            max-width: 1100px;
        }

        .content-block h3 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 10px;
            text-transform: uppercase;
            color: #222;
        }

        .content-block p,
        .content-block li {
            line-height: 1.7;
            color: #333;
            font-size: 15px;
        }

        .content-block ul {
            padding-left: 20px;
        }

        /* ================= TABLET ================= */

        @media (max-width: 992px) {

            .reconditioning-container {
                flex-direction: column;
                text-align: center;
                gap: 50px;
            }

            .reconditioning-right {
                max-width: 100%;
            }

            .main-title {
                font-size: 28px;
            }
        }

        /* ================= MOBILE ================= */

        @media (max-width: 576px) {

            .reconditioning-top {
                padding: 70px 6%;
            }

            .image-wrapper img {
                max-width: 200px;
            }

            .main-title {
                font-size: 24px;
            }

            .reconditioning-right p {
                font-size: 14px;
            }

            .content-block h3 {
                font-size: 18px;
            }
        }

        /* ================= ULTRA-WIDE SCREENS ================= */

        @media (min-width: 1600px) {

            .reconditioning-top {
                padding: 140px 10%;
            }

            .reconditioning-container {
                max-width: 1600px;
                gap: 120px;
            }

            .main-title {
                font-size: 44px;
            }

            .reconditioning-right p {
                font-size: 18px;
            }

            .image-wrapper img {
                max-width: 300px;
            }
        }