﻿/* ================= GLOBAL ================= */
/* Prevent horizontal scroll */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Slider wrapper should not be fixed width */
.product-slider-wrapper {
    width: 100%;
}

/* Hero image should not push outside */
.hero-image {
    right: 0;
    max-width: 50%;
}

/* Mega menu box sizing */
.mega-left,
.mega-right {
    box-sizing: border-box;
}

/* Mobile mega grid fix */
@media (max-width: 768px) {
    .mega-products {
        grid-template-columns: repeat(2, 1fr);
    }
}



body {
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
}

.header .menu a {
    color: #0a3d62;
}

.logo {
    font-size: 24px;
    font-weight: 600;
}

.logo span {
    color: #fbc531;
}

.header.scrolled {
    background: #0a3d62;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Menu text becomes white after scroll */
.header.scrolled .menu a {
    color: #fff;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0;
    position: relative;
}

.menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.menu>li {
    padding-bottom: 0;
}

.menu>li>a {
    padding-bottom: 20px;
    display: inline-block;
}


.menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.has-submenu {
    position: relative;
}

.submenu {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 210px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 1005;
}

.submenu li {
    border-bottom: 1px solid #edf2f7;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu a {
    display: block;
    padding: 11px 14px;
    color: #0a3d62;
    font-size: 14px;
    white-space: nowrap;
}

.has-submenu:hover .submenu,
.has-submenu.open .submenu {
    display: block;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
}


/* Full-width mega menu */
.mega-menu {
    position: fixed;
    left: 0;
    top: 70px;
    /* match header height */
    width: 100%;
    background: #fff;
    display: none;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 999;
    animation: slideDown 0.35s ease forwards;
}

.has-mega-menu:hover .mega-menu {
    display: flex;
}

.mega-menu.show {
    display: flex;
}

.mega-menu-inner {
    width: 90%;
    max-width: 1200px;
    display: flex;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Inner container to align content */
.mega-menu-inner {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
}

/* Show on hover */
@media (min-width: 900px) {
    .has-mega-menu:hover .mega-menu {
        display: flex;
    }
}

/* Slide animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LEFT SIDE */
.mega-left {
    width: 40%;
    background: #f5f7fa;
    padding: 30px 40px;
    border-right: 1px solid #e5e5e5;
}

.mega-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-left li {
    padding: 14px 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 16px;
}

.mega-left li:hover,
.mega-left li.active {
    background: #ffffff;
    color: #0a3d62;
    font-weight: 600;
}

.arrow {
    opacity: 0;
    transition: all 0.2s ease;
}

.mega-left li.active .arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* RIGHT SIDE */
.mega-right {
    width: 60%;
    padding: 30px 40px;
    max-height: 420px;
    /* enables scroll if many items */
    overflow-y: auto;
}

.product-display {
    display: none;
}

.icon {
    font-size: 18px;
}

/* View All Button */
.view-all-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 18px;
    background: #0a3d62;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

/* RIGHT SIDE */
.mega-right {
    width: 55%;
    padding-left: 30px;
}

.product-display {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.product-display.active {
    display: block;
}

.product-display img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-display h4 {
    margin-bottom: 6px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center right;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 40%;
    left: 8%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 2;
    max-width: 500px;
}

.hero-overlay h1 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 15px;
}

.hero-overlay p {
    font-size: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #0a3d62;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
}

.btn-primary {
    background: #0a3d62;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    margin-top: 10px;
}

/* ================= VALUE STRIP ================= */
.values {
    background: #0a3d62;
    color: white;
    padding: 40px 0;
}

.values-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.value-item {
    flex: 1;
}

/* ================= ABOUT ================= */
.about-grid {
    display: flex;
    gap: 40px;
    padding: 60px 0;
}

.about-grid img {
    width: 100%;
    border-radius: 8px;
}

.btn-secondary {
    background: #fbc531;
    padding: 10px 20px;
    text-decoration: none;
    color: #000;
    border-radius: 4px;
}

/* ================= FOOTER ================= */
.footer {
    background: #111;
    color: #ccc;
    padding: 40px 0 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #333;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
    .hamburger {
        display: block;
        color: white;
    }

    .slide img {
        height: 350px;
    }

    .values-grid,
    .about-grid,
    .footer-grid {
        flex-direction: column;
    }
}

body.no-scroll {
    overflow: hidden;
}

/* Multi product grid */
.multi-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 in one row */
    gap: 25px;
    padding-top: 10px;
}

.product-item {
    max-width: 200px;
    text-align: center;
}

.product-item h5 {
    font-size: 15px;
    margin-bottom: 8px;
}

.product-item img {
    width: 100%;
    max-width: 160px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
}

.product-item p {
    font-size: 13px;
    line-height: 1.4;
}

.mega-right::-webkit-scrollbar {
    width: 6px;
}

.mega-right::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* ===== FORCE PRODUCT GRID LAYOUT ===== */
.product-display.multi-products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    justify-items: center;
    /* centers each card */
    align-items: start;
}

.mega-menu {
    color: #222;
    /* default text color inside menu */
}

.product-item h5 {
    color: #0a3d62;
    font-size: 16px;
    margin-bottom: 6px;
}

.product-item p {
    color: #555;
    font-size: 13px;
    line-height: 1.4;
}

/* ================= HERO SECTION ================= */
.hero-astral {
    width: 100%;
    height: 650px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #f4f6f8 30%, #ffffff 100%);
}


.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1400px;
    margin: auto;
    padding-top: 140px;
}


.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 300;
    color: #6c757d;
    line-height: 1.3;
    margin-bottom: 25px;
}

.divider {
    width: 2px;
    height: 60px;
    background: #ccc;
    margin: 20px 0;
}

.badge {
    font-size: 22px;
    color: #555;
    font-weight: 500;
}

.badge span {
    color: #b8860b;
    font-weight: 700;
}

.hero-image {
    position: absolute;
    right: -5%;
    bottom: 0;
    height: 100%;
}

/* Big product visual */
.hero-image img {
    height: 100%;
    width: auto;
    max-width: none;
}


@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 40px;
    }

    .divider {
        margin: 20px auto;
    }

}

.header.scrolled .logo {
    color: #fff;
}

