    @import url("https://fonts.googleapis.com/css2?family=Familjen+Grotesk:ital,wght@0,400..700;1,400..700&display=swap");
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
     :root {
        --brand-clr-bg: #fdf7f6;
        --blue-main: #27397f;
        --brand-color: #27397f;
        --light-gray: #f8f9fa;
        --border-color: #e9ecef;
        --text-color: #333;
        --text-light: #6c757d;
        --bg-color: #081e2c;
        --card-color: #051723;
        --text-color-white: #ffff;
        --yellow-clr: rgb(253, 231, 115);
    }
    
    a {
        text-decoration: none !important;
    }
    
    .contact-info a {
        font-size: 14px;
        font-weight: 500;
        color: #27397f !important;
    }
    
    .contact-info i {
        margin-right: 5px;
        color: #27397f;
    }
    
    .iso-and-icon {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .iso-text {
        font-size: 15px;
        font-weight: 600;
        color: #27397f;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        white-space: nowrap;
    }
    
    .linkedin i {
        font-size: 18px;
        color: #0a66c2;
        transition: color 0.3s;
    }
    
    .linkedin i:hover {
        color: #0a66c2;
    }
    
    body {
        overflow-x: hidden;
        font-family: "Familjen Grotesk", sans-serif;
    }
    
    html {
        font-family: "Familjen Grotesk", sans-serif;
        overflow-x:hidden;
    }
    
    .navbar .container row {
        display: flex;
        justify-content: space-between !important;
    }
    
    .fullscreen-collapse {
        position: fixed;
        top: 106px;
        left: 0;
        width: 100%;
        height: calc(100vh - 56px);
        background-color: var(--brand-clr-bg);
        color: #000;
        z-index: 1040;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-50px);
        pointer-events: none;
        transition: transform 0.5s ease, opacity 0.5s ease;
    }
    /* Show class to animate in */
    
    .fullscreen-collapse.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .navbar-toggler,
    .navbar-toggler:focus,
    .navbar-toggler:active,
    .navbar-toggler-icon:focus {
        outline: none !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .navbar-toggler {
        padding-right: 0 !important;
    }
    
    .linkdin-button-top a {
        background-color: #0a66c2;
        color: #ffffff;
        font-size: 14px;
        width: 25px;
        height: 25px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        position: relative;
        top: -15px;
    }
    
    .linkdin-button-top {
        display: flex;
        flex-direction: column;
        align-items: end;
    }
    
    .hamburger {
        width: 30px;
        height: 22px;
        position: relative;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: all 0.3s ease;
        transform: rotate(180deg);
    }
    
    .hamburger span {
        height: 3px;
        width: 100%;
        background: #011627;
        border-radius: 2px;
        display: block;
        transition: all 0.4s ease;
    }
    /* Hover pulse animation for idle state */
    
    .hamburger span:nth-child(1) {
        animation: burger-hover 1.5s infinite ease-in-out;
    }
    
    .hamburger span:nth-child(2) {
        animation: burger-hover 1.5s infinite ease-in-out 0.3s;
    }
    
    .hamburger span:nth-child(3) {
        animation: burger-hover 1.5s infinite ease-in-out 0.6s;
    }
    
    @keyframes burger-hover {
        0% {
            width: 100%;
        }
        50% {
            width: 50%;
        }
        100% {
            width: 100%;
        }
    }
    /* ===== Active (CLOSE) STATE ===== */
    
    .hamburger.active span {
        animation: none;
        /* stop hover animation */
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        position: absolute;
        top: 9px;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        position: absolute;
        top: 9px;
    }
    
    .hamber-icons {
        display: flex;
        align-items: end;
        justify-content: end;
        gap: 20px;
        position: relative;
        top: 20px;
    }
    
    .hamber-icons .just-icons {
        display: flex;
        align-items: center;
        gap: 25px;
        font-size: 15px;
        font-weight: 500;
    }
    
    .hamber-icons .just-icons a {
        color: #000;
        text-decoration: none;
        display: flex;
        align-items: center;
        transition: color 0.3s ease;
    }
    
    .hamber-icons .just-icons a i {
        margin-right: 8px;
        color: var(--blue-main);
        transition: color 0.3s ease;
    }
    
    .hamber-icons .just-icons a:hover {
        color: var(--blue-main);
    }
    
    .hamber-icons .just-icons a:hover i {
        color: #000;
    }
    /* Vertical Nav Links */
    
    .menu-links a {
        display: block;
        color: #000;
        text-decoration: none;
        font-size: 1.25rem;
        padding: 12px 0;
        transition: color 0.2s;
    }
    
    .menu-links a:hover {
        color: #0d6efd;
    }
    
    .container-custom {
        width: calc(100% - 90px);
        margin: 0 auto;
    }
    
    .logo {
        width: 280px;
    }
    
    .navbar {
        background-color: var(--brand-clr-bg);
        padding: 20px;
    }
    /* ------------ */
    
    .fullscreen-collapse .nav-container {
        display: flex;
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
        padding-top: 50px;
    }
    
    .fullscreen-collapse .nav-sidebar {
        width: 33.333%;
    }
    
    .fullscreen-collapse .nav-links {
        display: flex;
        flex-direction: column;
    }
    
    .fullscreen-collapse .nav-link {
        padding: 18px 24px;
        text-decoration: none;
        color: var(--text-color);
        border-bottom: 1px solid var(--border-color);
        transition: all 0.3s ease;
        font-weight: 500;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .fullscreen-collapse .nav-link:hover {
        background-color: #e9ecef;
        color: var(--brand-color);
    }
    
    .fullscreen-collapse .nav-link.active {
        background-color: var(--brand-color);
        color: white;
        border-bottom-color: var(--brand-color);
    }
    
    .fullscreen-collapse .nav-link .nav-icon {
        display: none;
    }
    
    .fullscreen-collapse .nav-link.active .nav-icon {
        display: inline-block;
    }
    
    .fullscreen-collapse .nav-icon {
        margin-right: 12px;
        font-size: 18px;
    }
    
    .fullscreen-collapse .content-area {
        width: 66.667%;
        padding: 40px;
        padding: 0px 0px 0px 40px;
    }
    
    .fullscreen-collapse .content-section {
        display: none;
    }
    
    .fullscreen-collapse .content-section.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .fullscreen-collapse .content-title {
        color: var(--brand-color);
        margin-bottom: 24px;
        font-weight: 600;
        font-size: 28px;
    }
    
    .fullscreen-collapse .content-text {
        margin-bottom: 20px;
        color: var(--text-light);
        line-height: 1.7;
    }
    
    .fullscreen-collapse .content-highlight {
        background-color: rgba(39, 57, 127, 0.05);
        border-left: 4px solid var(--brand-color);
        padding: 20px;
        margin: 25px 0;
    }
    
    .product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: 16px;
    }
    
    .product-grid a {
        color: #000;
    }
    
    .product-item {
        text-align: center;
    }
    
    .product-item img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 8px;
        transition: transform 0.4s ease;
    }
    
    .product-item:hover img {
        transform: scale(1.05);
    }
    
    .product-name {
        font-size: 12px;
        font-weight: 500;
        margin-bottom: 0;
        text-align: left;
    }
    
    .product-icon-right {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 0;
    }
    
    .product-icon-right i {
        font-size: 12px;
    }
    
    .product-item {
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }
    
    .product-icon-right {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
    }
    
    .product-icon-right i {
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
        transform: translateX(-5px);
        margin-left: 8px;
    }
    
    .product-item:hover .product-icon-right i {
        opacity: 1;
        transform: translateX(0);
    }
    /* .clients-list-glimse {
  padding: 60px 0;
  background-color: #f9f9f9;
} */
    
    .clients-list-glimse h5 {
        font-size: 18px;
        font-weight: 700;
        color: #27397f;
        /* main brand color */
        margin-bottom: 15px;
    }
    
    .clients-list-glimse ul {
        list-style: none;
        padding: 0;
    }
    
    .clients-list-glimse ul li {
        font-size: 15px;
        color: #333;
        margin-bottom: 8px;
        position: relative;
        padding-left: 15px;
    }
    
    .clients-list-glimse ul li::before {
        content: "•";
        color: #27397f;
        position: absolute;
        left: 0;
        font-size: 18px;
        line-height: 1;
    }
    
    .clients-list-glimse .topmenu-btn span {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        color: #27397f;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-top: 15px;
        font-size: 22px !important;
    }
    /* ===== Banner Section ===== */
    
    .image-banner {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }
    
    .image-banner .banner-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .image-banner .banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(8, 30, 44, 0.45);
    }
    
    .image-banner .banner-content {
        position: absolute;
        top: 38%;
        left: 10%;
        transform: translateY(-50%);
        color: #fff;
        text-align: left;
        z-index: 2;
        animation: fadeIn 1.2s ease forwards;
    }
    
    .image-banner .banner-content h1 {
        font-size: 4rem;
        font-weight: 400;
        padding: 10px 0px 30px 0px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    
    .clr-yellow {
        color: rgb(253, 231, 115);
    }
    
    .image-banner .banner-content p {
        font-size: 18px;
        font-weight: 400;
        color: #f1f1f1;
    }
    
    .dynamic {
        display: inline-block;
        font-size: var(--size);
        font-weight: 800;
        transform-origin: center center;
        text-transform: uppercase;
    }
    /* animation classes controlled by JS */
    
    .in {
        animation: zoomIn 600ms ease forwards;
    }
    
    .out {
        animation: zoomOut 500ms ease forwards;
    }
    
    @keyframes zoomIn {
        from {
            opacity: 0;
            transform: scale(0.8) translateY(6px);
        }
        to {
            opacity: 1;
            transform: scale(1.05) translateY(0);
        }
    }
    
    @keyframes zoomOut {
        from {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
        to {
            opacity: 0;
            transform: scale(0.9) translateY(-6px);
        }
    }
    
    .prefix {
        color: #9fb0c8;
        display: block;
        font-size: clamp(12px, 2.5vw, 14px);
        margin-bottom: 8px;
    }
    /* ----------------------------------------- */
    /* -------------Only-marquee--------------- */
    /* --------------------------------------- */
    
    .cross-ribbon {
        background-color: var(--yellow-clr);
        display: flex;
        align-items: center;
        padding: 15px 0;
        transform: rotate(1deg);
        overflow: hidden;
        position: relative;
        top: -10px;
    }
    
    .marquee {
        display: flex;
        width: 200%;
        overflow: hidden;
        white-space: nowrap;
        position: relative;
    }
    
    .marquee-content {
        display: inline-block;
        font-size: 17px;
        font-weight: 600;
        line-height: 32px;
        padding-right: 30px;
        animation: scroll-right 60s linear infinite;
    }
    
    @keyframes scroll-right {
        0% {
            transform: translateX(-100%);
        }
        100% {
            transform: translateX(0%);
        }
    }
    
    .marquee:hover .marquee-content {
        animation-play-state: paused;
    }
    /* ---------------------------------------- */
    /* --------------Aboutus-section---------- */
    /* -------------------------------------- */
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-section .subtitle {
        font-size: 14px;
        color: #888;
        margin-bottom: 0px;
        letter-spacing: 1px;
    }
    
    .about-section .title {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 45px;
        line-height: 48px;
        text-transform: uppercase;
        color: var(--brand-color);
    }
    
    .about-section img {
        width: 100%;
        border-radius: 12px;
        object-fit: cover;
    }
    
    .about-text-box {
        padding-left: 40px;
    }
    
    .about-text-box p {
        padding: 10px 0;
        color: #555;
    }
    
    .about-text-box h4 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 15px;
        text-transform: capitalize;
    }
    
    .vission-mission-qp-btn {
        background-color: #0f1b2c;
        border: none;
        color: var(--text-color-white);
        font-weight: 500;
        padding: 10px 20px;
        border-radius: 30px;
        display: none;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        transition: background 0.3s;
    }
    
    .btn-custom-white {
        background-color: var(--text-color-white);
        border: none;
        color: #000;
        font-weight: 500;
        padding: 10px 20px;
        border-radius: 30px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        transition: background 0.3s;
    }
    
    .btn-custom {
        background-color: #fcee85;
        border: none;
        color: #000;
        font-weight: 500;
        padding: 10px 20px;
        border-radius: 30px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        transition: background 0.3s;
    }
    
    .btn-custom:hover {
        background-color: #fde773;
        text-decoration: none;
        color: #000;
    }
    
    .stats-section {
        margin-top: 60px;
    }
    
    .stats-section .stat {
        border-right: 1px solid #e0e0e0;
        border-top: 1px solid #e0e0e0;
        border-bottom: 1px solid #e0e0e0;
        text-align: center;
        padding: 45px 0;
    }
    
    .stats-section .stat:last-child {
        border-right: none;
    }
    
    .stats-section .stat h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    .stats-section .stat p {
        color: #555;
        margin: 0;
    }
    /* ---------------------------------- */
    /* --------Products-catlog---------- */
    /* -------------------------------- */
    
    .products-catlog {
        background: var(--bg-color);
        padding-bottom: 40px;
    }
    
    .product-card {
        /* background: var(--card-color); */
        background: #152937;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        padding: 30px 25px;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        color: var(--text-color);
    }
    
    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    }
    
    .img-title-img {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
    }
    
    .img-title-img img {
        width: 110px;
        height: 110px;
        border-radius: 15px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    
    .img-title-img h5 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #fde773;
        margin: 0;
        line-height: 1.4;
    }
    
    .product-descrption {
        margin-top: 40px;
    }
    
    .product-descrption p {
        font-size: 0.85rem;
        color: var(--text-color-white);
        line-height: 1.6;
        margin: 0;
    }
    
    .product-card:hover img {
        transform: scale(1.05);
    }
    
    .read-more-btn {
        margin-top: 25px;
        align-self: flex-start;
        background: var(--brand-color);
        color: #fff;
        padding: 7px 22px;
        border-radius: 30px;
        font-size: 0.8rem;
        text-decoration: none;
        font-weight: 500;
        letter-spacing: 0.3px;
        transition: all 0.3s ease;
    }
    
    .read-more-btn:hover {
        background: #1c2b6e;
        color: #fff;
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .img-title-img {
            flex-direction: column;
            align-items: flex-start;
        }
        .img-title-img img {
            width: 100%;
            height: auto;
        }
        .product-card {
            text-align: left;
        }
    }
    
    .catlog-title {
        color: var(--text-color-white);
        text-align: center;
        font-size: 30px;
        text-transform: uppercase;
        margin-bottom: 0;
        padding: 60px 0;
    }
    /* ---------------------------------- */
    /* --------Sticky-image-section----- */
    /* -------------------------------- */
    /* Sticky Scroll Section */
    
    .scroll-container {
        height: 300vh;
        position: relative;
    }
    
    .sticky-section {
        position: sticky;
        top: 100px;
        height: calc(100vh - 100px);
        background-color: #f4e7a1;
        overflow: hidden;
    }
    
    .content-wrapper {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }
    
    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.5s ease;
        padding: 2rem 0;
    }
    
    .slide.active {
        opacity: 1;
    }
    /* Progress Navigation */
    
    .progress-navigation {
        position: absolute;
        left: 40px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .progress-line-container {
        position: relative;
        height: 220px;
        width: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .progress-line-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 2px;
    }
    
    .progress-line-fill {
        position: absolute;
        width: 100%;
        background-color: #000;
        border-radius: 2px;
        transition: height 0.3s ease;
        height: 0%;
    }
    
    .progress-dot {
        position: absolute;
        width: 16px;
        height: 16px;
        background-color: #f4e7a1;
        border: 3px solid rgba(0, 0, 0, 0.3);
        border-radius: 50%;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 2;
    }
    
    .progress-dot.active {
        background-color: #000;
        border-color: #000;
        width: 20px;
        height: 20px;
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    }
    
    .progress-dot:nth-child(3) {
        top: 0;
    }
    
    .progress-dot:nth-child(4) {
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    .progress-dot:nth-child(5) {
        bottom: 0;
    }
    
    .content-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 3rem;
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .image-container {
        flex: 0 0 45%;
    }
    
    .image-container img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        object-fit: cover;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .text-content {
        flex: 0 0 50%;
    }
    
    .text-content h2 {
        font-size: 2.2rem;
        font-weight: bold;
        color: var(--bg-color);
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .text-content p {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .contact-btn {
        padding: 0.8rem 2rem;
        background-color: #000;
        color: #fff;
        border: none;
        border-radius: 25px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .contact-btn:hover {
        background-color: #333;
    }
    
    @media (max-width: 992px) {
        .content-row {
            flex-direction: column;
            gap: 2rem;
            padding-left: 6rem;
        }
        .text-content h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }
    }
    
    @media (max-width: 576px) {
        .progress-navigation {
            left: 1rem;
        }
        .progress-line-container {
            height: 150px;
        }
        .content-row {
            padding-left: 3rem;
        }
        .text-content h2 {
            font-size: 1.5rem;
        }
        .text-content p {
            font-size: 1rem;
        }
    }
    /* ================= MOBILE NORMAL FLOW ================= */
    
    @media (max-width: 768px) {
        /* Remove sticky behavior */
        .sticky-section {
            position: relative !important;
            height: auto !important;
            top: unset;
            padding-top: 50px;
            margin-top: 40px;
        }
        .scroll-container {
            height: auto !important;
        }
        /* Hide progress navigation */
        .progress-navigation {
            display: none !important;
        }
        /* Slides become normal blocks */
        .slide {
            position: relative !important;
            opacity: 1 !important;
            transform: none !important;
            height: auto !important;
            padding: 0px 0;
        }
        /* Stack content properly */
        .content-row {
            flex-direction: column !important;
            padding: 0 1.2rem !important;
            gap: 1.5rem !important;
        }
        .image-container,
        .text-content {
            flex: 100% !important;
            max-width: 100% !important;
        }
        .image-container img {
            border-radius: 12px;
        }
        .text-content p {
            font-size: 1rem;
        }
        /* Remove extra left spacing you added for dots */
        .content-row.container {
            padding: 0 12px !important;
        }
    }
    /* ---------------------------------- */
    /* ----------Approvel-section------- */
    /* -------------------------------- */
    /* .approvals-section {

} */
    
    .approvals-section {
        padding-top: 80px;
    }
    
    .approvals-header .approvals-title {
        color: var(--text-color-white);
        font-size: 30px;
        text-transform: uppercase;
    }
    
    .approvals-logos .approval-logo {
        max-height: 150px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: var(--light-gray);
        padding: 10px;
        border-radius: 8px;
    }
    
    .approvals-logos .approval-logo:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .approvals-text {
        color: var(--yellow-clr);
        font-weight: 500;
        font-size: 18px;
    }
    /* ---------------------------------- */
    /* ---------Video-animation-gsap---- */
    /* --------------------------------- */
    
    .video-section-down {
        min-height: 100vh;
        text-align: center;
        position: relative;
        z-index: 1;
        background: #fff;
    }
    
    .video-section-down .container {
        width: 95%;
        max-width: 1100px;
        margin: 0 auto;
    }
    
    .video-section-down .video-title {
        margin-bottom: 30px;
        font-size: 3rem;
        color: var(--brand-color);
        text-transform: uppercase;
        font-weight: 700;
    }
    
    .video-section-down .animated-vdo-box {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: scale(0.9);
        /* start slightly smaller */
    }
    
    .video-section-down .animated-vdo-figure {
        position: relative;
        overflow: hidden;
        border-radius: 30px;
        width: 100%;
        max-width: 1100px;
        transition: border-radius 0.5s ease-in-out;
    }
    
    .video-section-down .animated-vdo-figure video {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        border-radius: inherit;
    }
    
    @media (max-width: 991.98px) {
        .video-section-down {
            min-height: auto;
            padding: 40px 0;
        }
        .video-section-down .video-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        /* Remove animation / scaling */
        .video-section-down .animated-vdo-box {
            transform: none;
        }
        /* Remove fancy rounded animation feel */
        .video-section-down .animated-vdo-figure {
            border-radius: 10px;
            transition: none;
        }
        .video-section-down .animated-vdo-figure video {
            border-radius: 10px;
        }
    }
    /* ------------------------------------- */
    /* ------------whychooseus------------- */
    /* ----------------------------------- */
    
    .milestone {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .milstone-box_1,
    .milstone-box_2,
    .milstone-box_3,
    .milstone-box_4 {
        padding: 30px 0px 30px 30px !important;
    }
    
    .all-icons {
        width: 60px;
        height: 60px;
    }
    
    .icons-all img {
        margin-bottom: 10px;
    }
    
    .milstone-box_1 h5 {
        font-size: 1.2rem;
    }
    
    .milstone-box_1,
    .milstone-box_2,
    .milstone-box_3,
    .milstone-box_4 p {
        font-size: 15px;
    }
    
    .milstone-box_1 h5,
    .milstone-box_2 h5,
    .milstone-box_3 h5,
    .milstone-box_4 h5 {
        font-family: "Roboto", sans-serif;
        font-weight: bold;
    }
    
    .milstone-box_1 {
        color: var(--text-color);
    }
    
    .milstone-box_2 {
        background-color: var(--blue-main);
        color: var(--text-color-white);
    }
    
    .milstone-box_3 {
        color: var(--text-color);
    }
    
    .milstone-box_4 {
        background-color: var(--blue-main);
        color: var(--text-color-white);
    }
    
    .milstone-box_4 p {
        padding-right: 15px;
    }
    /* -------------------------------------- */
    /* ------------Footer------------------- */
    /* ------------------------------------ */
    
    .footer {
        background-color: #0f1b2c;
        color: #adb5bd;
        padding-top: 50px;
        padding-bottom: 20px;
    }
    
    .footer a {
        color: #adb5bd;
        text-decoration: none;
    }
    
    .footer a:hover {
        color: #ffffff;
        text-decoration: underline;
    }
    
    .footer-about {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .newsletter .form-control {
        background-color: #1c2a3b;
        border: none;
        color: #ffffff;
    }
    
    .newsletter .btn {
        background-color: #00aaff;
        border: none;
    }
    
    .phone,
    .email {
        font-weight: 500;
    }
    
    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        text-align: center;
        font-weight: bold;
        font-size: 14px;
    }
    
    .footer-bottom {
        border-top: 1px solid #34495e;
        padding-top: 20px;
        margin-top: 30px;
        text-align: center;
        color: #bdc3c7;
    }
    
    .social-icons a:hover {
        color: var(--blue-main);
    }
    /* ---------------------------------- */
    /* ------------FAQ------------------ */
    /* -------------------------------- */
    
    .faq {
        padding: 50px 0px;
    }
    
    .faq h2 {
        font-weight: 700;
        color: var(--brand-color);
        /* brand text */
    }
    
    .accordion-item {
        margin-bottom: 15px;
        background-color: rgba(39, 57, 127, 0.05);
        /* subtle brand color background */
        border-radius: 15px !important;
        border: 1px solid rgba(39, 57, 127, 0.2) !important;
        /* brand border */
    }
    
    .accordion-button:focus {
        z-index: 3;
        outline: 0;
        box-shadow: none !important;
    }
    
    .accordion-button {
        background-color: transparent !important;
        /* subtle brand background */
        color: var(--brand-color) !important;
        font-weight: 500;
        font-size: 1.2rem !important;
        margin-bottom: 0px;
        border: none !important;
        transition: background 0.3s ease;
    }
    
    .accordion-button:not(.collapsed) {
        color: var(--brand-color) !important;
    }
    
    .accordion-body {
        padding: 0 20px 15px !important;
        border: none !important;
        border-radius: 0 0 8px 8px;
        font-size: 15px;
        color: var(--brand-color);
    }
    
    .accordion-button::after {
        display: none !important;
    }
    
    .accordion-button.collapsed i.faq-icon {
        transform: rotate(0deg);
        transition: transform 0.3s ease;
        font-size: 14px !important;
    }
    
    .accordion-button i.faq-icon {
        margin-left: auto;
        transition: transform 0.3s ease;
        color: var(--brand-color);
    }
    
    .accordion-button:not(.collapsed) i.faq-icon {
        transform: rotate(-90deg);
        font-size: 14px !important;
        color: var(--brand-color);
    }
    
    .accordion-button:not(.collapsed) {
        color: var(--brand-color) !important;
    }
    /* ----------------------------------- */
    /* From Uiverse.io by alexmaracinaru (renamed for top menu use) */
    
    .topmenu-btn {
        border: none;
        background: none;
        cursor: pointer;
    }
    
    .topmenu-btn span {
        padding-bottom: 7px;
        letter-spacing: 4px;
        font-size: 14px;
        padding-right: 15px;
        text-transform: uppercase;
    }
    
    .topmenu-btn svg {
        transform: translateX(-8px);
        transition: all 0.3s ease;
    }
    
    .topmenu-btn:hover svg {
        transform: translateX(0);
    }
    
    .topmenu-btn:active svg {
        transform: scale(0.9);
    }
    
    .topmenu-text-underline {
        position: relative;
        color: black;
        padding-bottom: 20px;
    }
    
    .topmenu-text-underline:after {
        content: "";
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #000000;
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }
    
    .topmenu-btn:hover .topmenu-text-underline:after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }
    /* ------------------------------------------ */
    /* ----------------Top-menu-clients--------- */
    
    .parent-clients {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        justify-items: center;
        align-items: center;
        padding: 30px 0;
    }
    
    .top-clients {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .top-clients:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }
    
    .top-clients img {
        width: 180px;
        height: auto;
        max-height: 100px;
        object-fit: contain;
        filter: grayscale(100%);
        transition: filter 0.3s ease, transform 0.3s ease;
    }
    /* .top-clients img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
} */
    /* ----------------------------------------------- */
    /* ---------------clients-section---------------- */
    /* --------------------------------------------- */
    
    .logo-marquee {
        padding: 2.5rem 0;
        position: relative;
    }
    
    .title-clients {
        font-weight: 700;
        color: var(--brand-color);
        text-align: center;
    }
    
    .logo-marquee--gradient {
        background-image: linear-gradient(90deg, #fff 5%, hsla(200, 9%, 93%, 0) 10%), linear-gradient(270deg, #fff 5%, hsla(200, 9%, 93%, 0) 10%);
        position: absolute;
        top: 40px;
        left: 0;
        height: 70px;
        width: 100%;
        z-index: 1;
    }
    
    .logo-marquee--marquee {
        display: flex;
        overflow: hidden;
        user-select: none;
    }
    
    .logo-marquee--marquee-group {
        display: flex;
        flex-shrink: 0;
        width: auto;
        animation: scroll-left 60s linear infinite;
        /* Slower speed */
    }
    
    .logo-marquee--marquee-group img {
        object-fit: contain;
        filter: grayscale(100%);
        height: 50px;
        /* Same height for all logos */
        margin: 0 40px;
    }
    
    @media (max-width: 991.98px) {
        .logo-marquee--marquee-group img {
            height: 56px;
            margin: 0 30px;
        }
    }
    
    @media (max-width: 767.98px) {
        .logo-marquee--marquee-group img {
            height: 48px;
            margin: 0 20px;
        }
    }
    
    @media (prefers-reduced-motion) {
        .logo-marquee--marquee-group {
            animation-play-state: paused;
        }
    }
    
    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
            /* Adjust to avoid jump */
        }
    }
    /* ------------------------------------------------- */
    /* ---------------Building-Housing-wire------------ */
    /* ----------------------------------------------- */
    /* Services Tabs Section */
    
    .services-tabs-wires {
        padding-top: 200px;
    }
    
    .tabs-wires {
        position: sticky;
        top: 200px;
        background-color: #fff;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        overflow: hidden;
        height: fit-content;
    }
    
    .list-with-services {
        list-style-type: none;
        padding: 0;
        margin: 0;
        padding: 0px 30px;
    }
    
    .list-with-services li a {
        color: #333;
    }
    
    .list-with-services li {
        padding: 18px 24px;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        border-bottom: 1px solid #00000026;
    }
    
    .list-with-services li:last-child {
        border-bottom: none;
    }
    
    .list-with-services li:hover {
        background-color: #f8f9fa;
        color: #27397f;
        padding-left: 28px;
    }
    
    .list-with-services li span {
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }
    
    .list-with-services li:hover span {
        opacity: 1;
        transform: translateX(0);
    }
    
    .list-with-services li span i {
        color: #27397f;
        font-size: 14px;
    }
    
    .list-with-services li:first-child span {
        opacity: 1;
        transform: translateX(0);
    }
    
    .list-with-services li:first-child span i {
        color: #fff;
    }
    
    .list-with-services li a.active {
        background-color: transparent !important;
        color: #ffcc00 !important;
        /* yellow text */
    }
    
    .list-with-services li.active span i {
        color: #ffcc00 !important;
        /* yellow icon */
    }
    
    .specification-product {
        padding: 35px 0px;
        color: #333;
    }
    
    .specs-heading {
        font-size: 20px;
        font-weight: 600;
        color: var(--blue-main);
        margin-bottom: 20px;
        display: inline-block;
        padding-bottom: 5px;
        letter-spacing: 0.5px;
    }
    
    .specs-columns {
        display: flex;
        justify-content: space-between;
        gap: 40px;
    }
    
    .specification-product ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .specification-product li {
        margin-bottom: 12px;
        font-size: 15px;
        line-height: 1.6;
        color: #333;
    }
    
    .specification-product li strong {
        color: var(--brand-color);
        font-weight: 600;
        margin-right: 5px;
    }
    
    .left-side-specs,
    .right-side-specs {
        flex: 1;
    }
    
    @media (max-width: 768px) {
        .specs-columns {
            flex-direction: column;
            gap: 20px;
        }
        .specification-product {
            padding: 25px 0;
        }
        .specification-product li {
            font-size: 14px;
        }
    }
    
    .tabs-content-wires {
        margin-bottom: 40px;
    }
    
    .tabs-content-wires h3 {
        font-size: 32px;
        font-weight: 700;
        color: #27397f;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .tabs-content-wires p {
        font-size: 16px;
        line-height: 1.8;
        color: #333;
        margin-bottom: 16px;
    }
    
    .image-service img {
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .applications-service {
        padding: 32px 0px;
    }
    
    .applications-service h5 {
        font-size: 20px;
        font-weight: 600;
        color: #27397f;
        margin-bottom: 20px;
    }
    
    .application-list ul {
        list-style-type: none;
        padding: 0;
        margin: 0 0 16px 0;
        display: flex;
        justify-content: space-between;
    }
    
    .application-list ul li {
        padding: 10px 0 10px 28px;
        color: #333;
        font-size: 15px;
        position: relative;
        line-height: 1.6;
    }
    
    .application-list ul li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #27397f;
        font-weight: 700;
        font-size: 18px;
    }
    
    .application-list p {
        font-size: 15px;
        line-height: 1.7;
        color: #6c757d;
        margin: 0;
        font-style: italic;
    }
    
    .table-services-all {
        padding: 60px 0;
        background-color: #fff;
    }
    
    .padding-adjust-tabs {
        padding-bottom: 80px;
    }
    
    .rwd-table {
        width: 100%;
        border-collapse: collapse;
        background-color: #fff;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        overflow: hidden;
    }
    
    .rwd-table th {
        background-color: #27397f;
        color: #fff;
        padding: 18px 16px;
        text-align: left;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .rwd-table td {
        padding: 16px;
        border-bottom: 1px solid #e9ecef;
        color: #333;
        font-size: 14px;
    }
    
    .rwd-table tbody tr {
        transition: background-color 0.2s ease;
    }
    
    .rwd-table tbody tr:hover {
        background-color: #fdf7f6;
    }
    
    .rwd-table tbody tr:last-child td {
        border-bottom: none;
    }
    /* Default (desktop) — row */
    
    .services-tabs-wires .row {
        display: flex;
        flex-direction: row;
    }
    /* Mobile & tablet (≤ 991.98px) — column reverse */
    
    @media (max-width: 991.98px) {
        .services-tabs-wires .row {
            flex-direction: column-reverse;
        }
    }
    
    @media screen and (max-width: 768px) {
        .list-secs-lv-cables {
            padding-top: 50px;
            padding-bottom: 30px;
        }
        .list-secs-lv-cables h3 {
            font-size: 26px;
            text-transform: capitalize;
        }
        .rwd-table {
            border: 0;
            box-shadow: none;
        }
        .rwd-table thead {
            display: none;
        }
        .rwd-table tr {
            display: block;
            margin-bottom: 20px;
            background-color: #d0d0d0;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        .rwd-table td {
            display: flex;
            justify-content: space-between;
            padding: 14px 16px;
            border-bottom: 1px solid #f8f9fa;
            text-align: right;
        }
        .rwd-table td::before {
            content: attr(data-th);
            font-weight: 600;
            color: #27397f;
            text-align: left;
            flex: 1;
        }
        .rwd-table td:last-child {
            border-bottom: none;
        }
        .applications-service {
            padding: 24px 0;
        }
        .list-with-services li {
            font-size: 14px;
            padding: 16px 20px;
        }
        table tr:first-child {
            display: none;
        }
        table tr td:first-child {
            background-color: #011627;
            color: #fff !important;
        }
        table tr td:first-child::before {
            color: #fff !important;
        }
    }
    
    @media screen and (max-width: 480px) {
        .tabs-content-wires h3 {
            font-size: 26px;
            margin-bottom: 5px;
        }
        .tabs-content-wires p {
            margin-bottom: 0;
        }
        .image-service {
            gap: 16px;
        }
        .image-service img {
            height: auto;
            width: 100%;
        }
    }
    /* ----------------------------------------------- */
    /* -----------------Aboutus-page----------------- */
    /* --------------------------------------------- */
    
    .va-about-section {
        padding-top: 200px;
    }
    
    .va-about-left h1 {
        font-size: 160px;
        font-weight: 600;
        line-height: 1;
        margin-bottom: 20px;
        color: var(--blue-main);
    }
    
    .presence-heading {
        font-size: px;
        font-weight: 800;
        color: var(--blue-main);
    }
    
    .va-about-left p {
        font-size: 20px;
        font-weight: 500;
        color: #333;
        margin-bottom: 0;
    }
    
    .va-presence {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 2px solid #f0f0f0;
    }
    
    .va-presence h5 {
        font-size: 18px;
        font-weight: 600;
        color: var(--blue-main);
        margin-bottom: 8px;
    }
    
    .va-presence p {
        font-size: 15px;
        color: #555;
        font-weight: 500;
        line-height: 1.6;
    }
    
    .va-about-right h2 {
        font-size: 32px;
        font-weight: 700;
        color: var(--blue-main);
        line-height: 1.3;
        margin-bottom: 25px;
        text-transform: uppercase;
    }
    
    .va-about-right p {
        font-size: 16px;
        color: #555;
        margin-bottom: 0;
    }
    
    .the-va-factory {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .the-va-factory img {
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        /* subtle depth effect */
        transition: transform 0.5s ease, box-shadow 0.5s ease;
    }
    
    .continue-va-about-section p,
    .quality-va p {
        color: #555;
        line-height: 1.6;
    }
    
    .quality-va {
        padding: 50px 0;
    }
    
    .quality-va .quality-meets-title {
        color: var(--blue-main);
        font-weight: 700;
    }
    
    .va-experince {
        display: flex;
        align-items: end;
    }
    /* ---certifications--- */
    
    .va-certifications {
        background: #fff;
        font-family: "Inter", sans-serif;
    }
    
    .certificate-title-va {
        color: var(--blue-main);
        font-weight: 700;
    }
    
    .section-subtitle {
        font-size: 16px;
        color: #666;
        margin-bottom: 40px;
    }
    
    .cert-card {
        display: block;
        text-decoration: none;
        color: inherit;
        transition: all 0.3s ease;
    }
    
    .cert-card:hover {
        transform: translateY(-5px);
    }
    
    .cert-image {
        width: 100%;
        object-fit: cover;
        border-radius: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }
    
    .cert-card:hover .cert-image {
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }
    
    .cert-title {
        font-size: 15px;
        font-weight: 600;
        color: #333;
        text-align: center;
        margin-top: 12px;
    }
    
    .vision-mission {
        padding: 80px 0;
        background-color: var(--brand-clr-bg);
    }
    
    .vision-mission h3 {
        font-size: 32px;
        font-weight: 700;
        color: var(--blue-main);
        margin-bottom: 15px;
        text-align: left;
    }
    
    .vision-mission p {
        font-size: 16px;
        line-height: 1.8;
        color: var(--text-light);
        text-align: justify;
        margin: 0;
    }
    
    .vision-mission .col-lg-6 {
        padding: 20px 30px;
    }
    
    @media (max-width: 992px) {
        .vision-mission {
            padding: 60px 20px;
        }
        .vision-mission h3 {
            font-size: 28px;
            text-align: center;
        }
        .vision-mission p {
            font-size: 15px;
            text-align: left;
        }
        .vision-mission .col-lg-6 {
            padding: 15px;
        }
    }
    /* ----------------------------------- */
    /* -------------CSR------------------ */
    /* --------------------------------- */
    
    .csr-content h2 {
        color: var(--blue-main);
        font-weight: 600;
    }
    
    .csr-isec {
        padding-top: 200px;
    }
    
    .csr-boxs {
        padding-top: 80px;
        padding-bottom: 120px;
    }
    
    .box-1 {
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        overflow: hidden;
    }
    
    .box-1:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }
    
    .title-box-style {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        border-bottom: 1px solid #eaeaea;
    }
    
    .title-box-style h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #222;
        margin: 0;
        flex: 1;
        padding-right: 20px;
        line-height: 1.4;
    }
    
    .title-box-style img {
        width: 50%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
    }
    
    .box-style-css-content {
        padding: 24px;
    }
    
    .box-style-css-content p {
        color: #555;
        font-size: 15px;
        line-height: 1.7;
        margin: 0;
    }
    /* ----------------------------------- */
    /* ------------clients--------------- */
    /* --------------------------------- */
    
    .va-clients-section {
        color: var(--text-color);
        padding-top: 200px;
        padding-bottom: 80px;
    }
    
    .va-clients-wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 18px;
    }
    
    .va-clients-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .va-clients-header h2 {
        margin: 0;
        color: var(--brand-color);
        font-weight: 700;
        font-size: 1.6rem;
        letter-spacing: 0.2px;
    }
    
    .va-clients-sub {
        color: var(--text-light);
        font-size: 0.95rem;
    }
    
    .va-clients-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    @media (min-width: 768px) {
        .va-clients-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (min-width: 1200px) {
        .va-clients-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }
    
    .va-client-card {
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        padding: 16px;
        min-height: 150px;
        display: flex;
        flex-direction: column;
        transition: transform 0.18s ease, box-shadow 0.18s ease;
    }
    
    .va-client-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(39, 57, 127, 0.08);
    }
    
    .va-card-title {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
    }
    
    .va-card-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--yellow-clr);
        flex-shrink: 0;
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    }
    
    .va-card-title h3 {
        margin: 0;
        font-size: 1rem;
        color: var(--blue-main);
        font-weight: 600;
    }
    
    .va-card-desc {
        font-size: 0.92rem;
        color: var(--text-light);
        margin-bottom: 8px;
    }
    
    .va-client-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-top: auto;
    }
    
    .va-client-list li {
        font-size: 0.92rem;
        color: var(--text-color);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .va-clients-note {
        margin-top: 18px;
        font-size: 0.88rem;
        color: var(--text-light);
        text-align: center;
    }
    
    .va-clients-section .btn-va-outline {
        border-color: var(--brand-color);
        color: var(--brand-color);
        background: transparent;
        padding: 0.28rem 0.7rem;
        font-size: 0.88rem;
        border-radius: 8px;
    }
    /* ===============================
   CAREER SECTION
   =============================== */
    
    .va-career {
        padding: 200px 0;
        color: var(--text-color);
    }
    
    .va-career .career-content {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }
    
    .va-career h2 {
        color: var(--blue-main);
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }
    
    .va-career .intro-text {
        color: var(--text-light);
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 2rem;
    }
    
    .va-career .career-apply h4 {
        color: var(--blue-main);
        font-weight: 600;
        margin-bottom: 0.8rem;
    }
    
    .va-career .career-apply p {
        color: var(--text-light);
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .va-career .career-mail {
        display: inline-block;
        background-color: var(--blue-main);
        color: var(--text-color-white);
        padding: 12px 25px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .va-career .career-mail:hover {
        background-color: var(--yellow-clr);
        color: var(--blue-main);
        transform: scale(1.05);
    }
    /* ---------------------------------------- */
    /*----------------- blogs----------------- */
    /* -------------------------------------- */
    
    .blog-banner {
        padding-top: 200px;
        padding-bottom: 80px;
    }
    
    .blog-banner h2 {
        color: var(--blue-main);
        font-weight: 700;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .blog-banner .blob-banner-content-text h3 {
        font-size: 18px;
        font-weight: bold;
    }
    
    .blog-banner .blob-banner-content {
        background-color: #f1f1f1;
        margin-bottom: 20px;
    }
    
    .blog-banner .blob-banner-content .blob-banner-content-text {
        padding: 15px 15px 25px;
    }
    
    .blog-banner .blob-banner-content-text a {
        padding: 7px 15px;
        background-color: #00205c;
        color: #fff;
        text-decoration: none;
        border: 1px solid transparent;
    }
    
    .blog-banner .blob-banner-content-text a:hover {
        background-color: transparent;
        color: #00205c;
        border: 1px solid #00205c;
        transition: 0.8s ease-in-out;
        border-radius: 50px 50px 50px 50px;
    }
    
    .blogs-banner {
        padding-top: 200px;
        padding-bottom: 80px;
    }
    /* -------------------------------------------- */
    /* ----------------Factory-tour--------------- */
    /* ------------------------------------------ */
    
    .factory-tour-va {
        padding-top: 200px;
        padding-bottom: 80px;
    }
    
    .title-factory h2 {
        color: var(--blue-main);
        font-weight: 700;
        margin-bottom: 30px;
        text-align: center;
        text-transform: uppercase;
    }
    
    .factory-tour-va .video-wrapper {
        position: relative;
        width: 100%;
        padding-top: 40%;
        /* 16:9 aspect ratio (9 / 16 = 0.5625) */
        overflow: hidden;
        border-radius: 12px;
    }
    
    .factory-tour-va .factory-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        transition: transform 0.6s ease, box-shadow 0.6s ease;
    }
    
    .factory-tour-va .factory-video:hover {
        transform: scale(1.02);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    /* ------------------------------------------- */
    /* ---------------Fire-survival-cables------- */
    /* ----------------------------------------- */
    
    .video-fire-cables {
        padding-top: 80px 0;
    }
    
    .video-fire-cables-wrapper {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    .video-fire-cables-video {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
    }
    
    .title-fire-survival-cables-video {
        padding: 80px 0;
    }
    
    .fire-content-list-specs {
        max-width: 1000px;
        margin: 0 auto;
        color: var(--text-color);
    }
    
    .fire-content-list-specs h3 {
        color: var(--blue-main);
        font-size: 26px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 30px;
        text-transform: uppercase;
    }
    
    .fire-content-list-specs ul {
        list-style-type: disc;
        padding-left: 20px;
        line-height: 1.8;
    }
    
    .fire-content-list-specs li {
        font-size: 16px;
        color: var(--text-light);
        margin-bottom: 12px;
        transition: all 0.3s ease;
    }
    
    .list-secs-lv-cables {
        padding-top: 80px;
        padding-bottom: 30px;
        color: var(--blue-main);
        font-size: 26px;
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
    }
    /* Responsive  */
    
    .offcanvas-body {
        display: none !important;
    }
    /* Only mobile */
    
    @media (min-width: 992px) {
        .m-top-info {
            display: none;
        }
    }
    
    @media (max-width: 992px) {
        .iso-and-icon {
            display: none !important;
        }
        .contact-info.d-flex {
            display: none !important;
        }
        .fullscreen-collapse .nav-container {
            display: none !important;
        }
        .offcanvas-body {
            display: flex !important;
            flex-direction: column;
        }
        .dropdown-menu {
            transform: translate3d(0px, 0px, 0px) !important;
        }
        .navbar-nav .dropdown-menu {
            position: static !important;
        }
        .fullscreen-collapse .nav-link.active {
            background-color: var(--brand-color);
            color: #fff !important;
        }
        .fullscreen-collapse .nav-link {
            padding: 10px 24px;
            text-decoration: none;
            color: var(--text-color);
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
            display: flex;
            justify-content: space-between;
        }
        .image-banner .banner-content h1 {
            font-size: 2rem;
            font-weight: 400;
            padding: 10px 0px 30px 0px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .image-banner .banner-content {
            position: absolute;
            top: 38%;
            left: 5%;
            transform: translateY(-50%);
            color: #fff;
            text-align: left;
            z-index: 2;
            animation: fadeIn 1.2s ease forwards;
        }
        .about-section .title br {
            display: none;
        }
        .about-text-box {
            padding-left: 0px;
        }
        .about-text-box h4 {
            margin-bottom: 0px;
        }
        .about-section .title {
            font-size: 26px;
            line-height: 36px;
            text-transform: capitalize;
        }
        .video-section-down {
            padding-top: 0px;
        }
        .video-section-down .video-title {
            font-size: 26px;
            line-height: 36px;
            text-transform: capitalize;
        }
        .video-section-down .animated-vdo-figure {
            border-radius: 12px;
            max-width: 95%;
        }
        .video-section-down {
            min-height: auto;
        }
        .video-section-down .animated-vdo-figure video {
            width: 100%;
            height: 35vh;
            display: block;
            object-fit: cover;
            border-radius: inherit;
        }
        .catlog-title br {
            display: none;
        }
        .catlog-title {
            font-size: 26px;
            line-height: 36px;
            text-transform: capitalize;
        }
        .product-card {
            padding: 20px;
            height: auto;
            border: 1px solid;
            background: #152937;
        }
        .product-descrption {
            margin-top: 12px;
        }
        .img-title-img h5 {
            padding-top: 12px;
            font-size: 20px;
        }
        .milestone {
            padding-top: 30px;
            padding-bottom: 30px;
        }
        .faq {
            padding: 50px 0px 0;
        }
        .va-about-right h2 {
            font-size: 26px;
            margin-bottom: 8px;
            text-transform: capitalize;
        }
        .va-about-right p br {
            display: none;
        }
        .va-about-right h2 br {
            display: none;
        }
        .certificate-title-va {
            font-size: 26px;
        }
        .the-va-factory {
            padding-top: 25px;
            padding-bottom: 25px;
        }
        .the-va-factory img {
            border-radius: 12px;
            height: 300px;
            width: 100%;
            object-fit: cover;
        }
        .quality-va {
            padding: 50px 0 0;
        }
        .quality-va img {
            border-radius: 12px;
            height: 300px;
            width: 100%;
            object-fit: cover;
        }
        .va-about-section,
        .csr-isec {
            padding-top: 130px;
        }
        .csr-content h2 {
            color: var(--blue-main);
            font-weight: 600;
            padding: 12px 0;
        }
        .title-box-style {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            padding: 20px 10px;
            border-bottom: 1px solid #eaeaea;
        }
        .title-box-style img {
            width: 100%;
            height: unset;
            object-fit: cover;
            border-radius: 8px;
        }
        .title-box-style h3 {
            margin-bottom: 12px;
            text-align: center;
        }
        .csr-boxs {
            padding-top: 40px;
            padding-bottom: 40px;
        }
        .va-clients-section {
            padding-top: 130px;
            padding-bottom: 40px;
        }
        .va-clients-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1.25rem;
            text-align: center;
        }
        .va-clients-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 16px;
        }
        .va-career {
            padding: 130px 0 50px;
            color: var(--text-color);
        }
        .factory-tour-va {
            padding: 130px 0 50px;
        }
        .blog-banner {
            padding: 130px 0 50px;
        }
        .blog-banner h2 {
            color: var(--blue-main);
            font-weight: 700;
            margin-bottom: 0px;
            text-align: center;
        }
        .copy-rights {
            padding-bottom: 20px;
        }
        .dropdown-item {
            padding: 10px 8px!important;
        }
        .cert-title {
            font-size: 18px;
        }
        .services-tabs-wires {
            padding-top: 130px;
        }
        .application-list ul {
            list-style-type: none;
            padding: 0;
            margin: 0 0 16px 0;
            display: flex;
            justify-content: space-between;
            flex-direction: column;
            gap: 0px;
        }
        .application-list ul li {
            padding: 10px 0 0px 28px;
            font-size: 16px;
        }
        .title-fire-survival-cables-video {
            padding: 80px 0 40px;
        }
        .blogs-banner {
            padding-top: 130px;
            padding-bottom: 80px;
        }
        .blogs-banner .text-center h6 {
            margin-bottom: 20px !important;
        }
        .m-info-wrap {
            padding: 30px;
            margin-top: 30px;
        }
        /* Certification text */
        .m-info.cert {
            /* text-align: center; */
            font-size: 13px;
            font-weight: 600;
            color: #0d2b52;
            margin-bottom: 12px;
            line-height: 1.5;
        }
        /* Contact rows */
        .m-info.contact {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            margin-bottom: 10px;
        }
        /* Circular bordered icon */
        .icon-circle {
            width: 36px;
            height: 36px;
            border: 1.8px solid #0d2b52;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0d2b52;
            font-size: 14px;
            flex-shrink: 0;
        }
        /* Text */
        .m-info.contact .text {
            font-size: 14px;
            font-weight: 600;
            color: #333;
        }
        .fixed-top {
            padding: 15px 0 !important;
        }
        .approvals-logos .approval-logo {
            max-height: 100px;
        }
        .va-experince {
            display: flex;
            align-items: end;
            justify-content: center;
        }
        .va-experince img {
            width: 60%;
        }
    }