/* =========================
   Variables
========================= */
:root {
    /* Colors */
    --color-primary: #2d398b;
    --color-secondary: #fc0002;
    --color-secondary-alt: #fb0200;
    --color-text: #3b3b3b;
    --color-heading-muted: #4f637e;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-light: #f8f9fa;
    --color-overlay: rgba(0, 0, 0, 0.3);
    --color-border: #e0e0e0;
    --color-whatsapp: #25d366;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Play', sans-serif;

    /* Font Sizes */
    --fs-xs: 14px;
    --fs-sm: 16px;
    --fs-md: 18px;
    --fs-lg: 20px;
    --fs-xl: 28px;
    --fs-xxl: 50px;

    /* Font Weights */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;

    /* Spacing & Dimensions */
    --container-width: 1320px;
    --header-top-height: 56px;
    --section-gap: 50px;

    /* Transitions */
    --transition-default: all 0.3s ease;
}

/* =========================
   Reset
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.5;
    background-color: var(--color-white);
    overflow-x: hidden;
}

body.overflow-hidden {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-default);
}

ul {
    list-style: none;
}

/* =========================
   Typography
========================= */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--color-white);
}

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

.font-bold {
    font-weight: var(--fw-bold);
}

/* =========================
   Common Components
========================= */
.container {
    width: 1320px;
    margin: 0 auto;
}

.section-padding {
    padding: var(--section-gap) 0;
}

.bg-light {
    background-color: var(--color-light);
}

.bg-white {
    background-color: var(--color-white);
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.align-center {
    align-items: center;
}

.col-6 {
    width: 50%;
    padding: 0 15px;
}

.grid-container {
    display: grid;
}

.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.gap-40 {
    gap: 40px;
}

.gap-82 {
    gap: 82px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.rounded-8 {
    border-radius: 8px;
}

.shadow {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.img-fluid {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.section-title {
    font-family: var(--font-secondary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-xl);
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: var(--color-secondary);
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    font-family: var(--font-secondary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-sm);
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-default);
    border: none;
    white-space: nowrap;
}

.products-section .product-card-overlay .btn {
    min-width: 100px;
    height: 30px;
    padding: 6px 14px;
    font-size: 12px;
}

.products-section>.container>.text-center .btn {
    width: 163px;
    height: 50px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
}

/* =========================
   Header
========================= */
.main-header {
    width: 100%;
    position: relative;
    background-color: var(--color-white);
    z-index: 1000;
}

.top-bar {
    background-color: var(--color-primary);
    height: var(--header-top-height);
    color: var(--color-white);
    display: flex;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-md);
}

.info-item .icon {
    width: 28px;
    height: 28px;
}

.info-item a {
    color: inherit;
    text-decoration: none;
}

.top-social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-box {
    width: 30px;
    height: 30px;
    background-color: var(--color-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-default);
}

.social-box img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.social-box:hover {
    transform: translateY(-2px);
    background-color: var(--color-light);
}

.nav-container {
    padding-top: 15px;
    position: relative;
}

.nav-brand-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;

    @media(max-width : 400px) {
        gap: 15px;
    }
}

.logo {
    width: 393px;
    height: auto;
    object-fit: contain;
}

.brand-extra-images {
    display: flex;
    align-items: center;
    gap: 12px;
}

.extra-img-1 {
    width: 67px;
    height: 66px;
    object-fit: contain;

    @media(max-width : 500px) {
        width: auto;
        height: auto;
    }
}

.extra-img-2 {
    width: 102px;
    height: 84px;
    object-fit: contain;

    @media(max-width : 500px) {
        width: auto;
        height: auto;
    }
}

.nav-divider-line {
    width: 100%;
    height: 1px;
    background-color: var(--color-border);
    margin: 20px 0 0;
}

.nav-menu {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px 0;
    background-color: var(--color-primary);
    transition: var(--transition-default);
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-list {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: nowrap;
}

.nav-link {
    font-family: var(--font-secondary);
    font-size: var(--fs-lg);
    color: var(--color-text);
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-top: 2px solid var(--color-secondary);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-default);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    color: var(--color-text);
    transition: var(--transition-default);
}

.dropdown-menu li a:hover {
    background-color: var(--color-light);
    color: var(--color-secondary);
    padding-left: 25px;
}

@media (min-width: 1025px) and (hover: hover) {
    .dropdown:hover .arrow-icon {
        transform: rotate(0deg);
    }
}

.dropdown:hover .arrow-icon {
    transform: rotate(0deg);
}

.nav-link.active,
.nav-link:hover {
    color: var(--color-secondary);
}

.arrow-icon {
    width: auto;
    height: auto;
    transform: rotate(180deg);
}

/* =========================
   Hero
========================= */
.hero-section {
    position: relative;
    height: 662px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--color-overlay);
}