/* ================= BRAND INTRO SECTION ================= */
.brand-intro {
    padding: 90px 0;
    background: #ffffff;
}

.brand-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.brand-left {
    flex: 1;
}

.brand-left h2 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 20px;
}

.brand-left p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* LEFT SIDE */
.brand-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.brand-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* STATS */
.brand-stats {
    display: flex;
    gap: 60px;
    margin: 35px 0;
}

.stat span {
    font-size: 14px;
    color: #555;
}

.stat h3 {
    font-size: 40px;
    color: #0a3d62;
    margin-bottom: 5px;
}

.brand-stats h3 {
    color: #0a3d62;
    font-size: 36px;
    margin-bottom: 5px;
}

.brand-stats span {
    color: #555;
    font-size: 14px;
}

/* BUTTONS */
.brand-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-solid {
    background: #0a3d62;
    color: #fff;
    padding: 12px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.brand-right {
    flex: 1;
}

.video-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.video-frame img {
    width: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.btn-outline {
    border: 2px solid #0a3d62;
    color: #0a3d62;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.btn-primary {
    background: #0a3d62;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.btn-primary.outline {
    background: #0a3d62;
    opacity: 0.85;
}

/* RIGHT SIDE IMAGE */
.brand-image {
    position: relative;
    flex: 1;
}

.brand-image img {
    width: 100%;
    border-radius: 14px;
}

.image-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: white;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 900px) {
    .brand-container {
        flex-direction: column;
    }

    .brand-stats {
        flex-direction: column;
        gap: 20px;
    }

    .video-overlay {
        font-size: 24px;
    }

    .brand-buttons {
        flex-direction: column;
    }

    .image-overlay {
        font-size: 24px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
}

/* ===== PRODUCT SHOWCASE SECTION ===== */
.product-showcase {
    background: #f5f6f8;
    padding: 90px 0;
}

.showcase-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 50px;
    position: relative;
}

/* LEFT MENU */
.showcase-menu {
    width: 30%;
}

.showcase-menu h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.showcase-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.showcase-menu li {
    padding: 14px 0;
    border-left: 3px solid transparent;
    padding-left: 15px;
    color: #333;
    cursor: pointer;
}

.showcase-menu li.active {
    border-color: #0a3d62;
    font-weight: 600;
}

/* RIGHT PRODUCTS */
.showcase-products {
    width: 70%;
    position: relative;
}

.product-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.product-slider {
    opacity: 1;
    display: flex;
    gap: 30px;
    transition: transform 0.45s ease, opacity 0.3s ease;
    will-change: transform;
    width: max-content;
    /* THIS enables sliding */
}

.product-slider.fade-out {
    opacity: 0;
}

.product-slider.fade-in {
    opacity: 1;
}

.product-card {
    flex: 0 0 340px;
    max-width: 340px;
    /* FIXED card width */
    flex: 0 0 300px;
    /* Prevent resizing */
    background: #f4f7fb;
    border-radius: 20px;
    padding: 25px;
    border: 8px solid #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 2;
    pointer-events: auto;
    
}

.img-wrap {
    width: 100%;
    height: 220px;
    background: #ffffff;
    border-radius: 18px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card .img-wrap {
    background: #ffffff;
    border-radius: 20px;
    /* padding: 20px; */
    margin-bottom: 18px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.product-card img {
    max-height: 170px;
    width: auto;
}

.product-card h4 {
    color: #0a3d62;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;

}

.product-card p {
    font-size: 14px;
    color: #555;
}

/* ARROWS */
.showcase-arrows {
    position: absolute;
    top: -60px;
    right: 0;
}

.showcase-arrows button {
    background: #fff;
    border: none;
    padding: 10px 14px;
    margin-left: 8px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}


@media (max-width: 900px) {
    .showcase-container {
        flex-direction: column;
    }

    .showcase-menu,

    .showcase-products {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .showcase-products {
        flex-direction: column;
    }
}

.breadcrumb-strip {
    background: #0a5ea8;
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
}

.breadcrumb-strip a {
    color: #dceeff;
    text-decoration: none;
}

.product-hero {
    padding: 60px 0;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.product-image img {
    width: 100%;
    max-width: 450px;
}

.product-badge {
    background: #0a5ea8;
    color: #fff;
    padding: 10px 15px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    border-radius: 4px;
    font-size: 14px;
}

.product-tabs {
    background: #0a4c8b;
    position: sticky;
    top: 80px;
    z-index: 20;
}

.tabs-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 0;
}

.tab {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 18px;
    cursor: pointer;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s;
}

.tab:hover,
.tab.active {
    background: rgba(255,255,255,0.15);
}

.product-tab-content {
    padding: 60px 0;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {opacity:0; transform:translateY(10px);}
    to {opacity:1; transform:translateY(0);}
}


.tab.active {
    border-color: #fff;
}

.features-section {
    background: linear-gradient(135deg, #083b73, #0a5ea8);
    color: #fff;
    padding: 70px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 40px;
}

.info-section {
    padding: 60px 0;
}

.info-section.light {
    background: #f5f7fa;
}

.info-list {
    list-style: none;
    padding: 0;
    line-height: 2;
}

/* ===== PRODUCT SHOWCASE LINKS FIX ===== */
.product-slider a {
    text-decoration: none;
    /* remove underline */
    color: inherit;
    /* keep card text color */
    display: block;
    /* make entire card clickable */
}

.product-slider a:hover {
    text-decoration: none;
    /* no underline on hover */
    color: inherit;
}

.mega-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;

}

.mega-product-card {
    text-decoration: none;
    color: #111;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mega-product-card img {
    width: 100%;
    max-width: 140px;
    margin: 0 auto 10px;
    display: block;
}

.mega-product-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0a2f57;
    margin-bottom: 6px;
}

.mega-product-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.mega-product-card:hover {
    transform: translateY(-4px);
}

/* Hide mobile version on desktop */
.mobile-products {
    display: none;
}

@media (max-width: 900px) {

    .has-mega-menu>#productsToggle {
        display: none;
    }

    .mega-menu {
        display: none !important;
    }

    .mobile-products {
        display: block;
        padding: 10px 0;
    }

    .mobile-parent {
        font-size: 16px;
        font-weight: 600;
        padding: 14px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .mobile-submenu {
        display: none;
        padding-left: 10px;
    }

    .mobile-submenu.open {
        display: block;
    }

    .mobile-category {
        border-top: 1px solid #eee;
    }



    .mobile-products-list {
        display: none;
        padding: 8px 0 8px 10px;
    }

    .mobile-category.open .mobile-products-list {
        display: block;
    }

    .mobile-product-item {
        display: flex;
        gap: 10px;
        text-decoration: none;
        color: #0b3c63;
        padding: 6px 0;
    }

    .mobile-product-item img {
        width: 50px;
    }

    .mobile-product-item h4 {
        font-size: 14px;
        margin: 0;
    }

    .mobile-product-item p {
        font-size: 12px;
        margin: 0;
        color: #666;
        word-break: break-word;
    }
}

.mobile-nav-header {
    display: none;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

/* Mobile only */
@media (max-width: 992px) {
    .mega-menu {
        position: static;
        box-shadow: none;
        padding: 0;
    }

    .mega-menu-inner {
        flex-direction: column;
    }

    .mega-left {
        border-right: none;
        padding: 10px 0;
    }

    .mega-products {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        padding: 10px 20px;
        align-items: start;
    }

    .mega-product-card {
        text-decoration: none;
        text-align: center;
        padding: 10px;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .mega-product-card img {
        width: 100%;
        max-width: 140px;
        height: auto;
        margin-bottom: 10px;
    }

    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        border-bottom: 1px solid #eee;
        font-weight: 600;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: #fff;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
        transition: right 0.35s ease;
        z-index: 9999;
        overflow-y: auto;
        padding-bottom: 24px;
    }

    .nav.open {
        right: 0;
    }

    .menu {
        flex-direction: column;
        gap: 0;
        padding: 8px 16px 0;
    }

    .menu > li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .menu > li > a {
        display: block;
        padding: 14px 0;
        color: #0a3d62;
    }

    .has-submenu .submenu {
        position: static;
        display: none;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
        min-width: 100%;
        padding: 0 0 10px 0;
    }

    .has-submenu .submenu li {
        border-bottom: none;
    }

    .has-submenu .submenu a {
        padding: 9px 0 9px 14px;
        font-size: 14px;
    }

    .has-submenu.open .submenu {
        display: block;
    }

    .header.scrolled .nav .menu a {
        color: #0a3d62;
    }
}

/* MOBILE PRODUCTS PANEL */
.mobile-products-panel {
    display: none;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
    background: #fff;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.mobile-categories {
    padding: 10px 0;
}

.mobile-cat-head {
    background: #f3f3f3;
    padding: 12px 14px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}


.mobile-products-list {

    display: none;
    padding: 10px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-category.open .mobile-products-list {
    display: grid;
    max-height: 1000px;
}

/* MOBILE PRODUCT CARD */
.mobile-product-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 10px;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
}

.mobile-product-item img {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
}

.mobile-product-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0a2f57;
}

.mobile-product-item p {
    font-size: 12px;
    color: #555;
}

/* ===== MOBILE PRODUCT GRID ===== */
@media (max-width: 768px) {

    .mobile-products-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        padding: 12px 0 8px;
    }

    .mobile-product-item {
        background: #fff;
        border-radius: 14px;
        padding: 10px;
        text-decoration: none;
        color: #1a1a1a;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        transition: transform 0.2s ease;
    }

    .mobile-product-item:hover {
        transform: translateY(-2px);
    }

    .mobile-product-item img {
        width: 100%;
        max-width: 110px;
        height: auto;
        margin-bottom: 8px;
    }

    .mobile-product-item h4 {
        font-size: 13px;
        font-weight: 700;
        margin: 0 0 4px;
        text-align: center;
        color: #0b3a67;
        line-height: 1.2;
    }

    .mobile-product-item p {
        font-size: 12px;
        margin: 0;
        text-align: center;
        color: #555;
        line-height: 1.3;
    }
}

/* HERO IMAGE SLIDER */
.product-image-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-slider img {
    max-width: 100%;
    border-radius: 12px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0a4c8b;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 5;
    opacity: 0.9;
}

.hero-prev { left: -20px; }
.hero-next { right: -20px; }

.hero-arrow:hover {
    background: #083766;
}

/* ===== PRODUCT HERO RESPONSIVE ===== */
@media (max-width: 768px) {

    .product-hero-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .product-image-slider {
        width: 100%;
        text-align: center;
    }

    .product-image-slider img {
        max-width: 80%;
        margin: 0 auto;
    }

    .hero-prev { left: 10px; }
    .hero-next { right: 10px; }

    .product-content {
        text-align: center;
    }

    .product-content h1 {
        font-size: 28px;
    }

    .product-content h3 {
        font-size: 16px;
    }

    .product-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .product-cta {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .product-cta a {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}


/* ===== RESPONSIVE PRODUCT TABS ===== */
@media (max-width: 768px) {

    .tabs-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tabs-wrapper::-webkit-scrollbar {
        display: none;
    }

    .tab {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 13px;
        padding: 10px 14px;
    }
}

/* ===== TAB CONTENT MOBILE ===== */
@media (max-width: 768px) {

    .product-tab-content {
        padding: 40px 0;
    }

    .features-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        font-size: 14px;
    }

    .features-grid div {
        padding-left: 18px;
        position: relative;
    }

    .features-grid div::before {
        content: "•";
        position: absolute;
        left: 0;
        color: #0a4c8b;
    }
}

@media (max-width: 768px) {

    .container {
        width: 92%;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 16px;
    }
}

/* Sticky Mobile CTA */
.sticky-enquire {
    display: none;
}

@media (max-width: 768px) {
    .sticky-enquire {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 12px;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
        justify-content: center;
        z-index: 999;
    }

    .sticky-enquire a {
        width: 90%;
        text-align: center;
        font-size: 16px;
    }

    body {
        padding-bottom: 70px; /* prevent content being hidden behind button */
    }
}

.side-action-widget {
    position: fixed;
    right: 18px;
    top: 35%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    z-index: 1500;
    pointer-events: none;
}

.side-action-widget * {
    pointer-events: auto;
}

.side-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.side-action,
.chat-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    background: #fff;
    color: #0a3d62;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(10, 61, 98, 0.1);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.side-action:hover,
.chat-toggle:hover {
    transform: translateY(-2px);
}

.side-call {
    background: #fff;
    color: #0a3d62;
}

.side-whatsapp {
    background: #25d366;
    color: #fff;
    border-radius: 50%;
}

.side-enquire {
    width: 48px;
    min-width: 48px;
    min-height: 120px;
    padding: 8px 6px;
    border-radius: 28px;
    background: #0858a6;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.side-enquire .enquire-text {
    display: block;
    font-size: 12px;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.icon {
    display: block;
    width: 22px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-call {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230a3d62' d='M6.62 10.79a15.051 15.051 0 006.59 6.59l2.2-2.2a1.003 1.003 0 011.11-.21c1.12.45 2.33.69 3.56.69a1 1 0 011 1v3.5a1 1 0 01-1 1C10.07 21.5 2.5 13.93 2.5 4a1 1 0 011-1H7a1 1 0 011 1c0 1.23.24 2.44.69 3.56a1.003 1.003 0 01-.21 1.11l-2.86 2.86z'/%3E%3C/svg%3E");
}

.icon-whatsapp {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M20.52 3.48A11.74 11.74 0 0012.02 0C5.38 0 .16 5.22 .16 11.86c0 2.09.55 4.14 1.6 5.93L0 24l6.46-1.65a11.84 11.84 0 005.54 1.39h.02c6.64 0 11.86-5.22 11.86-11.86 0-3.17-1.24-6.16-3.46-8.4zm-8.49 18.71h-.01c-1.75 0-3.46-.47-4.96-1.36l-.36-.21-3.83.98.98-3.73-.24-.39a9.7 9.7 0 01-1.5-5.1c0-5.39 4.38-9.78 9.78-9.78 2.61 0 5.05 1.02 6.88 2.87a9.72 9.72 0 012.86 6.91c0 5.39-4.39 9.78-9.78 9.78zm5.34-7.54c-.29-.14-1.72-.85-1.98-.95-.26-.1-.45-.14-.64.14-.19.29-.74.95-.91 1.14-.17.19-.35.21-.65.07-.29-.14-1.22-.45-2.32-1.43-.86-.76-1.44-1.71-1.61-2-.17-.28-.02-.43.13-.57.13-.12.29-.32.44-.48.15-.16.2-.28.29-.47.1-.19.05-.36-.02-.5-.07-.15-.64-1.54-.88-2.1-.23-.55-.46-.48-.64-.49l-.55-.01c-.19 0-.5.07-.76.36-.26.29-1 1-1 2.44 0 1.44 1.03 2.84 1.17 3.04.14.19 2.03 3.1 4.92 4.35.69.3 1.23.48 1.65.62.69.24 1.32.21 1.82.13.56-.09 1.72-.7 1.97-1.38.25-.69.25-1.29.18-1.42-.07-.13-.26-.2-.55-.34z'/%3E%3C/svg%3E");
}

.icon-chat {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M12 2a10 10 0 00-8.75 15.14L2 22l4.84-1.28A9.96 9.96 0 0012 22a10 10 0 000-20zm0 18c-1.91 0-3.7-.6-5.2-1.62l-.37-.24-2.87.76.77-2.92-.24-.38A7.99 7.99 0 014 12c0-4.42 3.58-8 8-8s8 3.58 8 8-3.58 8-8 8zm-3.5-7.5h7a1 1 0 000-2h-7a1 1 0 000 2zm0 4h5a1 1 0 000-2h-5a1 1 0 000 2zm0-8h9a1 1 0 000-2h-9a1 1 0 000 2z'/%3E%3C/svg%3E");
}

.icon-enquire {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M17 2h-5.5A1.5 1.5 0 0010 3.5V5H7a2 2 0 00-2 2v11a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2V3.5A1.5 1.5 0 0017 2zM9 3.5c0-.28.22-.5.5-.5H13v2H9V3.5zM17 20H7V7h10v13zm-8-5h6v2H9v-2zm0-4h6v2H9V11z'/%3E%3C/svg%3E");
}

.chat-toggle {
    border: none;
    background: #0a3d62;
    color: #fff;
    font-size: 0;
}

.chat-toggle .icon {
    width: 22px;
    height: 22px;
}

.chat-toggle:hover {
    transform: translateY(-2px);
    background: #d94b29;
}

.chat-panel {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 340px;
    max-width: calc(100% - 40px);
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(10, 61, 98, 0.12);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-panel.open {
    display: flex;
}

.chat-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    background: #0a3d62;
    color: #fff;
    font-weight: 700;
}

.chat-panel-header .chat-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}

.chat-messages {
    padding: 16px 18px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    border-bottom: 1px solid #f1f4f9;
}

.chat-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px 20px;
}

.chat-form input,
.chat-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d6dde4;
    border-radius: 14px;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
}

.chat-form textarea {
    resize: vertical;
}

.chat-form button {
    padding: 12px 18px;
    border: none;
    border-radius: 14px;
    background: #0a3d62;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 768px) {
    .side-action-widget {
        right: 14px;
        left: auto;
        top: 25%;
        bottom: auto;
        transform: none;
        width: auto;
        align-items: flex-end;
        padding: 0;
    }

    .side-actions {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-end;
        gap: 10px;
    }

    .side-action,
    .chat-toggle {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .side-enquire {
        min-height: 100px;
        width: 42px;
        padding: 6px 4px;
        border-radius: 22px;
    }

    .side-enquire .enquire-text {
        margin-bottom: 4px;
        font-size: 11px;
    }

    .chat-panel {
        left: 50%;
        transform: translateX(-50%);
        bottom: 90px;
        width: calc(100% - 32px);
    }
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {

  .hero-slider {
    height: 60vh;
  }

  .hero-overlay {
    padding: 0 20px;
    text-align: center;
  }

  .hero-overlay h1 {
    font-size: 22px;
  }

  .hero-overlay p {
    font-size: 14px;
  }

  .slider-dots {
    bottom: 15px;
  }
}

@media (max-width: 768px) {

  .brand-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .brand-left,
  .brand-right {
    width: 100%;
  }

  .brand-left h2 {
    font-size: 22px;
    text-align: center;
  }

  .brand-left p {
    font-size: 14px;
    text-align: center;
  }

  .brand-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
  }

  .brand-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .brand-buttons a {
    width: 90%;
    text-align: center;
  }

  .video-frame img {
    width: 100%;
    border-radius: 10px;
  }
}
@media (max-width: 768px) {

  .showcase-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .showcase-menu {
    width: 100%;
    margin-bottom: 20px;
  }

  .product-categories {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .product-categories::-webkit-scrollbar {
    display: none;
  }

  .product-categories li {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 20px;
    background: #f2f4f7;
  }

  .showcase-products {
    width: 100%;
  }

  .product-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
}

@media (max-width: 768px) {

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .value-item h3 {
    font-size: 16px;
  }

  .value-item p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .about-grid img {
    width: 100%;
    border-radius: 10px;
  }

  .about-grid h2 {
    font-size: 22px;
    text-align: center;
  }

  .about-grid p {
    font-size: 14px;
    text-align: center;
  }

  .btn-secondary {
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {

  .container {
    width: 92%;
  }

  h2 {
    font-size: 22px;
  }

  p {
    line-height: 1.6;
  }

  body {
    overflow-x: hidden;
  }
}

.breadcrumb {
    font-size: 14px;
    padding: 12px 0;
    color: #555;
}

.breadcrumb a {
    color: #0a4c8b;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 6px;
    color: #aaa;
}

.breadcrumb-wrapper {
    background: #f5f7fa;
    border-bottom: 1px solid #e3e7ec;
}

/* ============================= */
/* MOBILE PRODUCT SHOWCASE FIX   */
/* ============================= */

/* FINAL MOBILE SHOWCASE */
@media (max-width: 768px) {

  .product-slider {
    display: flex;
    gap: 12px !important;
    width: 100%;
  }

  .product-card {
    flex: 0 0 56%;
    min-width: 56%;
    max-width: 56%;
    width: 56%;
    padding: 16px;
    border-width: 6px;
  }

  .product-card img {
    width: 100%;
    height: auto;
  }

  .showcase-arrows {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .showcase-arrows button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #0b3c5d;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }

  .showcase-menu li.active {
    border-color: transparent;
  }
}

@media (max-width: 768px) {
  .img-wrap {
    height: 120px;
  }
}

/* HERO */
.about-hero {
  background: linear-gradient(135deg, #0b4f7c, #1c6ea4);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

/* INTRO */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 0;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
}

/* VISION */
.about-vision {
  background: #f5f8fb;
  padding: 50px 0;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: center;
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 60px 0;
}

.stat h3 {
  color: #0b4f7c;
  font-size: 32px;
}

/* TIMELINE */
.timeline {
  border-left: 3px solid #0b4f7c;
  margin: 40px 0;
  padding-left: 20px;
}

.timeline-item {
  margin-bottom: 20px;
}

.timeline-item span {
  font-weight: bold;
  color: #0b4f7c;
}

/* BRANDS */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.brands-grid img {
  width: 100%;
  filter: grayscale(100%);
}

/* CTA */
.about-cta {
  background: #0b4f7c;
  color: #fff;
  text-align: center;
  padding: 60px 0;
}

.about-cta .btn-primary {
  background: #fff;
  color: #0b4f7c;
  padding: 12px 30px;
  border-radius: 6px;
}

/* ABOUT PAGE REWORK */
.about-hero-strip {
  margin-top: 78px;
  background: linear-gradient(90deg, #0a4c8b 0%, #1763a8 100%);
  color: #fff;
  padding: 28px 0;
}

.about-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.about-hero-inner h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
}

.about-hero-inner p {
  margin: 0;
  font-size: 14px;
}

.about-hero-inner a {
  color: #d8eaff;
  text-decoration: none;
}

.about-why,
.about-milestones-modern,
.about-units,
.about-awards-modern,
.about-verticals {
  padding: 64px 0;
}

.about-why {
  background: #fff;
}

.about-milestones-modern,
.about-awards-modern {
  background: #f4f7fb;
}

.about-why h2,
.about-milestones-modern h2,
.about-units h2,
.about-awards-modern h2,
.about-verticals h2 {
  margin-top: 0;
  margin-bottom: 28px;
  font-size: 34px;
  color: #0a2f57;
}

.about-why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 28px;
}

.about-why-text h3 {
  margin: 0 0 14px;
  font-size: 26px;
  color: #0a3d62;
}

.about-why-text p {
  margin: 0 0 12px;
  color: #4a5d70;
  line-height: 1.75;
}

.about-why-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(10, 61, 98, 0.14);
}

.about-kpis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.about-kpis div {
  background: #0a3d62;
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  color: #fff;
}

.about-kpis h4 {
  margin: 0 0 6px;
  font-size: 26px;
}

.about-kpis p {
  margin: 0;
  font-size: 13px;
  color: #d7e6f5;
}

.milestone-grid,
.award-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.milestone-grid article,
.award-grid article {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dfe7f0;
  padding: 18px;
}

.milestone-grid span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #0a4c8b;
}

.milestone-grid p,
.award-grid p {
  margin: 0;
  color: #4a5d70;
  line-height: 1.6;
}

.about-section-intro {
  max-width: 780px;
  margin: 0 0 24px;
  color: #4a5d70;
  line-height: 1.7;
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.unit-grid div {
  background: #fff;
  border: 1px solid #dfe7f0;
  border-radius: 12px;
  padding: 16px;
}

.unit-grid h4,
.award-grid h4 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #0a3d62;
}

.unit-grid p {
  margin: 0;
  color: #4a5d70;
  font-size: 14px;
  line-height: 1.5;
}

.vertical-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vertical-pill-grid span {
  background: #e7f0fa;
  color: #0a3d62;
  border: 1px solid #c7dbf1;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

/* BECOME PARTNER PAGES */
.partner-hero {
  margin-top: 78px;
  background: linear-gradient(90deg, #0a4c8b 0%, #1763a8 100%);
  color: #fff;
  padding: 28px 0;
}

.partner-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.partner-hero-inner h1 {
  margin: 0;
  font-size: 34px;
}

.partner-hero-inner p {
  margin: 0;
  font-size: 14px;
}

.partner-hero-inner a {
  color: #d8eaff;
  text-decoration: none;
}

.partner-intro,
.partner-form-section,
.partner-benefits,
.partner-faq {
  padding: 60px 0;
}

.partner-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}

.partner-intro h2,
.partner-form-section h2,
.partner-benefits h2,
.partner-faq h2 {
  margin: 0 0 20px;
  font-size: 34px;
  color: #0a2f57;
}

.partner-intro p {
  color: #4a5d70;
  line-height: 1.75;
}

.partner-points {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #4a5d70;
  line-height: 1.7;
}

.partner-intro-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(10, 61, 98, 0.14);
}

.partner-form-section {
  background: #f4f7fb;
}

.partner-form {
  background: #fff;
  border: 1px solid #dfe7f0;
  border-radius: 12px;
  padding: 22px;
}

.partner-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.partner-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 13px;
  color: #0a3d62;
}

.partner-form input,
.partner-form textarea {
  width: 100%;
  border: 1px solid #c9d8e8;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 14px;
  box-sizing: border-box;
}

.partner-form-full {
  grid-column: 1 / -1;
}

.partner-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.partner-benefit-grid article,
.partner-faq-grid > div {
  background: #fff;
  border: 1px solid #dfe7f0;
  border-radius: 12px;
  padding: 18px;
}

.partner-benefit-grid h4,
.partner-faq-grid h4 {
  margin: 0 0 8px;
  color: #0a3d62;
}

.partner-benefit-grid p,
.partner-faq-grid p {
  margin: 0;
  color: #4a5d70;
  line-height: 1.6;
}

.partner-faq {
  background: #f4f7fb;
}

.partner-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-hero-inner h1 {
    font-size: 28px;
  }

  .about-why h2,
  .about-milestones-modern h2,
  .about-units h2,
  .about-awards-modern h2,
  .about-verticals h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .milestone-grid,
  .award-grid {
    grid-template-columns: 1fr;
  }

  .unit-grid {
    grid-template-columns: 1fr;
  }

  .partner-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .partner-hero-inner h1 {
    font-size: 28px;
  }

  .partner-intro h2,
  .partner-form-section h2,
  .partner-benefits h2,
  .partner-faq h2 {
    font-size: 26px;
  }

  .partner-intro-grid,
  .partner-form-grid,
  .partner-benefit-grid,
  .partner-faq-grid {
    grid-template-columns: 1fr;
  }
}

/* PARTNER PAGE - SCREENSHOT STYLE (GREEN THEME) */
.partner-page {
  --rk-green-900: #0a6a3d;
  --rk-green-800: #0e7a46;
  --rk-green-700: #139052;
  --rk-green-100: #e9f5ef;
}

.partner-page .partner-top {
  margin-top: 78px;
  padding: 16px 0 36px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0 70px, transparent 72px),
    radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.06) 0 62px, transparent 64px),
    linear-gradient(90deg, var(--rk-green-900), var(--rk-green-700));
}

