            @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            body {
                font-family: 'Poppins', Arial, Helvetica, sans-serif;
            }

            body,
            html {
                margin: 0;
                padding: 0;
                width: 100%;
                overflow-x: hidden;
                /* Avoid extra scroll */
            }

            .container {
                max-width: 100%;
                /* Instead of fixed px */
                width: 100%;
                margin: 0 auto;
                /* Center align but full stretch */
                box-sizing: border-box;
            }

            :root {
                --primary-blue: #1a4b8e;
                --secondary-blue: #2a6fd6;
                --light-blue: #e9f0fa;
                --dark-blue: #0d2b4e;
                --accent-yellow: #ffcf40;
                --white: #ffffff;
                --muted: #6b7280;
                --medium-gray: #4a5568;
                --light-gray: #f7fafc;
                --primary-text-color: white;
                --secondary-text-color: #1D5494;
                --accent-color: #77e32a;
                --primary: #4361ee;
                --secondary: #7209b7;
                --gray-100: #f8f9fa;
                --gray-200: #e9ecef;
                --gray-500: #adb5bd;
                --gray-700: #495057;
                --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
                --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
                --radius-sm: 8px;
                --radius-md: 12px;
                --transition: all 0.3s ease;
            }

            body {
                font-family: 'Poppins', sans-serif;
                animation: fadeIn 0.5s ease-in forwards;
            }

            html {
                scroll-behavior: smooth;
            }

            /* Hardware acceleration */
            .smooth-element {
                transform: translateZ(0);
                will-change: transform;
            }

            /* Reduce repaints */
            * {
                box-sizing: border-box;
            }

            /* Optimize animations */
            @keyframes smoothFade {
                from {
                    opacity: 0;
                }

                to {
                    opacity: 1;
                }
            }

            .element {
                animation: smoothFade 0.3s ease-out;
            }

            /* --------------------------------------------------------------- Header -------------------------------------------------------------*/

            /* Top Contact Bar */
            .top-contact-bar {
                background-color: #0056b3;
                color: #fff;
                padding: 8px 0;
                font-size: 14px;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            }

            .top-contact-bar a {
                color: #fff;
                margin-right: 20px;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 5px;
                transition: color 0.3s;
            }

            .top-contact-bar a:hover {
                color: var(--accent-yellow);
            }

            /* Main Header */
            .main-header {
                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                background: linear-gradient(135deg, #1a4b8e 0%, #1D5494 100%);
                color: white !important;
                padding: 18px 0;
                position: sticky;
                top: 0;
                z-index: 100;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                position: sticky;
            }

            .navbar-brand {
                display: flex;
                align-items: center;
                gap: 15px;
            }

            .logo {
                max-height: 85px;
                transition: transform 0.3s;
            }

            .logo:hover {
                transform: scale(1.05);
            }

            .company-name h2 {
                margin: 0;
                font-size: 18px;
                line-height: 1.2;
                font-weight: 600;
                color: white !important;
            }

            .company-name p {
                margin: 0;
                font-size: 12px;
                color: #6c757d;
            }

            /* Navbar Links */
            .navbar-nav {
                gap: 20px;
            }

            .navbar-nav .nav-link {
                color: white !important;
                padding: 12px 18px;
                font-weight: 600;
                transition: all 0.3s;
                border-radius: 4px;
                margin: 0 2px;
                font-family: 'poppins';
            }

            .navbar-nav .nav-link:hover,
            .navbar-nav .nav-link.active {
                color: var(--accent-yellow) !important;
            }

            /* Toggle Button - Remove Focus Border */
            .navbar-toggler {
                border: none !important;
                padding: 4px 8px;
                transition: all 0.3s;
            }

            .navbar-toggler:focus {
                box-shadow: none !important;
                outline: none !important;
            }

            .navbar-toggler-icon {
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
                width: 1.25em;
                height: 1.25em;
            }

            /* Dropdown menu */
            .dropdown-menu {
                border: none;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                border-radius: 8px;
                padding: 10px 0;
                margin-top: 8px;
                min-width: 220px;
            }

            .dropdown-item {
                padding: 8px 20px;
                transition: all 0.2s;
                color: #000;
                font-weight: 400;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .dropdown-item:hover {
                background-color: rgba(0, 86, 179, 0.15);
                color: #0056b3;
                padding-left: 25px;
            }

            /* Dropdown toggle */
            .dropdown-toggle::after {
                display: none;
            }

            .dropdown .toggle-btn {
                border: none !important;
                background: transparent;
                font-size: 16px;
                color: white !important;
                margin-left: 4px;
                transition: transform 0.3s;
            }

            .toggle-btn {
                color: white !important;

            }

            .dropdown.show .toggle-btn {
                transform: rotate(180deg);
            }

            /* Offcanvas (Mobile Menu) */
            .offcanvas {
                background-color: #003d82 !important;
                color: white !important;
            }

            .offcanvas-header {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                padding: 20px;
            }

            .offcanvas-title {
                font-weight: 600;
                color: #fff;
            }

            /* Animated Close Button */
            .btn-close {
                border: none !important;
                outline: none !important;
                background-color: transparent !important;
                transition: transform 0.3s ease, opacity 0.3s;
                color: white !important;
                background-color: var(--primary-blue) !important;
            }

            .btn-close:hover {
                transform: rotate(90deg) scale(1.1);
                opacity: 0.7;
            }

            .offcanvas-body .nav-link {
                color: #fff !important;
                padding: 12px 20px;
                border-radius: 4px;
                margin-bottom: 2px;
                transition: all 0.3s;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .offcanvas-body .nav-link:hover,
            .offcanvas-body .nav-link.active {
                background-color: rgba(255, 255, 255, 0.1);
                color: var(--accent-yellow) !important;
            }

            /* Mobile Submenu */
            .mobile-submenu {
                background-color: rgba(255, 255, 255, 0.05);
                padding-left: 50px;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                color: white;
            }

            .mobile-submenu.show {
                max-height: 350px;
            }

            /* Responsive */
            @media (max-width: 991px) {
                .company-name {
                    display: none;
                }

                .navbar-nav .nav-link {
                    padding: 10px 15px;
                }
            }



            /*------------------- Brand -------------------------------*/

            .brand-slider-container {
                width: 100%;
                height: 300px;
                overflow: hidden;
                position: relative;
                background: #f8f9fa;
                padding: 20px 0;
                margin: 40px 0;
            }

            .brand-slider-title {
                text-align: center;
                margin-bottom: 20px;
                font-size: 24px;
                color: #333;
                font-weight: 600;
            }

            .brand-slider-track {
                display: flex;
                width: calc(250px * 12);
                /* Adjust based on total images */
                height: 140px;
                animation: slide 28s linear infinite;
                /* 7s per 4 logos */
            }

            .brand-slide {
                width: 250px;
                height: 140px;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 0 20px;
            }

            .brand-slide img {
                max-width: 100%;
                max-height: 100%;
                /* filter: grayscale(100%);
                        opacity: 0.7; */
                transition: all 0.3s ease;
            }

            .brand-slide img:hover {
                filter: grayscale(0);
                opacity: 1;
                transform: scale(1.05);
            }

            @keyframes slide {
                0% {
                    transform: translateX(0);
                }

                100% {
                    transform: translateX(calc(-250px * 8));
                    /* Move by 8 slides (2 sets of 4) */
                }
            }


            /* Products */

            .products-section {
                padding: 80px 0;
                background-color: #f9f9f9;
                position: relative;
            }

            .products-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 0;
            }

            .section-title {
                font-size: 2.5rem;

                color: black;
                margin-bottom: 20px;
                position: relative;
                display: inline-block;
                text-align: center;
            }

            .section-title::after {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 0;
                width: 100%;
                height: 4px;
                text-align: center;
                border-radius: 2px;
            }

            .section-description {
                font-size: 1.1rem;
                color: #555;
                max-width: 800px;
                margin: 0 auto 50px;
                line-height: 1.6;
            }

            .product-card {
                background: white;
                border-radius: 10px;
                overflow: hidden;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                transition: all 0.1s ease;
                margin-bottom: 30px;
                position: relative;
                z-index: 1;
                height: 100%;
                display: flex;
                flex-direction: column;
            }

            .product-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            }

            .product-img-container {
                height: 200px !important;
                overflow: hidden;
                position: relative;
            }

            .product-img {
                width: 100% !important;
                height: 100% !;
                object-fit: cover;
                transition: transform 0.5s ease;
            }

            .product-card:hover .product-img {
                transform: scale(1.1);
            }

            .product-content {
                padding: 20px;
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                align-self: center;

            }

            .product-name {
                font-size: 1.4rem;
                font-weight: 600;
                color: #2c3e50;
                margin-bottom: 10px;
            }

            .product-description-desk {
                color: #666;
                margin-bottom: 20px;
                flex-grow: 1;
            }

            .product-description-desk {
                max-width: 900px;
                margin: 0 auto;
                background: linear-gradient(135deg, #f8f9ff, #ffffff);
                border-radius: 16px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
                padding: 40px 30px 20px 30px;
                animation: fadeInUp 0.8s ease;
            }

            .description-content-desk {
                text-align: center;
            }

            .description-content-desk h2 {
                font-size: 2rem;
                color: #1D4ED8;
                margin-bottom: 15px;
            }

            .description-content-desk p {
                color: #444;
                font-size: 1rem;
                line-height: 1.7;
                margin-bottom: 25px;
            }

            /* View Details Button */
            .btn-details {
                background: linear-gradient(135deg, #1D4ED8, #2563EB);
                color: #fff;
                border: none;
                padding: 12px 26px;
                border-radius: 8px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.4s ease;
            }

            .btn-details:hover {
                background: #ffcf40;
                color: #0a2a52;
                transform: scale(1.08);
                box-shadow: 0 6px 20px rgba(255, 207, 64, 0.4);
            }

            /* Animation */
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(40px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }


            .explore-btn {
                display: inline-block;
                padding: 10px 20px;
                background: #e74c3c;
                color: white;
                border-radius: 5px;
                text-decoration: none;
                font-weight: 500;
                transition: all 0.3s ease;
                width: fit-content;
                align-self: center;
                position: relative;
                overflow: hidden;
            }

            .explore-btn::before {
                content: 'Explore More';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: #0b5ed7;
                ;
                display: flex;
                align-items: center;
                justify-content: center;
                transform: translateY(100%);
                transition: transform 0.3s ease;
            }

            .product-card:hover .explore-btn::before {
                transform: translateY(0);
            }



            .product-label {
                position: absolute;
                top: 15px;
                right: 15px;
                background: #e74c3c;
                color: white;
                padding: 5px 15px;
                border-radius: 20px;
                font-size: 0.8rem;
                font-weight: 600;
                z-index: 2;
            }

            /* Animation classes */
            .animate-on-scroll {
                opacity: 0;
                transform: translateY(30px);
                transition: opacity 0.6s ease, transform 0.6s ease;
            }

            .animate-on-scroll.animated {
                opacity: 1;
                transform: translateY(0);
            }

            /* Responsive adjustments */
            @media (max-width: 992px) {
                .section-title {
                    font-size: 2rem;
                }

                .section-description {
                    font-size: 1rem;
                }
            }

            @media (max-width: 768px) {
                .products-section {
                    padding: 60px 0;
                }

                .product-name {
                    font-size: 1rem;
                }
            }

            @media (max-width: 576px) {
                .section-title {
                    font-size: 1.8rem;
                }
            }

            /* quote-section */

            .quote-section {
                text-align: center;
                padding: 30px;
                font-family: Arial, sans-serif;
                max-width: 600px;
                margin: 0 auto;
            }

            .quote-section h2 {
                font-size: 32px;
                font-weight: 500;
                margin-bottom: 15px;
                line-height: 1.3;
            }

            .quote-section p {
                font-size: 16px;
                margin-bottom: 20px;
                color: #555;
            }

            .quote-button {
                background-color: #007bff;
                color: white;
                border: none;
                padding: 10px 25px;
                font-size: 16px;
                border-radius: 5px;
                cursor: pointer;
                transition: background-color 0.3s;
            }

            .quote-button:hover {
                background-color: #0056b3;
            }


            /* Faetures  */

            .features-section-index {
                padding: 60px 20px;
                background-color: #f9f9f9;
                text-align: center;
                font-family: 'Arial', sans-serif;
            }

            .features-header-index h2 {
                font-size: 36px;
                margin-bottom: 15px;
                color: black;
                font-weight: 600;
            }

            .features-header-index p {
                font-size: 18px;
                color: black;
                max-width: 600px;
                margin: 0 auto 40px;
            }

            .features-container-index {
                display: flex;
                justify-content: space-between;
                max-width: 1200px;
                margin: 0 auto;
                gap: 20px;
            }

            .feature-box-index {
                background: white;
                border-radius: 10px;
                padding: 30px 20px;
                flex: 1;
                min-width: 0;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                transition: all 0.3s ease;
            }

            .feature-box-index:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            }

            .feature-icon-index {
                font-size: 40px;
                color: #4e6bff;
                margin-bottom: 20px;
                transition: all 0.3s ease;
            }

            .feature-box-index:hover .feature-icon-index {
                transform: scale(1.2);
                color: #2a4aff;
            }

            .feature-box-index h3 {
                font-size: 20px;
                margin-bottom: 15px;
                color: #333;
            }

            .feature-box-index p {
                font-size: 15px;
                color: #666;
                line-height: 1.5;
            }

            @media (max-width: 992px) {
                .features-container-index {
                    flex-wrap: wrap;
                }

                .feature-box-index {
                    flex: 0 0 calc(50% - 20px);
                    margin-bottom: 20px;
                }
            }

            @media (max-width: 576px) {
                .feature-box-index {
                    flex: 0 0 100%;
                }
            }


            /* Preferred Section */

            .preferred-section {
                background-color: #f9fafc;
                padding: 60px 20px;
                text-align: center;
                font-family: "Poppins", sans-serif;
            }

            .preferred-header h2 {
                font-size: 2rem;
                color: #1a4b8e;
                /* Primary Blue */
                font-weight: 700;
                margin-bottom: 8px;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .preferred-header p {
                color: #555;
                font-size: 1rem;
                margin-bottom: 40px;
                font-style: italic;
            }

            /* Leaders Section Container */
            .leaders-container {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 30px;
                max-width: 1200px;
                margin: 60px auto;
                padding: 0 20px;
            }

            /* Individual Box */
            .leader-box {
                background: #ffffff;
                border-radius: 18px;
                box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
                padding: 40px 25px;
                transition: all 0.3s ease;
                cursor: default;
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
            }

            .leader-box:hover {
                transform: translateY(-6px);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
                background-color: #f4f8ff;
            }

            /* Content inside the box */
            .leader-content {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            /* Leader Statement */
            .leader-statement {
                font-size: 1rem;
                font-style: italic;
                color: #333;
                line-height: 1.6;
                margin-bottom: 18px;
                position: relative;
                max-width: 90%;
            }

            /* Add quote marks using pseudo elements */
            .leader-statement::before,
            .leader-statement::after {
                content: "“";
                color: #1a4b8e;
                font-size: 1.6rem;
                font-weight: bold;
                position: relative;
            }

            .leader-statement::after {
                content: "”";
            }

            /* Leader Name */
            .leader-name {
                font-size: 1.1rem;
                font-weight: 600;
                color: #1a4b8e;
                line-height: 1.4;
            }

            .leader-name span {
                display: block;
                font-size: 0.9rem;
                color: #555;
                font-weight: 400;
                margin-top: 4px;
            }

            /* Responsive Optimization */
            @media (max-width: 600px) {
                .leader-box {
                    padding: 25px 15px;
                }

                .leader-statement {
                    font-size: 0.95rem;
                }

                .leader-name {
                    font-size: 1rem;
                }
            }


            /* Subtle fade-in animation */
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(15px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .leader-box {
                animation: fadeInUp 0.6s ease both;
            }


            /* SlideShow */

            /* Custom styles */
            .slideshow-container {
                height: 80vh;
                width: 100%;
                overflow: hidden;
                position: relative;
            }

            .slide {
                position: absolute;
                width: 100%;
                height: 100%;
                opacity: 0;
                transform: scale(1.1);
                transition: all 1s ease-in-out;
                background-size: cover;
                background-position: center;
            }

            .slide.active {
                opacity: 1;
                transform: scale(1);
                animation: zoomIn 8s ease-in-out forwards;
            }

            .slide img,
            .slide video {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            @keyframes zoomIn {
                0% {
                    transform: scale(1);
                }

                100% {
                    transform: scale(1.1);
                }
            }

            /* Content overlay */
            .content-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                z-index: 10;
                color: white;
                background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
            }

            .content-wrapper {
                max-width: 600px;
                padding: 2rem;
                margin-left: 5%;
            }

            .main-heading {
                font-size: 3.5rem;
                font-weight: 700;
                margin-bottom: 1.5rem;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
                line-height: 1.2;
            }

            .main-description {
                font-size: 1.2rem;
                margin-bottom: 2rem;
                text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            }

            .btn-custom {
                padding: 0.8rem 1.8rem;
                border-radius: 50px;
                font-weight: 600;
                margin-right: 1rem;
                margin-bottom: 1rem;
                transition: all 0.3s ease;
            }

            .btn-ultimate {
                position: relative;
                display: inline-block;
                padding: 12px 30px;
                font-size: 16px;
                font-weight: 700 !important;
                color: #ffffff !important;
                background: linear-gradient(135deg, #ffcf40, #ffd860);
                border: none;
                border-radius: 10px;
                cursor: pointer;
                transition:
                    background 0.4s ease,
                    transform 0.25s ease,
                    box-shadow 0.4s ease,
                    color 0.3s ease;
                box-shadow: 0 6px 18px rgba(255, 207, 64, 0.3);
                overflow: hidden;
            }

            /* ✨ Animated shine */
            .btn-ultimate::after {
                content: "";
                position: absolute;
                top: 0;
                left: -75%;
                width: 50%;
                height: 100%;
                background: linear-gradient(120deg,
                        transparent,
                        rgba(255, 255, 255, 0.5),
                        transparent);
                transition: all 0.7s ease;
            }

            /* 🟡 Hover: smooth scale, shine & glow */
            .btn-ultimate:hover {
                transform: scale(1.06);
                box-shadow: 0 12px 30px rgba(255, 207, 64, 0.5);
            }

            .btn-ultimate:hover::after {
                left: 130%;
            }

            /* 🫧 Focus state (when tabbed) */
            .btn-ultimate:focus {
                outline: none;
                box-shadow: 0 0 0 4px rgba(255, 207, 64, 0.4);
            }

            /* ⚡ Active (click) effect */
            .btn-ultimate:active {
                transform: scale(0.96);
                box-shadow: 0 4px 10px rgba(255, 207, 64, 0.3);
                transition: transform 0.1s ease;
            }

            /* 🌟 Outline Variant */
            .btn-ultimate-outline {
                background: transparent;
                border: 2px solid #ffcf40;
                color: #ffcf40;
                box-shadow: none;
            }

            .btn-ultimate-outline:hover {
                transform: scale(1.06);

            }

            .btn-ultimate-outline:active {
                transform: scale(0.96);
                box-shadow: 0 4px 10px rgba(255, 207, 64, 0.3);
                transition: transform 0.1s ease;
            }


            /* Responsive adjustments */
            @media (max-width: 992px) {
                .main-heading {
                    font-size: 2.8rem;
                }

                .content-wrapper {
                    margin-left: 2%;
                    padding: 1.5rem;
                }
            }

            @media (max-width: 768px) {
                .main-heading {
                    font-size: 2.2rem;
                }

                .main-description {
                    font-size: 1rem;
                }

                .content-overlay {
                    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
                    justify-content: center;
                }

                .content-wrapper {
                    margin-left: 0;
                    text-align: center;
                    max-width: 90%;
                }

                .btn-group {
                    justify-content: center;
                }
            }

            @media (max-width: 576px) {
                .main-heading {
                    font-size: 1.8rem;
                }

                .btn-custom {
                    padding: 0.6rem 1.2rem;
                    font-size: 0.9rem;
                }
            }

            /* Preload technique for smoother transitions */
            body::after {
                position: absolute;
                width: 0;
                height: 0;
                overflow: hidden;
                z-index: -1;
                content: url('./assests/Photos/Front_Image.jpg') url('/assests/Photos/WhatsApp Image 2020-06-23 at 4.24.51 PM (1).jpeg');
            }

            /*-------------------------------------------------- About us and Founder ----------------------------------------------------------*/

            .section-title {
                font-size: 2rem;
                font-weight: 700;
                color: #2c3e50;
            }

            .highlight {
                font-weight: bold;
                color: #0056b3;
            }

            .content-box {
                background-color: #fff;
                border-radius: 12px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                padding: 2rem;
                margin-bottom: 2rem;
                width: 90%;
                /* Adjust the width percentage as needed */
                margin: 0 auto;
                /* Center the box */
                padding: 20px;
                /* Optional: adjust padding for spacing */
            }


            /* ----------------------------------------------------------------Contact ----------------------------------------------------------------------*/

            .contact-container {
                max-width: 1000px;
                margin: 2rem auto;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                border-radius: 12px;
                overflow: hidden;
                background-color: #0056b3;

            }

            .contact-info {
                color: white;
                height: 100%;
                padding: 10px;
                background-color: #0056b3;
                margin-top: 10px;
            }

            .contact-info h3 {
                font-weight: 600;
                margin-bottom: 1.5rem;
                position: relative;
                padding-bottom: 15px;
            }

            .contact-info h3::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 50px;
                height: 3px;
                background: rgba(255, 255, 255, 0.5);
            }

            .contact-info-item {
                margin-bottom: 1.5rem;
                display: flex;
                align-items: flex-start;
            }

            .contact-info-icon {
                font-size: 1.2rem;
                margin-right: 1rem;
                margin-top: 3px;
                color: rgba(255, 255, 255, 0.8);
            }

            .contact-form-section {
                background: white;
                padding: 3rem;
            }


            .form-header {
                color: var(--primary-blue);
                font-weight: 700;
                margin-bottom: 2rem;
                position: relative;
                padding-bottom: 15px;
            }

            .form-header::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 50px;
                height: 3px;
            }

            .form-control {
                border: 1px solid #e2e8f0;
                padding: 12px 15px;
                border-radius: 6px;
                margin-bottom: 1.5rem;
                transition: all 0.3s;
            }

            .form-control:focus,
            .form-select:focus,
            .form-control:active,
            .form-select:active,
            .form-control:focus-visible,
            .form-select:focus-visible {
                border-color: rgb(89, 172, 220) !important;
                box-shadow: none !important;
                outline: none !important;
            }

            .form-label {
                color: var(--medium-gray);
                font-weight: 500;
                margin-bottom: 8px;
            }

            .btn-submit {
                background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
                border: none;
                padding: 12px 30px;
                font-weight: 500;
                letter-spacing: 0.5px;
                border-radius: 6px;
                transition: all 0.3s;
            }

            .btn-submit:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(42, 111, 214, 0.3);
            }

            .social-links {
                margin-top: 2rem;
            }

            .social-links a {
                display: inline-block;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.1);
                color: white;
                text-align: center;
                line-height: 40px;
                margin-right: 10px;
                transition: all 0.3s;
            }

            .social-links a:hover {
                background: rgba(255, 255, 255, 0.2);
                transform: translateY(-3px);
            }

            /*  */

            .contact-info-item a {
                text-decoration: none;
                color: white;
            }

            @media (max-width: 768px) {
                .contact-container {
                    margin: 2rem auto;
                }

                .contact-info,
                .contact-form-section {
                    padding: 2rem;
                }
            }
            
             /* Container for toast message */
  #successMessage {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* center */
    z-index: 9999;
    display: none; /* hidden initially */
    pointer-events: none;
  }

  /* The toast box */
  .toast-message {
    background: linear-gradient(135deg, #2a6fd6, #1e4ab8);
    color: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.5s ease forwards;
  }

  /* Icon style */
  .toast-message i {
    font-size: 1.5rem;
  }

  /* Slide-in animation */
  @keyframes slideIn {
    0% { transform: translateY(-30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
  }

  /* Slide-out animation */
  @keyframes slideOut {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-30px); opacity: 0; }
  }


            /* ----------------------------------------------------------------Footer -----------------------------------------------------------------*/

            main {
                flex: 1;
            }

            footer {
                background-color: var(--primary-blue);
                color: var(--white);
                padding: 50px 0 20px;
                margin-top: auto;
                display: flex;
                flex-direction: column;
            }

            .footer-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 30px;
            }

            .footer-logo {
                margin-bottom: 20px;
            }

            .footer-logo h2 {
                font-size: 24px;
                font-weight: 700;
                color: var(--white);
                margin-bottom: 10px;
            }

            .footer-logo p {
                color: rgba(255, 255, 255, 0.8);
                line-height: 1.6;
            }

            .footer-section h3 {
                font-size: 18px;
                font-weight: 600;
                margin-bottom: 20px;
                position: relative;
                padding-bottom: 10px;
            }

            .footer-section h3::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 40px;
                height: 2px;
                background-color: var(--secondary-blue);
            }

            .footer-section a {
                color: white;
                text-decoration: none;
            }

            .footer-links {
                list-style: none;
            }

            .footer-links li {
                margin-bottom: 12px;
            }

            .footer-links a {
                color: rgba(255, 255, 255, 0.8);
                text-decoration: none;
                transition: all 0.3s ease;
                display: block;
            }

            .footer-links a:hover {
                color: var(--white);
                transform: translateX(5px);
            }

            .contact-info-footer {
                margin-top: 5px;
                color: rgba(255, 255, 255, 0.8);
            }

            .contact-info-footer i {
                margin-right: 10px;
                color: var(--secondary-blue);
            }

            .footer-bottom {
                background-color: rgba(0, 0, 0, 0.1);
                padding: 20px 0;
                text-align: center;
            }

            .footer-bottom p {
                color: rgba(255, 255, 255, 0.7);
                font-size: 14px;
            }

            .footer-bottom a {
                color: var(--white);
                text-decoration: none;
            }

            .footer-bottom a:hover {
                text-decoration: underline;
            }

            footer ul {
                padding-left: 0rem;
            }


            .contact-info-footer {
                background: none;
                color: white;
                padding: 0rem;
            }


            @media (max-width: 768px) {
                .footer-container {
                    grid-template-columns: 1fr;
                }

                .footer-section {
                    margin-bottom: 30px;
                }
            }


            /* ----------------------------------------------------------------Footer -----------------------------------------------------------------*/


            .container {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 1.5rem;
            }

            .upper-cont {
                margin-top: 10px;
                margin-bottom: 30px;
            }

            .section-title-product-product {
                font-size: 2rem;
                margin-bottom: 0.5rem;
                text-align: center;
                color: var(--primary);
                font-weight: 700;
            }

            .section-subtitle {
                color: black;
                text-align: center;
                margin-bottom: 2rem;
            }

            /* Desktop View */
            .desktop-categories {
                display: block;
            }

            .category-tabs {
                display: flex;
                justify-content: center;
                gap: 1rem;
                margin-bottom: 2rem;
                border-bottom: 1px solid var(--gray-200);
                padding-bottom: 0.5rem;
                flex-wrap: wrap;
            }

            .category-tab {
                padding: 0.75rem 1.5rem;
                font-weight: 600;
                font-size: 1rem;
                color: var(--gray-700);
                cursor: pointer;
                position: relative;
                border: 1px solid transparent;
                border-radius: var(--radius-sm);
                transition: var(--transition);
            }

            .category-tab:hover {
                background-color: var(--gray-100);
                border-color: var(--gray-200);
            }

            .category-tab.active {
                color: var(--primary);
            }

            .category-tab::after {
                content: '';
                position: absolute;
                bottom: -0.5rem;
                left: 0;
                width: 0;
                height: 3px;
                background: linear-gradient(90deg, var(--primary), var(--secondary));
                transition: var(--transition);
            }

            .category-tab:hover::after,
            .category-tab.active::after {
                width: 100%;
            }

            /* Product Slider Container */
            .product-slider-container {
                display: none;
                position: relative;
            }

            .product-slider-container.active {
                display: block;
            }

            /* Product Slider Row */
            .product-slider {
                display: flex;
                gap: 1.5rem;
                overflow-x: auto;
                padding: 1rem 0 0 0 !important;
                scroll-behavior: smooth;
                -ms-overflow-style: none;
                scrollbar-width: none;
            }

            .product-slider::-webkit-scrollbar {
                display: none;
            }

            /* Product Card */
            .product-card-main {
                min-width: 280px;
                max-height: 200px;
                background: white;
                border-radius: var(--radius-md);
                box-shadow: var(--shadow-sm);
                overflow: hidden;
                transition: var(--transition);
            }

            .product-card-main:hover {
                transform: translateY(-5px);
                box-shadow: var(--shadow-md);
            }

            /* Image Box */
            .product-image {
                height: 200px;
                background-color: var(--gray-100);
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .product-image img {
                max-width: 100%;
                max-height: 250px;
                object-fit: contain;
            }

            /* Slider Container */
            .slider-container {
                position: relative;
                width: 80%;
                max-width: 1200px;
                background: white;
                border-radius: 16px;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                overflow: hidden;
                margin: 0 auto;
            }

            /* Fixed Center Controls */
            .slider-controls {
                position: absolute;
                top: 50%;
                left: 0;
                right: 0;
                display: flex;
                justify-content: space-between;
                align-items: center;
                transform: translateY(-50%);
                padding: 0 20px;
                z-index: 10;
                pointer-events: none;
                /* allows scroll interaction */
            }

            /* Buttons stay clickable */
            .slider-btn {
                width: 50px;
                height: 50px;
                border-radius: 50%;
                background: linear-gradient(135deg, #1d4ed8, #3b82f6);
                color: #fff;
                border: none;
                font-size: 22px;
                font-weight: bold;
                cursor: pointer;
                display: flex;
                justify-content: center;
                align-items: center;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
                transition: all 0.3s ease;
                pointer-events: all;
                /* re-enable click for buttons */
            }

            /* Hover effect */
            .slider-btn:hover {
                background: linear-gradient(135deg, #2563eb, #1e40af);
                transform: scale(1.05);
            }


            .slider-btn:hover {
                transform: scale(1.05);
                box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
            }

            .slider-btn:active {
                transform: scale(0.98);
            }

            .slider-btn.prev:hover {
                transform: translateX(-2px) scale(1.05);
            }

            .slider-btn.next:hover {
                transform: translateX(2px) scale(1.05);
            }

            /* Mobile View */
            .mobile-categories {
                display: none;
            }

            .category-accordion {
                margin-bottom: 1rem;
                border-radius: var(--radius-md);
                box-shadow: var(--shadow-sm);
                overflow: hidden;
                padding: 0 10px;
            }

            .accordion-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 1rem 1.25rem;
                background: var(--secondary-blue);
                cursor: pointer;
                border-radius: 10px;

            }

            .accordion-title {
                display: flex;
                align-items: center;
                gap: 1rem;
                color: white;
            }

            .accordion-icon {
                width: 24px;
                height: 24px;
                color: var(--primary);
                color: white !important;
            }

            .accordion-text h3 {
                font-weight: 600;
                margin-bottom: 0.25rem;
            }

            .accordion-text p {
                font-size: 0.875rem;
                color: var(--gray-500);
            }

            .accordion-arrow {
                transition: var(--transition);
                color: white;
            }

            .accordion-header.active .accordion-arrow {
                transform: rotate(180deg);
            }

            .accordion-content {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease-out;
                background: white;
            }

            .accordion-header.active+.accordion-content {
                max-height: 600px;
                padding: 1rem;
            }

            .mobile-product-slider {
                display: flex;
                gap: 1rem;
                overflow-x: auto;
                padding: 0.5rem 0;
                scroll-behavior: smooth;
            }

            .mobile-product-card {
                min-width: 300px;
                background: white;
                border-radius: var(--radius-sm);
                box-shadow: var(--shadow-sm);
                overflow: hidden;
            }

            .mobile-product-image {
                height: 200px;
                background-color: var(--gray-100);
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .mobile-product-image img {
                max-width: 100%;
                max-height: 150%;
                object-fit: contain;
            }

            .mobile-product-info {
                padding: 0.75rem;
            }

            .mobile-product-title {
                font-weight: 500;
                font-size: 0.875rem;
                margin-bottom: 0.25rem;
            }

            .mobile-product-price {
                color: var(--primary);
                font-weight: 600;
                font-size: 0.875rem;
            }

            @media (max-width: 768px) {
                .desktop-categories {
                    display: none;
                }

                .mobile-categories {
                    display: block;
                }
            }

            /* -----------------------------------------------------------JOB Opening------------------------------------------------- */



            .container-opening {
                margin: 0;
                background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
                color: #0a2540;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
                padding: 40px 90px;

            }

            .container-opening h1 {
                margin: 0;
                font-size: 33px;
                font-weight: 700;
            }

            p.lead {
                margin: 0;
                color: #4b5563;
            }

            .jobs-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 22px;
                margin-top: 25px;
            }

            .card-opening {
                background: #ffffff;
                border-radius: 14px;
                padding: 22px;
                box-shadow: 0 10px 30px rgba(3, 15, 45, 0.06);
                border: 1px solid rgba(3, 15, 45, 0.04);
                transition: transform .28s ease, box-shadow .28s ease;
                position: relative;
                overflow: hidden;
            }

            .card-opening:hover {
                transform: translateY(-6px);
                box-shadow: 0 18px 40px rgba(3, 15, 45, 0.09);
            }

            .job-top {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                gap: 16px;
            }

            .icon-wrap {
                flex-shrink: 0;
                width: 64px;
                height: 64px;
                border-radius: 12px;
                background: linear-gradient(135deg, #0056b3, #003d82);
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-size: 26px;
            }

            .job-title {
                font-size: 18px;
                margin: 0;
                font-weight: 700;
            }

            .badge {
                margin-left: auto;
                font-size: 13px;
                padding: 6px 10px;
                border-radius: 999px;
                background: rgba(0, 86, 179, 0.09);
                color: #003d82;
                font-weight: 600;
            }

            .meta {
                display: flex;
                flex-wrap: wrap;
                gap: 14px;
                margin-top: 12px;
                color: #374151;
                font-weight: 600;
            }

            .meta small {
                display: block;
                font-weight: 600;
                color: #374151;
            }

            .salary {
                margin-top: 14px;
                font-size: 16px;
                font-weight: 700;
            }

            .desc {
                margin: 12px 0 18px;
                color: #6b7280;
            }

            .conatct-job {
                display: flex;
                gap: 10px;
                flex-wrap: wrap;
            }

            .btn-apply {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                padding: 10px 14px;
                border-radius: 10px;
                border: none;
                cursor: pointer;
                font-weight: 700;
                text-decoration: none;
                transition: transform 0.2s ease, box-shadow 0.2s ease;
            }

            .apply {
                background: linear-gradient(90deg, #0056b3, #003d82);
                color: #fff;
                box-shadow: 0 8px 24px rgba(3, 15, 45, 0.12);
            }

            .apply:hover {
                transform: translateY(-2px);
                box-shadow: 0 12px 30px rgba(3, 15, 45, 0.15);
            }

            .call {
                background: transparent;
                color: #003d82;
                border: 2px solid rgba(0, 61, 130, 0.08);
                padding: 8px 12px;
                font-weight: 700;
            }

            .note {
                margin-top: 14px;
                font-size: 13px;
                color: #6b7280;
            }

            /* Decorative top-right accent
                .card-opening:after {
                    content: "";
                    position: absolute;
                    right: -40px;
                    top: -40px;
                    width: 140px;
                    height: 140px;
                    border-radius: 50%;
                    background: rgba(0, 86, 179, 0.06);
                    transform: rotate(25deg);
                } */

            /* subtle pulse for logo */
            @keyframes pulseLogo {
                0% {
                    transform: scale(1);
                }

                50% {
                    transform: scale(1.03);
                }

                100% {
                    transform: scale(1);
                }
            }

            .logo {
                animation: pulseLogo 6s ease-in-out infinite;
            }

            /* Responsive tweaks */
            @media (max-width: 768px) {
                .container-opening {
                    padding: 30px 15px;
                }

                .job-title {
                    font-size: 16px;
                }

                .salary {
                    font-size: 14px;
                }

                .meta {
                    gap: 10px;
                    font-size: 14px;
                }

                .btn-apply {
                    padding: 8px 12px;
                    font-size: 14px;
                }
            }

            @media (max-width: 480px) {
                body {
                    /* padding: 20px 10px; */
                }

                .card-opening {
                    padding: 16px;
                }

                .icon-wrap {
                    width: 50px;
                    height: 50px;
                    font-size: 22px;
                }

                .badge {
                    font-size: 12px;
                    padding: 5px 8px;
                }
            }

            /* ----------------------------------------------------------- End -------------------------------------------------------------- */


            /* ----------------------------------------------------------- Infra Structure ------------------------------------------------- */

            /* Gallery Section */
            .gallery-section {
                padding: 60px 20px;
                text-align: center;
            }

            .gallery-section h2 {
                font-size: 2.5rem;
                margin-bottom: 40px;
                color: #1D5494;
                position: relative;
            }

            .gallery-section h2::after {
                content: '';
                width: 60px;
                height: 4px;
                background-color: #1D5494;
                display: block;
                margin: 10px auto 0;
                border-radius: 2px;
            }

            /* Gallery Container */
            .gallery-container {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 50px;
                padding: 0 50px;
            }

            /* Gallery Item */
            .gallery-item {
                position: relative;
                overflow: hidden;
                border-radius: 12px;
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
                transition: transform 0.5s ease, box-shadow 0.5s ease;
                cursor: pointer;
            }

            .gallery-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
                transition: transform 0.5s ease;
            }

            /* Hover Effect */
            .gallery-item:hover {
                transform: scale(1.05);
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            }

            .gallery-item:hover img {
                transform: scale(1.1);
            }

            /* Overlay */
            .overlay {
                position: absolute;
                bottom: 0;
                background: rgba(29, 84, 148, 0.8);
                /* primary blue with opacity */
                color: white;
                width: 100%;
                padding: 15px;
                text-align: center;
                transform: translateY(100%);
                transition: transform 0.4s ease;
            }

            .gallery-item:hover .overlay {
                transform: translateY(0);
            }

            /* Responsive Text */
            .overlay p {
                font-size: 1rem;
                font-weight: 500;
            }

            @media (max-width: 768px) {
                .gallery-section h2 {
                    font-size: 2rem;
                }

                .overlay p {
                    font-size: 0.9rem;
                }
            }




            /* ----------------------------------------------------------- Blogs ------------------------------------------------- */



            .wrap {
                max-width: 1100px;
                margin: 0 auto;
                padding: 40px;
            }

            header.page-head {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                text-align: center;
                justify-content: space-around;
                gap: 16px;
                margin-bottom: 22px;
            }

            .bolg-title-block {
                display: flex;
                flex-direction: column;
                gap: 6px;
            }

            .bolg-title-block h1 {
                font-size: 30px;
                margin: 0;
                color: var(--primary-blue);
                font-weight: 700;
            }

            .meta,
            .excerpt,
            a {
                text-decoration: none !important;
            }

            .bolg-title-block p {
                margin: 0;
                color: var(--muted);
                font-size: 14px;
            }

            .blog-list {
                background: #ffffffcc;
                border-radius: 14px;
                padding: 8px;
                box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);

            }

            .blog-row {
                display: flex;
                flex-wrap: wrap;
                align-items: flex-start;
                justify-content: space-between;
                padding: 28px;
                border-bottom: 1px solid rgba(15, 23, 36, 0.05);
                transition: all .3s ease;
                background: transparent;
                border-left: 6px solid #1a4b8e;
                row-gap: 30px !important;
                border-radius: 10px;



            }

            .blog-row:hover {
                transform: translateY(-4px);
                box-shadow: 0 12px 30px rgba(26, 75, 142, 0.08);
                background: rgba(26, 75, 142, 0.05);
            }

            .left {
                display: flex;
                flex-wrap: wrap;
                gap: 54px;
                align-items: center;
                flex: 1;
            }

            .avatar {
                width: 56px;
                height: 56px;
                border-radius: 10px;
                background: linear-gradient(135deg, var(--primary-blue), #0f2f6a);
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--white);
                font-weight: 700;
                font-size: 18px;
                flex-shrink: 0;
                box-shadow: 0 8px 20px rgba(26, 75, 142, 0.12);
            }

            .meta {
                flex: 1;
                min-width: 200px;
            }

            .meta .bolg-title {
                font-size: 20px;
                font-weight: 600;
                color: #07102a;
                margin-bottom: 6px;
            }

            .meta .excerpt {
                font-size: 13px;
                color: var(--muted);
                margin: 0;
            }

            .right {
                display: flex;
                flex-wrap: wrap;
                gap: 12px;
                align-items: center;
                justify-content: flex-end;
            }

            .pill {
                background: rgba(26, 75, 142, 0.08);
                border-radius: 999px;
                padding: 8px 12px;
                font-size: 13px;
                color: var(--primary-blue);
                font-weight: 600;
                display: inline-flex;
                align-items: center;
                gap: 8px;
            }

            .chev {
                width: 36px;
                height: 36px;
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: rgba(26, 75, 142, 0.1);
                cursor: pointer;
                transition: transform .12s ease;
                border: none !important;
            }

            .chev:hover {
                transform: scale(1.06)
            }

            .blog-row:last-child {
                border-bottom: 0
            }

            .empty {
                padding: 40px 18px;
                text-align: center;
                color: var(--muted);
            }

            .bolg-title-block h1 {
                font-size: 2.5rem;
                margin-bottom: 40px;
                color: #1D5494;
                position: relative;
                text-align: center;
            }

            .bolg-title-block h1::after {
                content: '';
                width: 80px;
                height: 4px;
                background-color: #1D5494;
                display: block;
                margin: 10px auto 0;
                border-radius: 2px;
            }

            @media (max-width:900px) {
                .bolg-title-block h1 {
                    font-size: 20px;
                }

                .right {
                    justify-content: flex-start;
                }
            }

            @media (max-width:600px) {

                .bolg-title-block h1 {
                    font-size: 26px;
                }

                .pill {
                    padding: 6px 10px;
                    font-size: 13px;
                }
            }


            /* --------------------------------------------------------------Newsletter ------------------------------------------------------- */

            .blog-container h1 {
                font-size: 2.5rem;
                margin-bottom: 40px;
                color: #1D5494;
                position: relative;
                text-align: center;
            }

            .blog-container h1::after {
                content: '';
                width: 100px;
                height: 4px;
                background-color: #1D5494;
                display: block;
                margin: 10px auto 0;
                border-radius: 2px;
            }


            .blog-container {
                max-width: 1100px;
                margin: 50px auto;
                padding: 0 20px;
            }

            .section-blog {
                background: #f8f9fc;
                border-left: 6px solid #1a4b8e;
                padding: 25px;
                margin-bottom: 30px;
                border-radius: 10px;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }

            .section-blog:hover {
                transform: translateY(-5px);
                box-shadow: 0 5px 15px rgba(26, 75, 142, 0.2);
            }

            .section-blog h2 {
                color: #1a4b8e;
                font-size: 1.8rem;
                margin-bottom: 15px;
                font-weight: 700;
            }

            .section-blog h3 {
                color: #1a4b8e;
                font-size: 1.4rem;
                margin-top: 20px;
                margin-bottom: 10px;
            }


            @media (max-width: 768px) {
                header h1 {
                    font-size: 2rem;
                }

                .section-blog {
                    padding: 20px;
                }

                .section-blog h2 {
                    font-size: 1.5rem;
                }
            }

            @media (max-width: 480px) {
                header {
                    /* padding: 30px 10px; */
                }

                .section-blog {
                    padding: 15px;
                }

                .section-blog h2 {
                    font-size: 1.3rem;
                }
            }


            /* -------------------------------------------------------------Infrastructure--------------------------------------------------------- */

            .infra-container {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }

            /* Header Styles */
            .infra-header {
                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                background: linear-gradient(135deg, #1a4b8e 0%, #1D5494 100%);
                color: white;
                padding: 18px 0;
                position: sticky;
                top: 0;
                z-index: 100;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                display: none;
            }


            /* Hero Section */
            .infra-hero {
                background: linear-gradient(rgba(26, 75, 142, 0.7), rgba(29, 84, 148, 0.9)), url(/assests/infrastructure-image/IMG-20251005-WA0036.jpg);
                background-size: cover;
                background-position: center;
                padding: 100px 0;
                text-align: center;
                color: white;
            }

            .hero-title {
                font-size: 42px;
                margin-bottom: 24px;
                font-weight: 700;
                opacity: 0;
                transform: translateY(20px);
                animation: fadeUp 0.8s ease forwards;
            }

            .hero-content {
                font-size: 20px;
                max-width: 800px;
                margin: 0 auto 40px;
                opacity: 0;
                transform: translateY(20px);
                animation: fadeUp 0.8s ease 0.2s forwards;
            }

            .hero-content strong {
                text-decoration: none !important;
                color: var(--accent-yellow);
            }

            /* Section Styles */
            .infra-section {
                padding: 40px 0;
                opacity: 0;
                transform: translateY(30px);
                transition: opacity 0.8s, transform 0.8s;
            }

            .infra-section.visible {
                opacity: 1;
                transform: translateY(0);
            }

            .infra-section-heading {
                text-align: center;
                margin-bottom: 60px;
            }

            .infra-section-title {
                font-size: 36px;
                color: #1a4b8e;
                margin-bottom: 16px;
                font-weight: 700;
                position: relative;
                display: inline-block;
            }

            .infra-section-title:after {
                content: '';
                position: absolute;
                width: 60px;
                height: 4px;
                background: linear-gradient(to right, #1a4b8e, #1D5494);
                bottom: -12px;
                left: 50%;
                transform: translateX(-50%);
                border-radius: 2px;
            }

            .infra-section-subtitle {
                max-width: 700px;
                margin: 24px auto 0;
                color: #666;
                font-size: 18px;
            }

            /* Content with Image */
            .content-block {
                display: flex;
                align-items: center;
                gap: 60px;
                margin-bottom: 80px;
            }

            .content-block.reverse {
                flex-direction: row-reverse;
            }

            .text-content {
                flex: 1;
            }

            .text-content h3 {
                font-size: 28px;
                margin-bottom: 24px;
                color: #1a4b8e;
                font-weight: 600;
            }

            .text-content p {
                margin-bottom: 20px;
                font-size: 17px;
                color: #444;
                line-height: 1.6;
            }

            .infra-image-content {
                flex: 1;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transform: translateY(0);
                transition: transform 0.5s, box-shadow 0.5s;
            }

            .infra-image-content:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            }

            .infra-image-content img {
                width: 100%;
                height: auto;
                display: block;
                transition: transform 0.8s;
            }

            .infra-image-content:hover img {
                transform: scale(1.05);
            }

            /* Placeholder for Images */
            .image-placeholder {
                background: linear-gradient(135deg, #1a4b8e 0%, #1D5494 100%);
                height: 380px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                color: white;
                font-weight: 500;
                font-size: 18px;
            }

            .image-placeholder i {
                font-size: 48px;
                margin-bottom: 20px;
                opacity: 0.8;
            }

            /* Two Column Layout */
            .two-column-grid {
                display: flex;
            }

            .grid-column {
                flex: 1;
            }

            .grid-column h3 {
                font-size: 22px;
                margin-bottom: 10px;
                color: #1a4b8e;
                font-weight: 600;
            }

            .grid-column p {
                margin-bottom: 10px;
            }

            .column-arrow {
                padding-left: 120px;
            }

            /* Table Styles */
            .table-wrapper {
                overflow-x: auto;
                margin: 40px 0;
                border-radius: 12px;
                box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            }

            .capability-table {
                width: 100%;
                border-collapse: collapse;
            }

            .capability-table th,
            .capability-table td {
                padding: 18px 20px;
                text-align: left;
                border-bottom: 1px solid #e9ecef;
            }

            .capability-table th {
                background: linear-gradient(135deg, #1a4b8e 0%, #1D5494 100%);
                color: white;
                font-weight: 600;
                font-size: 17px;
            }

            .capability-table tr {
                transition: background-color 0.3s;
            }

            .capability-table tr:hover {
                background-color: #f8f9fa;
            }

            .capability-table td {
                font-size: 16px;
            }

            /* List Styles */
            .feature-list {
                list-style: none;
            }

            .feature-list li {
                margin-bottom: 16px;
                padding-left: 36px;
                position: relative;
                font-size: 17px;
            }

            .feature-list li:before {
                content: "✓";
                position: absolute;
                left: 0;
                color: #1a4b8e;
                font-weight: bold;
                font-size: 18px;
                background: rgba(26, 75, 142, 0.1);
                width: 28px;
                height: 28px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            /* Process Steps */
            .process-flow {
                display: flex;
                justify-content: space-between;
                margin-top: 50px;
            }

            .process-step {
                flex: 1;
                text-align: center;
                padding: 0 20px;
                position: relative;
            }

            .step-indicator {
                width: 70px;
                height: 70px;
                background: linear-gradient(135deg, #1a4b8e 0%, #1D5494 100%);
                color: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 25px;
                font-size: 26px;
                font-weight: bold;
                box-shadow: 0 5px 15px rgba(26, 75, 142, 0.3);
                transition: transform 0.3s;
            }

            .process-step:hover .step-indicator {
                transform: scale(1.1);
            }

            .process-step h3 {
                font-size: 22px;
                margin-bottom: 15px;
                color: #1a4b8e;
                font-weight: 600;
            }

            .process-step p {
                color: #555;
                font-size: 16px;
            }

            .process-step:not(:last-child):after {
                content: "";
                position: absolute;
                top: 35px;
                right: -10px;
                width: calc(100% - 100px);
                height: 2px;
                background: linear-gradient(to right, #1a4b8e, #1D5494);
            }


            /* Animations */
            @keyframes fadeUp {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /* Responsive Styles */
            @media (max-width: 992px) {

                .content-block,
                .content-block.reverse,
                .two-column-grid {
                    flex-direction: column;
                }

                .process-flow {
                    flex-wrap: wrap;
                }

                .process-step {
                    flex: 0 0 50%;
                    margin-bottom: 40px;
                }

                .process-step:not(:last-child):after {
                    display: none;
                }

                .column-arrow {
                    padding-left: 0;
                }

            }

            @media (max-width: 768px) {
                .header-wrapper {
                    flex-direction: column;
                    text-align: center;
                }

                .nav-menu ul {
                    margin-top: 20px;
                }

                .nav-menu ul li {
                    margin: 0 10px;
                }

                .mobile-nav-toggle {
                    display: block;
                    position: absolute;
                    top: 20px;
                    right: 20px;
                }

                .nav-menu {
                    display: none;
                    width: 100%;
                    margin-top: 20px;
                }

                .nav-menu.active {
                    display: block;
                }

                .nav-menu ul {
                    flex-direction: column;
                }

                .nav-menu ul li {
                    margin: 10px 0;
                }

                .hero-title {
                    font-size: 32px;
                }

                .infra-section-title {
                    font-size: 30px;
                }

                .process-step {
                    flex: 0 0 100%;
                }

            }

            /* -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- SUB PRODUCTS---------------------------------------------------------------------- */
            /* ---------------------------------------------------------------------------------------------------------------------------------------- */




            .container-prod {
                margin: 0 auto;
                color: var(--text-dark);

            }

            .container-prod section {
                padding: 20px 0;
            }

            .section-title-prod {
                text-align: center;
                margin-bottom: 50px;
                color: var(--primary-blue);
                font-size: 2.2rem;
                position: relative;

            }

            .section-title-prod:after {
                content: '';
                position: absolute;
                bottom: -20px;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 4px;
                background: var(--accent-blue);
                border-radius: 2px;
            }

            .section-title-prod-related {
                text-align: center;
                margin-bottom: 50px;
                font-weight: 700;
                color: var(--dark-blue);
                font-size: 2.6rem;
                position: relative;
                padding: 0;

            }

            /* Step 1: Product Introduction */
            .product-intro {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                gap: 40px;
                margin-bottom: 40px;
                padding: 0 30px !important;
            }

            .product-info {
                flex: 1;
                min-width: 300px;
                padding: 30px;
                animation: fadeInLeft 1s ease;
            }

            .product-name {
                font-size: 3rem;
                color: var(--primary-blue);
                margin-bottom: 20px;
                line-height: 1.2;
            }

            .product-description {
                font-size: 1.2rem;
                margin-bottom: 30px;
                color: #555;
            }

            .contact-btn {
                display: inline-block;
                background: var(--primary-blue);
                color: #fff;
                ;
                padding: 14px 32px;
                border-radius: 50px;
                text-decoration: none;
                font-weight: 600;
                font-size: 1.1rem;
                transition: 0 5px 15px rgba(0, 0, 0, 0.1);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                border: 2px solid var(--primary-blue);
            }

            .contact-btn:hover {
                background: transparent;
                color: var(--primary-blue);
                transform: translateY(-5px);
            }

            .product-visual {
                flex: 1;
                min-width: 300px;
                position: relative;
                animation: fadeInRight 1s ease;
            }

            .main-slider {
                width: 100%;
                height: 400px;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                position: relative;
                margin-top: 40px;

            }

            .slider-container-prod {
                width: 100%;
                height: 100%;
                position: relative;
            }

            .slide {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                transition: opacity 1s ease;
                display: flex;
                align-items: center;
                justify-content: center;
                background: linear-gradient(135deg, var(--light-blue), #fff);
                color: var(--primary-blue);
                font-size: 1.5rem;
                font-weight: bold;
            }

            .slide.active {
                opacity: 1;
            }

            .slider-nav {
                position: absolute;
                bottom: 20px;
                left: 0;
                width: 100%;
                display: flex;
                justify-content: center;
                gap: 10px;
            }

            .slider-dot {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.5);
                cursor: pointer;
                transition: 0 5px 15px rgba(0, 0, 0, 0.1);
            }

            .slider-dot.active {
                background: #fff;
                ;
                transform: scale(1.2);
            }

            .thumbnail-container {
                display: flex;
                gap: 15px;
                margin-top: 20px;
                justify-content: center;
            }

            .thumbnail {
                width: 80px;
                height: 80px;
                border-radius: 8px;
                overflow: hidden;
                cursor: pointer;
                transition: 0 5px 15px rgba(0, 0, 0, 0.1);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                display: flex;
                align-items: center;
                justify-content: center;
                background: linear-gradient(135deg, var(--light-blue), #fff);
                color: var(--primary-blue);
                font-weight: bold;
            }

            .thumbnail.active {
                border: 3px solid var(--primary-blue);
                transform: scale(1.1);
            }

            /* Step 2: Features Section */
            .features-section {
                padding: 80px 20px;
                max-width: 1200px;
                margin: 0 auto;
            }

            .section-title-prod {
                text-align: center;
                font-size: 2.5rem;
                margin-bottom: 50px;
                color: #2c3e50;
                position: relative;
            }

            .section-title-prod::after {
                content: '';
                position: absolute;
                bottom: -15px;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 4px;
                background: linear-gradient(90deg, #3498db, #2c3e50);
                border-radius: 2px;
            }

            .features-container {
                display: flex;
                flex-wrap: wrap;
                gap: 40px;
                align-items: center;
                justify-content: center;
            }

            .features-image {
                flex: 1;
                min-width: 300px;
                height: 400px;
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-size: 1.5rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transition: transform 0.5s ease;
            }

            .features-image:hover {
                transform: translateY(-10px);
            }

            .features-content-prod {
                flex: 2;
                min-width: 300px;
            }

            .features-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
            }

            .feature-item-prod {
                background: white;
                padding: 30px 25px;
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
                z-index: 1;
            }

            .feature-item-prod::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, #3498db, #2c3e50);
                opacity: 0;
                transition: opacity 0.3s ease;
                z-index: -1;
            }

            .feature-item-prod:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
                color: white;
            }

            .feature-item-prod:hover::before {
                opacity: 1;
            }

            .feature-item-prod:hover .feature-icon {
                background: rgba(255, 255, 255, 0.2);
                color: white;
            }

            .feature-item-prod:hover .feature-title-prod,
            .feature-item-prod:hover p {
                color: white;
            }

            .feature-icon {
                width: 70px;
                height: 70px;
                background: #f0f7ff;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 20px;
                color: #3498db;
                font-size: 1.8rem;
                transition: all 0.3s ease;
            }

            .feature-title-prod {
                font-size: 1.4rem;
                margin-bottom: 15px;
                color: #2c3e50;
                transition: color 0.3s ease;
            }

            .feature-item-prod p {
                color: #666;
                transition: color 0.3s ease;
            }

            /* Responsive Design */
            @media screen and (max-width: 768px) {
                .features-container {
                    flex-direction: column;
                }

                .features-image {
                    width: 100%;
                    height: 300px;
                }

                .section-title-prod {
                    font-size: 2rem;
                }
            }

            @media screen and (max-width: 480px) {
                .features-grid {
                    grid-template-columns: 1fr;

                }

                .section-title-prod {
                    font-size: 1.8rem;
                }

                .feature-item-prod {
                    padding: 20px;
                }
            }

            /* Animation for feature items on scroll */
            .feature-item-prod {
                opacity: 0;
                transform: translateY(20px);
                transition: opacity 0.5s ease, transform 0.5s ease;
            }

            .feature-item-prod.animate {
                opacity: 1;
                transform: translateY(0);
            }


            /* Srep 2 */


            .pro-section {
                padding: 40px 30px !important;
                display: flex;
                justify-content: center;
                align-items: center;
                min-height: 100vh;
            }

            .pro-container {
                max-width: 1200px;
                width: 100%;
                display: grid;
                grid-template-columns: 1fr 1.2fr;
                gap: 60px;
                align-items: start;
            }

            .pro-image {
                position: relative;
                border-radius: 16px;
                overflow: hidden;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
                height: fit-content;
            }

            .pro-image img {
                width: 100%;
                height: auto;
                display: block;
                transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
            }

            .pro-image:hover img {
                transform: scale(1.03);
            }

            .pro-image::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
                pointer-events: none;
            }

            .pro-features {
                display: flex;
                flex-direction: column;
            }

            .pro-title {
                font-size: 2.5rem;
                font-weight: 700;
                margin-bottom: 30px;
                color: #1e293b;
                line-height: 1.2;
                position: relative;
                padding-bottom: 15px;
            }

            .pro-title::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 60px;
                height: 4px;
                background: linear-gradient(90deg, #3b82f6, #8b5cf6);
                border-radius: 2px;
            }

            .pro-grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 20px;
            }

            .pro-box {
                background: white;
                padding: 22px 18px;
                border-radius: 12px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
                transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
                position: relative;
                overflow: hidden;
                border: 1px solid rgba(226, 232, 240, 0.8);
                opacity: 0;
                transform: translateY(20px);
                animation: fadeInUp 0.6s forwards;
            }

            .pro-box::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 4px;
                height: 100%;
                background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
                transition: width 0.3s ease;
            }

            .pro-box:hover {
                transform: translateY(-5px);
                box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
                border-color: rgba(59, 130, 246, 0.2);
            }

            .pro-box:hover::before {
                width: 6px;
            }

            .pro-box h3 {
                font-size: 0.9rem;
                font-weight: 600;
                margin-bottom: 8px;
                color: #64748b;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            .pro-box p {
                font-size: 1rem;
                font-weight: 500;
                color: #1e293b;
            }

            /* Staggered animation for boxes */
            .pro-box:nth-child(1) {
                animation-delay: 0.1s;
            }

            .pro-box:nth-child(2) {
                animation-delay: 0.15s;
            }

            .pro-box:nth-child(3) {
                animation-delay: 0.2s;
            }

            .pro-box:nth-child(4) {
                animation-delay: 0.25s;
            }

            .pro-box:nth-child(5) {
                animation-delay: 0.3s;
            }

            .pro-box:nth-child(6) {
                animation-delay: 0.35s;
            }

            .pro-box:nth-child(7) {
                animation-delay: 0.4s;
            }

            .pro-box:nth-child(8) {
                animation-delay: 0.45s;
            }

            .pro-box:nth-child(9) {
                animation-delay: 0.5s;
            }

            .pro-box:nth-child(10) {
                animation-delay: 0.55s;
            }

            .pro-box:nth-child(11) {
                animation-delay: 0.6s;
            }

            @keyframes fadeInUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /* Responsive Design */
            @media (max-width: 992px) {
                .pro-container {
                    grid-template-columns: 1fr;
                    gap: 40px;
                }

                .pro-title {
                    font-size: 2rem;
                }
            }

            @media (max-width: 768px) {
                .pro-grid {
                    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                }

                .pro-section {
                    padding: 60px 20px;
                }
            }

            @media (max-width: 576px) {
                .pro-grid {
                    grid-template-columns: 1fr;
                }

                .pro-title {
                    font-size: 1.75rem;
                }
            }

            /* Step 3: Quote Section */
            .quote-section-prod {
                text-align: center;
                /* padding: 80px 0; */
            }

            .quote-btn {
                display: inline-block;
                background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
                color: #fff;
                ;
                padding: 18px 45px;
                border-radius: 50px;
                text-decoration: none;
                font-weight: 700;
                font-size: 1.3rem;
                transition: 0 5px 15px rgba(0, 0, 0, 0.1);
                box-shadow: 0 10px 20px rgba(29, 84, 148, 0.3);
                border: none;
                cursor: pointer;
                position: relative;
                overflow: hidden;
                animation: pulse 2s infinite;
            }

            .quote-btn:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 25px rgba(29, 84, 148, 0.4);
            }

            .quote-btn:after {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
                transition: 0.5s;
            }

            .quote-btn:hover:after {
                left: 100%;
            }

            /* Achivements */

            .stats-section {
                /* padding: 80px 20px; */
                text-align: center;
                display: flex;
                align-items: center;
            }

            .container-achive {
                width: 100%;
                margin: 0 auto;
                max-width: 15000;
                background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
                padding: 30px;
                padding-bottom: 60px;

            }

            .section-title-achive {
                font-size: 2.5rem;
                margin-bottom: 60px;
                font-weight: 700;
                letter-spacing: 1px;
                color: var(--white) !important;
                text-transform: uppercase;
                position: relative;
                display: inline-block;
            }

            .section-title-achive::after {
                content: '';
                position: absolute;
                bottom: -15px;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 4px;
                background-color: var(--accent-color);
                border-radius: 2px;
            }

            .stats-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 30px;
                justify-items: center;
            }

            .stat-box {
                background-color: rgba(255, 255, 255, 0.1);
                border-radius: 15px;
                padding: 40px 20px;
                width: 100%;
                max-width: 280px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
                transition: transform 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .stat-box::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 4px;
                background-color: var(--accent-color);
                transform: scaleX(0);
                transition: transform 0.3s ease;
            }

            .stat-box:hover {
                transform: translateY(-8px);
                background-color: rgba(255, 255, 255, 0.15);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            }

            .stat-box:hover::before {
                transform: scaleX(1);
            }

            .icon {
                font-size: 3.5rem;
                color: var(--accent-color);
                margin-bottom: 20px;
                display: block;
            }

            .counter {
                font-size: 2.8rem;
                font-weight: 800;
                color: #fff;
                margin: 15px 0;
                transition: color 0.3s ease;
            }

            .stat-box:hover .counter {
                color: var(--accent-color);
            }

            .stat-box p {
                font-size: 1.1rem;
                margin-top: 10px;
                color: #d1e4ff;
                font-weight: 500;
            }

            /* Animation classes */
            .fade-in {
                opacity: 0;
                transform: translateY(20px);
                transition: opacity 0.5s ease, transform 0.5s ease;
            }

            .fade-in.visible {
                opacity: 1;
                transform: translateY(0);
            }

            /* Responsive design */
            @media (max-width: 768px) {
                .section-title-achive {
                    font-size: 2rem;
                    margin-bottom: 40px;
                }

                .stats-grid {
                    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                    gap: 20px;
                }

                .stat-box {
                    padding: 30px 15px;
                }

                .counter {
                    font-size: 2.2rem;
                }

                .icon {
                    font-size: 3rem;
                }
            }

            @media (max-width: 480px) {
                .stats-section {
                    padding: 60px 15px;
                }

                .section-title-achive {
                    font-size: 1.8rem;
                }

                .stats-grid {
                    grid-template-columns: 1fr;
                    gap: 15px;
                }

                .stat-box {
                    max-width: 100%;
                }

                .counter {
                    font-size: 2rem;
                }

                .icon {
                    font-size: 2.5rem;
                }
            }

            /* Step 4: Related Products */
            .related-products {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 30px;
                margin-top: 50px;
            }

            .product-card-prod {
                background: white;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                transition: transform 0.4s ease, box-shadow 0.4s ease;
                position: relative;
                height: 350px;
                cursor: pointer;
            }

            .product-card-prod:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
            }

            .product-image-prod {
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                background: linear-gradient(135deg, var(--light-blue), #fff);
                color: var(--primary-blue);
                font-size: 1.5rem;
                font-weight: bold;
                transition: transform 0.6s ease, filter 0.4s ease;
            }

            .product-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(29, 84, 148, 0.9);
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                opacity: 0;
                transition: opacity 0.5s ease;
                padding: 20px;
                text-align: center;
                background-size: cover;
                backdrop-filter: blur(4px);
            }

            .product-card-prod:hover .product-overlay {
                opacity: 1;
            }

            .product-card-prod:hover .product-image-prod {
                transform: scale(1.08);
                filter: brightness(0.8);
            }

            .product-name-overlay {
                color: white;
                font-size: 1.8rem;
                margin-bottom: 15px;
                transform: translateY(20px);
                opacity: 0;
                transition: transform 0.4s ease, opacity 0.4s ease;
            }

            .product-overlay p {
                color: white;
                font-size: 0.95rem;
                line-height: 1.5;
                margin: 0 15px;
                opacity: 0.85;
            }

            .product-card-prod:hover .product-name-overlay {
                transform: translateY(0);
                opacity: 1;
                transition-delay: 0.1s;
            }

            .view-details {
                display: inline-block;
                background: white;
                color: var(--primary-blue);
                padding: 10px 25px;
                border-radius: 50px;
                text-decoration: none;
                font-weight: 600;
                margin-top: 15px;
                transform: translateY(20px);
                opacity: 0;
                transition: transform 0.4s ease, opacity 0.4s ease, background 0.3s ease;
            }

            .view-details:hover {
                background: var(--accent-yellow);
                color: white;
            }

            .product-card-prod:hover .view-details {
                transform: translateY(0);
                opacity: 1;
                transition-delay: 0.2s;
            }


            /* Animations */
            @keyframes fadeInLeft {
                from {
                    opacity: 0;
                    transform: translateX(-50px);
                }

                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }

            @keyframes fadeInRight {
                from {
                    opacity: 0;
                    transform: translateX(50px);
                }

                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }

            @keyframes pulse {
                0% {
                    box-shadow: 0 0 0 0 rgba(29, 84, 148, 0.4);
                }

                70% {
                    box-shadow: 0 0 0 15px rgba(29, 84, 148, 0);
                }

                100% {
                    box-shadow: 0 0 0 0 rgba(29, 84, 148, 0);
                }
            }

            /* Responsive Design */
            @media (max-width: 768px) {
                .product-name {
                    font-size: 2.2rem;
                }

                .product-description {
                    font-size: 1.1rem;
                }

                .section-title-prod {
                    font-size: 1.8rem;
                }

                .main-slider {
                    height: 300px;
                }

                .features-image {
                    height: 300px;
                }
            }

            @media (max-width: 480px) {
                section {
                    padding: 50px 0;
                }

                .product-name {
                    font-size: 1.8rem;
                }

                .contact-btn,
                .quote-btn {
                    padding: 12px 25px;
                    font-size: 1rem;
                }

                .thumbnail-container {
                    flex-wrap: wrap;
                }
            }

            /* Draw string */

            .drawstring-section {
                max-width: 1200px;
                margin: auto;
            }

            .drawstring-section h2 {
                font-size: 2rem;
                color: #1a4b8e;
                display: inline-block;
                padding-bottom: 5px;
                margin-bottom: 15px;
            }

            .sect-2,
            .sect-1 {
                text-align: center;
                margin-top: 25px !important;
            }

            .drawstring-table {
                width: 100%;
                border-collapse: collapse;
                margin-top: 20px;
            }

            .drawstring-table th,
            .drawstring-table td {
                border: 1px solid #e9f0fa;
                padding: 15px 10px;
                text-align: left;
            }

            .drawstring-table th {
                background-color: #1a4b8e;
                color: #ffffff;
            }

            .drawstring-table tr:nth-child(even) {
                background-color: #e9f0fa;
            }

            .drawstring-list {
                list-style-type: disc;
                padding-left: 20px;
                gap: 20px
            }

            .drawstring-highlight {
                color: #2a6fd6;
                font-weight: bold;
            }

            .sect-3 h2 {
                margin-bottom: 0;
                margin-top: 30px;
            }

            @media (max-width: 768px) {
                .drawstring-header h1 {
                    font-size: 2rem;
                }

                .drawstring-section h2 {
                    font-size: 1.5rem;
                }

                .drawstring-section {
                    padding: 20px 40px;
                }
            }

            /* -------------------------------------------  Tab Conatiner ----------------------------------------------------------------------- */


            .tab-container {
                --primary-blue: #1a4b8e;
                --secondary-blue: #2a6fd6;
                --light-blue: #e9f0fa;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                margin: 10px auto;
                padding: 40px;
                border-radius: 14px;
                background: white;
                font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
                box-shadow: 0 8px 30px rgba(17, 24, 39, 0.06);
                width: 100%;
                ;
            }

            .tab-header h2 {
                margin: 0;
                font-size: 32px;
                color: var(--primary-blue);
            }

            .tab-header p {
                margin: 8px 0 20px;
                color: #556;
                opacity: 0.9;
                font-size: 16px;
            }

            .tab-names {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
                justify-content: center;
            }

            .tab-name {
                background: transparent;
                border: 1px solid transparent;
                padding: 10px 16px;
                border-radius: 10px;
                cursor: pointer;
                font-weight: 600;
                color: var(--primary-blue);
                transition: all 0.2s ease-in-out;
                font-size: 18px;
            }

            .tab-name:hover {
                transform: translateY(-3px);
                box-shadow: 0 6px 18px rgba(26, 75, 142, 0.08);
            }

            .tab-name[data-active="true"] {
                background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
                color: white;
                box-shadow: 0 8px 25px rgba(42, 111, 214, 0.15);
            }

            @media (max-width:640px) {
                .tab-names {
                    overflow-x: auto;
                    white-space: nowrap;
                    padding: 8px;
                }

                .tab-name {
                    flex: 0 0 auto;
                }
            }