.hero-content {
    text-align: left;
    color: var(--color-white);
    max-width: 800px;
    padding-top: 100px;
}

.hero-subtitle {
    font-size: var(--fs-xl);
    /* 28px */
    font-family: var(--font-primary);
    text-transform: capitalize;
    margin-bottom: 15px;
    font-weight: var(--fw-regular);
}

.hero-title {
    font-family: var(--font-secondary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-xxl);
    /* 50px */
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-line {
    width: 43px;
    height: 3px;
    background-color: var(--color-secondary);
    margin-bottom: 25px;
}

.hero-description {
    font-size: var(--fs-lg);
    /* 20px */
    font-weight: var(--fw-medium);
    max-width: 624px;
    line-height: 1.4;
}

/* =========================
   Why Choose
========================= */
.why-choose-section {
    background-color: var(--color-white);
    padding-top: 75px;
}

.why-choose-header {
    text-align: center;
    max-width: 1075px;
    margin: 0 auto 60px;
}

.section-main-heading {
    font-family: var(--font-secondary);
    font-size: 40px;
    color: #4f637e;
    text-transform: capitalize;
    letter-spacing: -1px;
    line-height: 50px;
    text-align: center;
    margin-bottom: 20px;
}

.section-description {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.5;
    text-align: center;
    max-width: 1075px;
    margin: 0 auto 60px;
}

.why-choose-divider {
    width: 58px;
    height: 2px;
    background-color: var(--color-secondary);
    margin: 0 auto 25px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 33px;
}

.why-choose-card {
    border: 1px solid #ededed;
    border-radius: 16px;
    padding: 25px;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-choose-icon {
    position: relative;
    width: 58px;
    height: 58px;
    margin-bottom: 30px;
}

.why-choose-icon .icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.why-choose-icon .icon-img {
    position: absolute;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.why-choose-card-title {
    font-family: var(--font-secondary);
    font-size: 25px;
    color: #4f637e;
    margin-bottom: 16px;
    line-height: 1.2;
    text-align: left;
}

.why-choose-card-text {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.5;
    text-align: justify;
}

/* =========================
   Welcome / About
========================= */
.about-section {
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 65px;
    align-items: center;
}

@media (min-width: 1236px) {
    .about-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

.section-label {
    font-family: var(--font-secondary);
    font-size: 20px;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-left-heading {
    font-family: var(--font-secondary);
    font-size: 40px;
    color: #4f637e;
    text-transform: capitalize;
    letter-spacing: -1.5px;
    line-height: 50px;
    text-align: left;
    margin-bottom: 20px;
}

.section-body-text {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-text);
    line-height: 30px;
    text-align: justify;
    margin-bottom: 30px;
}

.section-body-text p {
    margin-bottom: 20px;
}

.section-body-text p:last-child {
    margin-bottom: 0;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 95%;
    /* adjusted height */
}

.about-image-bg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32.6%;
    /* 188/576 */
    height: 82.3%;
    /* 510/620 */
    background-color: #f2f2f2;
    z-index: 0;
}

.about-video-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 89.6%;
    /* 516/576 */
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-color: #000;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video-poster {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.about-video-poster img {

    width: auto;
    height: auto;
    max-width: none;
    object-fit: cover;
}

.about-video-poster.hidden {
    display: none;
}

.about-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 66px;
    z-index: 2;
    cursor: pointer;
}

.about-play-button .play-button-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 47px;
    height: 47px;
    object-fit: contain;
}