.partner-page .partner-crumb {
  font-size: 13px;
  margin-bottom: 20px;
  color: #d8f5e7;
}

.partner-page .partner-crumb span {
  margin: 0 8px;
}

.partner-page .partner-top-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 34px;
  align-items: end;
}

.partner-page .partner-product-visual img {
  width: 100%;
  max-width: 560px;
  display: block;
}

.partner-page .partner-form-panel h1 {
  margin: 0 0 8px;
  font-size: 44px;
}

.partner-page .partner-form-panel p {
  margin: 0 0 16px;
  color: #ddf7ea;
  line-height: 1.5;
}

.partner-page .partner-top-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.partner-page .partner-top-form input,
.partner-page .partner-top-form select,
.partner-page .partner-top-form textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  border-radius: 2px;
  box-sizing: border-box;
}

.partner-page .partner-top-form input::placeholder,
.partner-page .partner-top-form textarea::placeholder {
  color: #d2efe2;
}

.partner-page .partner-top-form option {
  color: #111;
}

.partner-page .partner-top-form .full {
  grid-column: 1 / -1;
}

.partner-page .partner-top-form .submit-row {
  display: flex;
  justify-content: center;
  margin-top: 2px;
}

.partner-page .partner-top-form button {
  min-width: 170px;
  border: none;
  padding: 12px 22px;
  background: #fff;
  color: var(--rk-green-900);
  font-weight: 600;
  cursor: pointer;
}

.partner-page .partner-why {
  background: #efefef;
  text-align: center;
  padding: 58px 0;
}

.partner-page .partner-why h2 {
  margin: 0 0 10px;
  color: #18212a;
  font-size: 40px;
}

.partner-page .partner-why p {
  max-width: 980px;
  margin: 0 auto;
  color: #5f646a;
  line-height: 1.8;
}

.partner-page .partner-offer {
  padding: 70px 0 80px;
  color: #fff;
  background:
    radial-gradient(circle, rgba(255,255,255,0.08) 0 54px, transparent 56px) 0 0 / 180px 180px,
    linear-gradient(90deg, var(--rk-green-900), var(--rk-green-800));
}

.partner-page .partner-offer h2 {
  text-align: center;
  margin: 0 0 42px;
  font-size: 38px;
}

.partner-page .partner-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.partner-page .partner-offer-grid > div {
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.partner-page .partner-offer-grid > div:last-child {
  border-right: none;
}

.partner-page .partner-offer-grid h4 {
  margin: 0 0 10px;
  font-size: 22px;
}

.partner-page .partner-offer-grid p {
  margin: 0;
  color: #dff6ea;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .partner-page .partner-top-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .partner-page .partner-product-visual img {
    max-width: 100%;
  }

  .partner-page .partner-form-panel h1 {
    font-size: 34px;
  }

  .partner-page .partner-offer-grid {
    grid-template-columns: 1fr;
  }

  .partner-page .partner-offer-grid > div {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .partner-page .partner-offer-grid > div:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .partner-page .partner-top-form {
    grid-template-columns: 1fr;
  }

  .partner-page .partner-why h2,
  .partner-page .partner-offer h2 {
    font-size: 28px;
  }
}

/* ABOUT PAGE V2 - SCREENSHOT STYLE */
.about-v2-page {
  background: #fff;
}

.about-v2-intro {
  margin-top: 78px;
  background: #f2f2f2;
}

.about-v2-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.about-v2-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-v2-intro-copy {
  padding: 62px 58px;
}

.about-v2-kicker {
  margin: 0 0 12px;
  color: #0a6a3d;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 14px;
}

.about-v2-intro-copy h1 {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 1.2;
  color: #15222e;
}

.about-v2-intro-copy p {
  margin: 0 0 12px;
  color: #4f5d67;
  line-height: 1.7;
}

.about-v2-milestones {
  color: #fff;
  padding: 62px 0;
  background:
    radial-gradient(circle, rgba(255,255,255,0.09) 0 52px, transparent 54px) 0 0 / 180px 180px,
    linear-gradient(90deg, #0a6a3d, #0f7f48);
}

.about-v2-milestones h2 {
  text-align: center;
  margin: 0 0 28px;
  font-size: 36px;
}

.about-v2-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.65);
  padding-top: 16px;
}