.about-play-button .play-button-icon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-play-button.hidden {
    display: none;
}

/* =========================
   Our Products
========================= */
.products-section {
    background-color: var(--color-white);
}

.products-desc {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 30px;
    color: var(--color-text);
    text-align: center;
    max-width: 1237px;
    margin: 0 auto 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.product-card {
    position: relative;
    width: 100%;
    aspect-ratio: 287 / 274;
    min-height: 180px;
    background-color: #cdeaf8;
    overflow: hidden;
}

.product-card-image {
    position: absolute;
    inset: 4% 6%;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-img-1,
.card-img-2,
.card-img-3,
.card-img-4,
.card-img-5,
.card-img-6,
.card-img-7,
.card-img-8 {
    inset: 4% 6%;
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(45, 57, 139, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: var(--color-white);
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px 20px 30px;
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.product-card-title {
    font-family: var(--font-secondary);
    font-size: 25px;
    font-weight: var(--fw-bold);
    line-height: 26px;
    text-transform: capitalize;
    margin-bottom: 20px;
    color: var(--color-white);
}

/* =========================
   Data / Stats
========================= */
.data-section {
    position: relative;
    padding: 80px 0;
    color: var(--color-white);
    overflow: hidden;
}

.data-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.data-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.data-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 9, 74, 0.7);
    z-index: 1;
}

.data-section .container {
    position: relative;
    z-index: 2;
}

.data-content {
    text-align: center;
    max-width: 1239px;
    margin: 0 auto;
}

.data-heading {
    font-family: var(--font-secondary);
    font-size: 38px;
    font-weight: var(--fw-bold);
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 30px;
    text-transform: capitalize;
}

.data-desc {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 30px;
    max-width: 972px;
    margin: 0 auto 80px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.data-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 140px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 70px;
    font-weight: var(--fw-bold);
    line-height: 1;
    color: var(--color-white);
    margin-bottom: 20px;
}

.stat-label {
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: var(--fw-bold);
    color: var(--color-white);
}

/* =========================
   Our Industries
========================= */
.industries-section {
    background-color: var(--color-white);
}

.section-main-heading {
    font-family: var(--font-secondary);
    font-size: 40px;
    font-weight: var(--fw-bold);
    color: var(--color-heading-muted);
    text-transform: capitalize;
    margin-bottom: 20px;
}

.industries-desc {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 30px;
    color: var(--color-text);
    text-align: center;
    max-width: 1237px;
    margin: 0 auto 60px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.industry-card {
    text-align: center;
}

.industry-image {
    position: relative;
    width: 100%;
    aspect-ratio: 231 / 404;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 32px;

    @media(max-width : 768px) {
        margin-bottom: 12px;
    }
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.industry-card:hover .industry-image img {
    filter: grayscale(0%);
}

.industry-image.img-crop-2 img {
    object-position: center center;
}

.industry-image.img-crop-5 img {
    object-position: center center;
}

.industry-name {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: var(--fw-regular);
    color: var(--color-text);
    text-align: center;
}

/* =========================
   Mission / Vision / Values
========================= */
.mvv-section {
    background-color: var(--color-white);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background-color: #ffffff;
    border: 1px solid #e0e4ef;
    padding: 38px 37px;
    min-height: 431px;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.mvv-card:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.mvv-card-title {
    font-family: var(--font-secondary);
    font-size: 25px;
    font-weight: var(--fw-bold);
    color: #4f637e;
    margin-bottom: 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.mvv-card:hover .mvv-card-title {
    color: var(--color-white);
}

.mvv-card-text {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.7;
    margin-top: 115px;
    transition: color 0.3s ease;
    text-align: justify;
}

.mvv-card:hover .mvv-card-text {
    color: var(--color-white);
}

/* =========================
   Brands
========================= */
.brands-slider {
    width: 100%;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.brands-slider::-webkit-scrollbar {
    display: none;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 36px;
}

.brand-item {
    width: 280px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    flex-shrink: 0;
}

@keyframes brand-marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.brand-marquee {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    animation: brand-marquee-scroll 15s linear infinite;
}

@media (max-width: 768px) {
    .brands-slider {
        padding-bottom: 10px;
    }

    .brands-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 16px;
        width: max-content;
    }

    .brand-item {
        scroll-snap-align: start;
        flex-shrink: 0;
        width: 200px;
        height: 100px;
    }
}

.brand-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* =========================
   Footer
========================= */
.main-footer {
    background-color: #0c1874;
    color: var(--color-white);
}

.footer-red-bar {
    width: 100%;
    height: 11px;
    background-color: var(--color-secondary);
}

.footer-top {
    padding: 83px 0 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

@media (min-width: 1280px) {
    .footer-grid {
        gap: 131px;
    }
}

.footer-heading {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: var(--fw-bold);
    color: var(--color-white);
    margin-bottom: 12px;
    line-height: normal;
    white-space: nowrap;
}

.footer-divider {
    width: 36px;
    height: 2px;
    background-color: var(--color-secondary);
    margin-bottom: 0;
}

.footer-links-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
}

.footer-links-list li a {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-white);
    text-decoration: none;
    line-height: 29px;
    display: block;
    transition: opacity 0.2s;
}

.footer-links-list li a:hover {
    opacity: 0.7;
}

.footer-contact-list {
    margin-top: 24px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;

}

.footer-contact-list li {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-white);
    line-height: 29px;
    white-space: nowrap;

    &:nth-child(1) {
        font-weight: bold;
        font-size: 14px;
    }
}

.footer-contact-list li.footer-spacer {
    /* margin-top: 14px; */
}

.footer-contact-list li a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom {
    background-color: var(--color-white);
    padding: 0;
    height: 85px;
    display: flex;
    align-items: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom-logo img {
    height: auto;
    width: auto;
    object-fit: contain;
}

.copyright {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #3b3b3b;
    text-align: center;
    flex: 1;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.social-icon {
    width: 30px;
    height: 30px;
    background-color: var(--color-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-default);
}

.social-icon:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.social-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* =========================
   Floating Elements
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 68px;
    height: 68px;
    display: block;
    z-index: 1000;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 68px;
    height: 68px;
    display: block;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px) {
    :root {
        --section-gap: 40px;
    }

    .data-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-gap: 30px;
    }

    .data-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    :root {
        --section-gap: 25px;
    }

    .data-section {
        padding: 40px 0;
    }
}

@media (max-width: 1280px) {
    .container {
        max-width: 95%;
        width: auto;
    }

    .top-bar .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-section .container {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .nav-list {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .top-bar .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
        width: 100%;
        background-color: var(--color-white);
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1100;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        padding: 15px 0 100px;
        border-top: 1px solid var(--color-border);
        height: calc(100vh - 100%);
        min-height: 280px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        text-align: center;
        background-color: var(--color-white);
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        padding: 15px 0;
        justify-content: center;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-divider-line {
        display: none;
    }

    /* Mobile dropdown inline */
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        padding: 0;
        min-width: 100%;
        background-color: #f9f9f9;
    }

    .dropdown.active .dropdown-menu {
        max-height: 400px;
        border-top: 2px solid var(--color-secondary);
    }

    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-menu li a {
        font-family: var(--font-secondary);
        font-size: 17px;
        color: var(--color-text);
        padding: 14px 20px;
        text-align: center;
        border-bottom: none;
        display: block;
    }

    .dropdown-menu li a:hover {
        color: var(--color-secondary);
        background-color: transparent;
        padding-left: 20px;
    }

    .dropdown.active .nav-link {
        color: var(--color-secondary);
    }



    .arrow-icon {
        transform: rotate(180deg) !important;
    }

    .dropdown.active .arrow-icon {
        transform: rotate(0deg) !important;
    }

    .mobile-menu-toggle {
        display: block;
        /* Show next to logos */
    }

    .nav-brand-area {
        padding-bottom: 20px;
    }

    .logo {
        width: 300px;
    }

    .brand-extra-images img {
        height: 50px;
    }

    .brand-extra-images {
        gap: 10px;
    }

    /* Hero Responsive */
    .hero-section {
        height: 500px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-description {
        font-size: 18px;
        max-width: 100%;
    }

    /* Why Choose Responsive */
    .why-choose-section {
        padding-top: 55px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-main-heading {
        font-size: 32px;
        line-height: 40px;
    }

    .why-choose-card-title {
        font-size: 22px;
    }

    /* About Responsive */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
        padding-bottom: 0;
        height: 450px;
    }

    .about-video-container {
        width: 100%;
        height: 100%;
    }

    .about-image-bg {
        display: none;
    }

    .section-left-heading {
        font-size: 32px;
        line-height: 40px;
    }

    .about-content {
        text-align: center;
    }

    .about-content .section-left-heading,
    .about-content .section-body-text {
        text-align: center;
    }

    /* Data Responsive */
    .data-heading {
        font-size: 30px;
    }

    .data-desc {
        margin-bottom: 50px;
    }

    .data-stats {
        flex-direction: column;
        gap: 40px;
    }

    .stat-number {
        font-size: 50px;
    }

    .stat-label {
        font-size: 24px;
    }

    /* MVV Responsive */
    .mvv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mvv-card {
        min-height: auto;
        padding: 35px 30px;
    }

    .mvv-card-text {
        margin-top: 30px;
    }

    /* Products Responsive */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Industries Responsive */
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .footer-heading {
        white-space: normal;
    }

    .footer-top {
        padding: 50px 0 40px;
    }


    .footer-bottom {
        height: auto;
        padding: 20px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-bar {
        height: 30px;
    }

    .top-bar .container {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }

    .contact-info {
        flex-direction: row;
        gap: 10px;
        flex: 1;
        justify-content: space-between;
    }

    .nav-container {
        padding-top: 8px;
    }

    .nav-brand-area {
        padding-bottom: 8px;
    }

    .nav-menu {
        height: calc(100vh - 100%) !important;
        min-height: calc(100vh - 100%) !important;
    }

    .info-item {
        font-size: 12px;
        gap: 5px;
    }

    .info-item .icon {
        width: 18px;
        height: 18px;
    }

    .top-social-icons {
        display: none;
    }

    .brand-extra-images img {
        height: 36px;
    }

    .brand-extra-images {
        gap: 8px;
    }

    .logo {
        width: 200px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .why-choose-section {
        padding-top: 45px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-main-heading {
        font-size: 28px;
        line-height: 36px;
    }

    .section-left-heading {
        font-size: 28px;
        line-height: 36px;
    }

    .about-image-wrapper {
        height: 450px;
        max-width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-card-overlay {
        opacity: 1;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .industry-image {
        aspect-ratio: 4 / 3;
    }

    .industry-name {
        font-size: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-top {
        padding: 40px 0 30px;
    }

    .footer-heading {
        font-size: 18px;
    }

    .footer-links-list li a,
    .footer-contact-list li {
        font-size: 13px;
        white-space: normal;
        word-break: break-word;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom {
        height: auto;
        padding: 20px 0;
    }

    .footer-bottom-logo img {
        height: 38px;
        width: auto;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 16px;
    }

    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mvv-card {
        padding: 28px 24px;
    }

    .mvv-card-text {
        margin-top: 20px;
    }
}

@media (max-width: 500px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .industry-image {
        aspect-ratio: 3 / 2;
    }
}

@media (max-width: 480px) {
    .info-item {
        font-size: 12px;
        gap: 5px;
    }

    .info-item .icon {
        width: 14px !important;
        height: 14px !important;
    }

    .why-choose-section {
        padding-top: 35px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-top {
        padding: 30px 0 25px;
    }

    .copyright {
        font-size: 12px;
    }
}