.about-v2-timeline article {
  text-align: center;
}

.about-v2-timeline span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
  color: #d9f5e9;
}

.about-v2-timeline p {
  margin: 0;
  line-height: 1.5;
  color: #ecfbf3;
  font-size: 14px;
}

.about-v2-units,
.about-v2-awards,
.about-v2-verticals {
  padding: 62px 0;
}

.about-v2-story {
  padding: 68px 0;
  background: #ebebeb;
}

.about-v2-units h2,
.about-v2-awards h2,
.about-v2-story h2,
.about-v2-verticals h2 {
  margin: 0 0 12px;
  font-size: 36px;
  color: #162330;
}

.about-v2-subcopy {
  max-width: 980px;
  margin: 0 0 26px;
  color: #5f666d;
  line-height: 1.7;
}

.about-v2-unit-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.about-v2-unit-row article {
  background: #fff;
}

.about-v2-placeholder {
  height: 162px;
  background: #ececec;
}

.about-v2-unit-row h4 {
  margin: 12px 0 4px;
  color: #0a6a3d;
  font-size: 17px;
}

.about-v2-unit-row p {
  margin: 0;
  color: #3f4f5a;
  font-size: 14px;
}

.about-v2-award-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.about-v2-award-grid article {
  border: 1px solid #e0e0e0;
  border-bottom: 3px solid #0f7f48;
  background: #fff;
  padding: 18px 14px;
  min-height: 238px;
}

.about-v2-award-grid h4 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #1a2733;
}

.about-v2-award-grid p {
  margin: 0 0 16px;
  color: #4f5d67;
  line-height: 1.6;
}

.about-v2-award-grid strong {
  color: #172634;
  font-size: 24px;
}

.about-v2-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-v2-story p {
  margin: 0;
  color: #4f5d67;
  line-height: 1.8;
}

.about-v2-vertical-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

.about-v2-vertical-row article {
  padding: 18px 16px;
  border-right: 1px solid #e4e4e4;
}

.about-v2-vertical-row article:last-child {
  border-right: none;
}

.about-v2-vertical-row h4 {
  margin: 0 0 6px;
  font-size: 19px;
  color: #172634;
}

.about-v2-vertical-row p {
  margin: 0;
  color: #4f5d67;
  font-size: 14px;
}

@media (max-width: 992px) {
  .about-v2-intro-grid,
  .about-v2-story-grid {
    grid-template-columns: 1fr;
  }

  .about-v2-intro-copy {
    padding: 32px 24px;
  }

  .about-v2-intro-copy h1 {
    font-size: 32px;
  }

  .about-v2-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .about-v2-unit-row {
    grid-template-columns: 1fr 1fr;
  }

  .about-v2-award-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-v2-vertical-row {
    grid-template-columns: 1fr 1fr;
  }

  .about-v2-vertical-row article:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .about-v2-milestones h2,
  .about-v2-units h2,
  .about-v2-awards h2,
  .about-v2-story h2,
  .about-v2-verticals h2 {
    font-size: 28px;
  }

  .about-v2-timeline,
  .about-v2-unit-row,
  .about-v2-award-grid,
  .about-v2-vertical-row {
    grid-template-columns: 1fr;
  }

  .about-v2-vertical-row article {
    border-right: none;
    border-bottom: 1px solid #e4e4e4;
  }

  .about-v2-vertical-row article:last-child {
    border-bottom: none;
  }
}

/* CAREERS PAGE */
.careers-page .careers-hero {
  margin-top: 78px;
  background: linear-gradient(90deg, #0a6a3d, #139052);
  color: #fff;
  padding: 18px 0 12px;
}

.careers-page .careers-crumb {
  font-size: 13px;
  color: #d9e9fb;
  margin-bottom: 16px;
}

.careers-page .careers-crumb span {
  margin: 0 8px;
}

.careers-page .careers-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

.careers-page .careers-hero h1 {
  margin: 0 0 26px;
  font-size: 52px;
}

.careers-page .careers-hero-art img {
  width: 100%;
  max-width: 540px;
  display: block;
  margin-left: auto;
}

.careers-intro,
.careers-culture,
.careers-work {
  padding: 56px 0;
}

.careers-intro {
  text-align: center;
}

.careers-intro h2 {
  margin: 0 0 12px;
  font-size: 38px;
  color: #182531;
}

.careers-intro p {
  max-width: 940px;
  margin: 0 auto;
  color: #5f666d;
  line-height: 1.75;
}

.careers-block-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 46px;
}

.careers-block-grid.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.careers-block-grid h3 {
  margin: 0 0 10px;
  font-size: 34px;
  color: #172634;
}

.careers-block-grid p {
  margin: 0;
  color: #515c66;
  line-height: 1.8;
}

.careers-image-box img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.careers-opening-strip {
  background: linear-gradient(90deg, #0b3f7b, #0f4f97);
  padding: 34px 0;
}

.careers-opening-card {
  margin-left: auto;
  max-width: 460px;
  background: #1262b6;
  color: #fff;
  padding: 24px 26px;
}

.careers-opening-card .location {
  margin: 0 0 10px;
  font-size: 14px;
}

.careers-opening-card h4 {
  margin: 0 0 10px;
  font-size: 30px;
}

.careers-opening-card .apply-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.careers-work {
  background: #fff;
}

.careers-work h2 {
  text-align: center;
  margin: 0 0 28px;
  font-size: 36px;
}

.careers-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.careers-value-grid article {
  color: #fff;
  padding: 24px 20px 28px;
  min-height: 248px;
}

.careers-value-grid article:nth-child(1) { background: #0e4278; }
.careers-value-grid article:nth-child(2) { background: #14528f; }
.careers-value-grid article:nth-child(3) { background: #1764ac; }
.careers-value-grid article:nth-child(4) { background: #1c73c1; }

.careers-value-grid h4 {
  margin: 0 0 14px;
  font-size: 24px;
}

.careers-value-grid p {
  margin: 0;
  line-height: 1.7;
  color: #d5e8fb;
}

.resume-cta-wrap {
  text-align: center;
  margin-top: 30px;
}

.resume-cta {
  display: inline-block;
  background: #ff8a00;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 26px;
}

@media (max-width: 992px) {
  .careers-page .careers-hero-grid,
  .careers-block-grid,
  .careers-block-grid.reverse,
  .careers-value-grid {
    grid-template-columns: 1fr;
  }

  .careers-page .careers-hero h1 {
    font-size: 40px;
  }

  .careers-opening-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .careers-intro h2,
  .careers-block-grid h3,
  .careers-work h2 {
    font-size: 28px;
  }

  .careers-page .careers-hero h1 {
    font-size: 34px;
  }
}

/* CONTACT PAGE */
.contact-page .contact-hero {
  margin-top: 78px;
  padding: 54px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 28%, rgba(255,255,255,0.08) 0 70px, transparent 72px),
    linear-gradient(100deg, #0a6a3d, #139052);
}

.contact-page .contact-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.contact-page .contact-kicker {
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #dbf8e9;
}

.contact-page .contact-hero h1 {
  margin: 0 0 12px;
  font-size: 44px;
}

.contact-page .contact-hero p {
  margin: 0;
  color: #dff6ec;
  line-height: 1.7;
}

.contact-page .contact-hero-card {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 22px;
}

.contact-page .contact-hero-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.contact-page .contact-hero-card p {
  margin: 0 0 6px;
}

.contact-page .contact-cards,
.contact-page .contact-main,
.contact-page .contact-faq {
  padding: 56px 0;
}

.contact-page .contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.contact-page .contact-card-grid article {
  background: #fff;
  border: 1px solid #dce8df;
  border-radius: 12px;
  padding: 18px;
}

.contact-page .contact-card-grid h4 {
  margin: 0 0 10px;
  color: #0a6a3d;
}

.contact-page .contact-card-grid p {
  margin: 0;
  color: #42535e;
  line-height: 1.6;
}

.contact-page .contact-card-grid a {
  color: #0d7e49;
  text-decoration: none;
  font-weight: 600;
}

.contact-page .contact-main {
  background: #f5f8f6;
}

.contact-page .contact-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: start;
}

.contact-page .contact-form-wrap,
.contact-page .contact-side {
  background: #fff;
  border: 1px solid #dce8df;
  border-radius: 12px;
  padding: 20px;
}

.contact-page .contact-form-wrap h2,
.contact-page .contact-side h2,
.contact-page .contact-faq h2 {
  margin: 0 0 16px;
  color: #162330;
  font-size: 30px;
}

.contact-page .contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-page .contact-form-grid .full {
  grid-column: 1 / -1;
}

.contact-page .contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #1c2f3e;
}

.contact-page .contact-form input,
.contact-page .contact-form select,
.contact-page .contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #cad8ce;
  border-radius: 8px;
  padding: 10px 12px;
}

.contact-page .contact-side-card {
  border: 1px solid #e1ece4;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 12px;
}

.contact-page .contact-side-card h4 {
  margin: 0 0 6px;
  color: #0a6a3d;
}

.contact-page .contact-side-card p {
  margin: 0;
  color: #465862;
  line-height: 1.6;
}

.contact-page .contact-map-placeholder {
  margin-top: 8px;
  border-radius: 10px;
  min-height: 160px;
  border: 1px dashed #9ec0aa;
  background: #edf7f1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c6f40;
  font-weight: 600;
}

.contact-page .contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.contact-page .contact-faq-grid article {
  border: 1px solid #dde8df;
  border-radius: 12px;
  padding: 16px;
}

.contact-page .contact-faq-grid h4 {
  margin: 0 0 8px;
  color: #172634;
}

.contact-page .contact-faq-grid p {
  margin: 0;
  color: #4f5d67;
}

/* PRODUCT APPLICATION CARDS */
.application-intro {
  margin: 0 0 18px;
  color: #5a6a77;
  line-height: 1.7;
  max-width: 760px;
}

.application-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.application-item {
  border: 1px solid #dce9e2;
  border-radius: 14px;
  background: linear-gradient(160deg, #ffffff 0%, #f7fcf9 100%);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.application-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(9, 68, 41, 0.08);
  border-color: #bdd8c8;
}

.application-item img {
  width: 415px;
  min-width: 68px;
  height: 195px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #d7e5dc;
  background: #fff;
}

.application-item h4 {
  margin: 0 0 5px;
  font-size: 16px;
  color: #14472f;
}

.application-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #5d6a75;
}

@media (max-width: 992px) {
  .contact-page .contact-hero-grid,
  .contact-page .contact-main-grid,
  .contact-page .contact-card-grid,
  .contact-page .contact-faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-page .contact-hero-grid,
  .contact-page .contact-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-page .contact-hero h1 {
    font-size: 34px;
  }

  .contact-page .contact-form-wrap h2,
  .contact-page .contact-side h2,
  .contact-page .contact-faq h2 {
    font-size: 26px;
  }

  .contact-page .contact-card-grid,
  .contact-page .contact-form-grid,
  .contact-page .contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .application-list {
    grid-template-columns: 1fr;
  }

  .application-item img {
    width: 58px;
    min-width: 58px;
    height: 58px;
  }
}



