* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #EDEDED;
    font-family: 'Livvic', sans-serif;
}

a {
    text-decoration: none;
}

/* NAVBAR */
.ft-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 0;
    z-index: 1000;
    background: #021f49;
    transition: .4s ease;
}

.ft-navbar.ft-scrolled {
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ft-container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.ft-logo {
    position: relative;
    height: 45px;
}

.ft-logo img {
    height: 45px;
    transition: .3s;
}

.ft-logo-scroll {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.ft-navbar.ft-scrolled .ft-logo-default {
    opacity: 0;
}

.ft-navbar.ft-scrolled .ft-logo-scroll {
    opacity: 1;
}

.ft-navbar.ft-scrolled .ft-logo img {
    height: 40px;
}

/* MENU */
.ft-nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 0;
}

.ft-nav-links li {
    position: relative;
    text-align: center;
}

.ft-nav-links>li>a {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: .3s;
}

.ft-nav-links>li>a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #EC6B02;
    transition: .3s;
}

.ft-nav-links>li>a:hover::after {
    width: 100%;
}

.ft-nav-links>li>a:hover {
    color: #EC6B02;
}

.ft-navbar.ft-scrolled .ft-nav-links>li>a {
    color: #000;
}

/* DROPDOWN */
.ft-dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 520px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .3s ease;
}

.ft-dropdown:hover .ft-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ft-menu-list {
    list-style: none;
    width: 220px;
    padding: 0;
    margin: 0;
}

.ft-menu-list li a {
    display: block;
    padding: 12px 15px;
    color: #000;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.ft-menu-list li a.active {
    background: #002E46;
    color: #fff;
}

.ft-menu-list li a:hover {
    background: #f5f5f5;
    color: #EC6B02;
}

.ft-menu-image {
    width: 260px;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
}

.ft-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

/* BUTTON */
.ft-brochure-wrapper {
    display: flex;
    gap: 10px;
}

.ft-brochure a {
    background: linear-gradient(135deg, #f97316, #EC6B02);
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: .3s;
}

.ft-brochure a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(236, 107, 2, .35);
}

/* TOGGLE */
/* TOGGLE BUTTON */
.ft-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

.ft-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #EC6B02;
    transition: .35s ease;
    border-radius: 10px;
}

.ft-navbar.ft-scrolled .ft-menu-toggle span {
    background: #000;
}

/* WHEN ACTIVE = CLOSE ICON */
.ft-menu-toggle.ft-open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.ft-menu-toggle.ft-open span:nth-child(2) {
    opacity: 0;
}

.ft-menu-toggle.ft-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE */
@media(max-width:992px) {

    .ft-menu-toggle {
        display: flex;
    }

    .ft-brochure-wrapper {
        display: none;
    }

    .ft-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 90px;
        gap: 20px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, .15);
        transition: .4s ease;
    }

    .ft-nav-links.ft-active {
        right: 0;
    }

    .ft-nav-links>li>a {
        color: #002E46;
    }

    .ft-dropdown-menu {
        position: static;
        min-width: 100%;
        display: block;
        box-shadow: none;
        padding: 10px;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
    }

    .ft-dropdown.ft-active .ft-dropdown-menu {
        visibility: visible;
        max-height: 150px;
    }

    .ft-menu-image {
        display: none;
    }

    .ft-menu-list {
        width: 100%;
    }
}

/* =========================
   PAGE BANNER (PREMIUM)
========================= */
.page-banner {
    width: 100%;
    position: relative;
    margin-top: 80px;
    /* space for fixed navbar */
}

.banner-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

/* IMAGE */
.banner-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

/* ZOOM EFFECT */
.banner-wrapper:hover img {
    transform: scale(1.1);
}

/* DARK OVERLAY (GRADIENT) */
.banner-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.7));
}

/* CONTENT */
.page-banner-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
}

/* TITLE */
.page-banner-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    /* animation: fadeUp 1s ease; */
}

/* BREADCRUMB */
.breadcrumb {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    /* animation: fadeUp 1.2s ease; */
}

.breadcrumb li {
    color: #ddd;
}

.breadcrumb li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb li a:hover {
    color: #EC6B02;
}

/* SLASH */
.breadcrumb li::after {
    content: "/";
    margin-left: 8px;
    color: #aaa;
}

.breadcrumb li:last-child::after {
    content: "";
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, -30%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .banner-wrapper {
        height: 260px;
        border-radius: 0 0 15px 15px;
    }

    .page-banner-content h1 {
        font-size: 26px;
    }

    .breadcrumb {
        font-size: 13px;
    }
}

@media (max-width: 480px) {

    .banner-wrapper {
        height: 200px;
    }

    .page-banner-content h1 {
        font-size: 20px;
    }
}

/* ========================= */
/* SIMPLE BANNER VIDEO */
/* ========================= */

.banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
    .banner {
        height: 70vh;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .banner {
        height: 700px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .banner {
        height: 50vh;
    }
}


.about {
    padding: 80px 0;
    /* background: #f8f9fa; */
}

.about-img img {
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about .sub-title-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.about .sub-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #001f6f;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.about .main-title {
    font-size: 35px;
    font-weight: 700;
    color: #021F49;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: left;
}


/* PARAGRAPH */
.about .title-para {
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}


.about-text {
    color: #000000;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: justify;
}

.counter-row {
    margin-top: 5px;
    display: flex;
    gap: 20px;
    /* Better than space-between */
    flex-wrap: wrap;
    /* Prevent overflow */
}

.count-box {
    flex: 1 1 calc(33.333% - 20px);
    background: #ffffff;
    padding: 25px 10px;
    /* border-radius: 10px; */
    text-align: center;
    transition: all 0.3s ease;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06); */
}


.count-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.count-box h3 {
    font-size: 40px;
    font-family: 'Livvic', sans-serif;
    font-weight: 700;
    color: #EC6B02;
    margin-bottom: 10px;
    text-align: left;
}

.count-box h6 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
    text-align: left;
}

.count-box p {
    font-size: 16px;
    color: #000000;
    margin: 0;
    text-align: justify;
    line-height: 1.6;
}

/* ================= TABLET ================= */
@media(max-width:991px){

    .count-box{
        flex: 1 1 calc(50% - 20px);
        padding: 20px 10px;
    }

    .count-box h3{
        font-size: 32px;
    }

    .count-box h6{
        font-size: 20px;
    }

    .count-box p{
        font-size: 15px;
    }
}

/* ================= MOBILE ================= */
@media(max-width:576px){

    .count-box{
        flex: 1 1 100%;
        padding: 18px 5px;
    }

    .count-box h3{
        font-size: 28px;
        text-align: center;
    }

    .count-box h6{
        font-size: 18px;
        text-align: center;
    }

    .count-box p{
        font-size: 14px;
        text-align: center;
        line-height: 1.7;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .about {
        padding: 60px 0;
    }

    .main-title {
        font-size: 28px;
    }

    .about-img {
        margin-bottom: 30px;
    }
}

/* =============================== */
/* PREMIUM SECTION */
/* =============================== */

/* Sticky Effect */
.sticky-section {
    position: sticky !important;
    top: 0;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ========================= */
/* PREMIUM SECTION */
/* ========================= */
.steel-showcase {
    padding: 80px 0;
    background: url("images/premium-bg.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
}

.steel-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

/* Keep content above overlay */
.steel-showcase>* {
    position: relative;
    z-index: 2;
}

/* Only this section layout */
.steel-container {
    display: flex;
    gap: 50px;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

/* LEFT */
.steel-content {
    flex: 1;
    color: #fff;
}


.steel-content .sub-title-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* LEFT ALIGN */
    justify-content: flex-start;
    text-align: left;
}


/* SUBTITLE */
.steel-content .sub-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #001f6f;
    font-weight: 600;
    margin: 0;
}

/* MAIN TITLE */
.steel-content .main-title {
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: left;
}


/* PARAGRAPH */
.steel-content .title-para {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 40px;
}


/* ACTIONS */
.steel-content .steel-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.steel-actions .view-btn a {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    border-radius: 4px;
}

.view-btn a:hover {
    background: #ffffff;
    color: #021f49;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 31, 73, 0.2);
}

/* NAV */
.steel-nav button {
    background: #fff;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 4px;
}

/* THUMBNAILS */
.steel-card-wrapper {
    display: flex;
    /* gap: 15px; */
    justify-content: space-between;
}

.steel-card {
    width: 130px;
    height: 160px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.steel-card img {
    width: 100%;
    height: 160px;
    border-radius: 6px;
}

.steel-card.active {
    opacity: 1;
    transform: scale(1.05);
}

/* RIGHT */
.steel-display {
    flex: 1;
    position: relative;
}

.steel-display img {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    transition: opacity 0.6s ease;
    display: block;
}

/* Overlay layer */
/* .steel-display::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    z-index: 1;
} */

/* Text content */
.steel-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
    /* above overlay */
    background: #ec6b02;
    padding: 5px 25px;
    border-radius: 10px;
    text-align: center;
}

.steel-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0px;
}

.steel-overlay p {
    font-size: 16px;
    color: #ffffff;
    margin: 0px;
}



/* ========================= */
/* RESPONSIVE IMPROVEMENTS */
/* ========================= */

/* Large Tablets (≤ 1200px) */
@media (max-width: 1200px) {
    .steel-container {
        gap: 30px;
    }

    .steel-content .main-title {
        font-size: 30px;
    }

    .steel-display img {
        height: 420px;
    }
}


/* Tablets (≤ 992px) */
@media (max-width: 992px) {

    .steel-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .steel-content {
        width: 100%;
    }

    .steel-display {
        width: 100%;
    }

    .steel-display img {
        height: 380px;
    }

    .steel-content .main-title {
        font-size: 26px;
    }

    .steel-content .title-para {
        font-size: 16px;
    }

    .steel-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-top: 0px;
    }

    .steel-card-wrapper {
        justify-content: flex-start;
        gap: 10px;
        flex-wrap: wrap;
    }

    .steel-card {
        width: 110px;
        height: 140px;
    }

    .steel-card img {
        height: 140px;
    }
}


/* Mobile (≤ 768px) */
@media (max-width: 768px) {

    .steel-showcase {
        padding: 60px 20px;
    }

    .steel-content .main-title {
        font-size: 22px;
    }

    .steel-content .title-para {
        font-size: 15px;
        text-align: left;
    }

    .steel-display img {
        height: 300px;
    }

    .steel-overlay {
        bottom: 15px;
        left: 15px;
        padding: 6px 15px;
    }

    .steel-overlay h3 {
        font-size: 16px;
    }

    .steel-overlay p {
        font-size: 13px;
    }

    .steel-card-wrapper {
        gap: 8px;
        display: none;
    }

    .steel-card {
        width: 90px;
        height: 120px;
    }

    .steel-card img {
        height: 120px;
    }
}


/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {

    .steel-content .sub-title {
        font-size: 12px;
    }

    .steel-content .main-title {
        font-size: 20px;
        line-height: 1.2;
    }

    .steel-content .title-para {
        font-size: 14px;
    }

    .steel-display img {
        height: 240px;
    }

    .steel-overlay {
        padding: 5px 12px;
    }

    .steel-overlay h3 {
        font-size: 14px;
    }

    .steel-overlay p {
        font-size: 12px;
    }

    .steel-card {
        width: 75px;
        height: 100px;
    }

    .steel-card img {
        height: 100px;
    }

    .view-btn a {
        padding: 10px 20px;
        font-size: 12px;
    }

    .details .title-para {
        font-size: 15px !important;
        font-weight: 500;
    }
}

/* ========================= */
/* CLASSIC SECTION */
/* ========================= */

.sticky-section .our-story {
    padding: 72px 24px 80px;
    background: #fffff0 !important;
    overflow: hidden;
}

/* =========================================================
   HEADER
========================================================= */

.story-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(16px);
    transition: 0.5s ease;
}

.story-label.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-label::before,
.story-label::after {
    content: '';
    width: 48px;
    height: 1.5px;
    background: var(--orange);
    border-radius: 10px;
}

.story-title {
    text-align: center;
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--navy);
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.55s ease;
}

.story-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-title span {
    color: var(--orange);
}

.story-sub {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    opacity: 0;
    transform: translateY(16px);
    transition: 0.5s ease;
}

.story-sub.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   MAIN GRID
========================================================= */

.story-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: center;
}

/* =========================================================
   COLLECTION PANEL
========================================================= */

.collection-panel {
    opacity: 0;
    transform: translateX(-24px);
    transition: 0.55s ease;
}

.collection-panel.visible {
    opacity: 1;
    transform: translateX(0);
}

.collection-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
    padding: 0;
}

/* =========================================================
   COLLECTION ITEM
========================================================= */

.collection-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background: #ffffff;
    border: 2px solid transparent;
    transition: all 0.45s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* IMAGE */

.collection-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease, filter 0.6s ease;
}

/* OVERLAY */

.collection-item::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background:linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15), transparent); */
    z-index: 1;
    transition: opacity 0.4s ease;
}

/* INFO */

.item-info {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
}

.item-name {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

/* ARROW */

.item-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    font-size: 15px;
}

/* HOVER */

.collection-item:hover {
    transform: translateY(-6px);
    border-color: #FF8500;
    box-shadow: 0 18px 40px rgba(232, 98, 42, 0.18);
}

.collection-item:hover img {
    /* transform: scale(1.08); */
    filter: brightness(1.06);
}

.collection-item:hover .item-arrow {
    background: var(--orange);
    transform: translateX(3px);
}

/* ACTIVE */

.collection-item.active {
    border-color: #FF8500;
    box-shadow: 0 18px 40px rgba(232, 98, 42, 0.22);
}

.collection-item.active img {
    transform: scale(1.04);
}

/* =========================================================
   FEATURE CARD
========================================================= */

.feature-card {
    height: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 480px;
    background: #22376C;
    border-radius: 10px;
    box-shadow: 0 24px 60px rgba(15, 28, 46, .18);
    opacity: 0;
    transform: translateY(28px);
    transition: 0.6s ease;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   CARD INFO
========================================================= */

.card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.card-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at bottom left,
            rgba(232, 98, 42, 0.22),
            transparent 60%);
    pointer-events: none;
}

.card-headline {
    font-size: clamp(30px, 4vw, 30px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 25px;
    margin-top: 20px;
    transition: 0.3s ease;
}

.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    /* margin-bottom: 34px; */
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
}

.feat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 1.5px solid rgba(232, 98, 42, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
    background: rgba(255, 255, 255, 0.03);
}

/* =========================================================
   BUTTON
========================================================= */

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #002E46;
    padding: 5px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.35s ease;
    width: fit-content;
}

.card-cta:hover {
    background: var(--orange);
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-arrow {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--orange);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
}

.card-cta:hover .cta-arrow {
    background: #ffffff;
    color: var(--orange);
}

/* =========================================================
   CARD IMAGE
========================================================= */

.card-image {
    position: relative;
    overflow: hidden;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -36px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease, opacity .4s ease;
}

.feature-card:hover .card-image img {
    transform: scale(1.05);
}


.feat-icon i {
    font-size: 18px;
    color: var(--orange);
    transition: transform 0.35s ease, color 0.35s ease;
}

.feat-item:hover .feat-icon i {
    transform: scale(1.15) rotate(-6deg);
    color: #ffffff;
}

.feat-item:hover .feat-icon {
    background: var(--orange);
    border-color: var(--orange);
}
/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 960px) {

    .story-grid {
        grid-template-columns: 1fr;
    }

    .collection-panel {
        order: 2;
    }

    .collection-list {
        flex-direction: row;
        flex-wrap: wrap;
        display: none;
    }

    .collection-item {
        width: calc(50% - 8px);
    }

    .collection-item img {
        height: 140px;
    }

    .feature-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .card-info {
        clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
        padding: 40px 32px 52px;
    }

    .card-image {
        clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
        margin-left: 0;
        margin-top: -28px;
        min-height: 320px;
    }
}

@media (max-width: 600px) {
    .sticky-section .our-story{
        padding: 20px 15px;
    }

    .card-features{
        display: none;
    }

    .our-story {
        padding: 52px 16px 60px;
    }

    .story-title {
        font-size: 34px;
    }

    .collection-item {
        width: 100%;
    }

    .collection-item img {
        height: 210px;
    }

    .item-name {
        font-size: 18px;
    }

    .card-headline {
        font-size: 38px;
    }

    .card-info {
        padding: 30px 24px 42px;
    }

    .feat-icon {
        width: 46px;
        height: 46px;
    }
}




/* =========================
   ANTIQUE SECTION
========================= */
.antique {
    padding: 80px 0;
    background: url("images/antique-bg.webp") no-repeat center center;
    background-size: cover;
    position: relative;
}

.antique-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

/* =========================
   LEFT CONTENT
========================= */

.antique-content {
    flex: 0 0 28%;
}

.antique .sub-title-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.antique .sub-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #001f6f;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.antique .main-title {
    font-size: 35px;
    font-weight: 700;
    color: #021F49;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: left;
}


/* PARAGRAPH */
.antique .title-para {
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

/* =========================
   STEEL ACTIONS (FIXED)
========================= */

.steel-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* =========================
   VIEW BUTTON
========================= */

.antique .view-btn a {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #021f49;
    color: #021f49;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    border-radius: 4px;
}

.antique .view-btn a:hover {
    background: #021f49;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 31, 73, 0.2);
}

/* =========================
   ARROWS
========================= */

.arrow-btns {
    display: flex;
    gap: 15px;
    pointer-events: auto !important;
}

.premium-antique-next,
.premium-antique-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #EC6B02;
    background: transparent;
    color: #EC6B02;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

.antique-prev,
.antique-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

.antique-prev:hover:not(:disabled),
.antique-next:hover:not(:disabled) {
    background: #ffffff;
    color: #B87333;
    transform: scale(1.1);
}

.antique-prev:disabled,
.antique-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #ccc;
    color: #ccc;
}

/* =========================
   RIGHT SLIDER (FIXED)
========================= */

.antique-slider-wrapper {
    flex: 0 0 70%;
    overflow: hidden;
    position: relative;
}

.antique-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.antique-imgbox {
    flex: 0 0 calc((100% - 40px) / 3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

/* =========================
   NAME BOX (NO HOVER EFFECT)
========================= */

.name-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    color: #000000;
    padding: 5px 5px;
    text-align: center;
    transform: translateY(0);
    transition: none;
}

.name-box h3 {
    font-size: 20px;
    margin: 0 0 5px;
    color: #EC6B02;
    font-weight: 600;
}

.name-box p {
    font-size: 16px;
    margin: 0;
    color: #021F49;
    font-weight: 500;
}

.name-box hr {
    margin: 5px auto;
    width: 60px;
    border: 1px solid #EC6B02;
}

/* =========================
   IMAGES
========================= */

.antique-imgbox img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.antique-imgbox:hover img {
    transform: scale(1.05);
}

/* =========================
   RESPONSIVE DESIGN (FIXED)
========================= */

/* Tablet */
@media (max-width: 992px) {
    .antique-content {
        flex: 0 0 100%;
        text-align: center;
    }

    .antique-wrapper {
        gap: 40px;
    }

    .antique-slider-wrapper {
        flex: 0 0 100%;
    }

    .antique-imgbox {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .steel-actions {
        justify-content: center;
        margin-top: 0px;
    }

    .antique .main-title {
        text-align: center;
    }

    .antique .small-para {
        text-align: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .antique {
        padding: 60px 0;
    }

    .antique-imgbox {
        flex: 0 0 100%;
    }

    .antique-imgbox img {
        height: 350px;
    }

    .name-box h3 {
        font-size: 18px;
    }

    .name-box p {
        font-size: 14px;
    }

    .arrow-btns {
        justify-content: center;
    }

    .steel-actions {
        flex-direction: column;
        gap: 20px;
        margin-top: 0px !important;
    }

    .antique .view-btn a {
        padding: 12px 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .antique-imgbox img {
        height: 500px;
    }

    .antique-prev,
    .antique-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */
@media (max-width: 1200px) {
    .antique-imgbox {
        flex: 0 0 calc(50% - 20px);
    }

    .antique-imgbox img {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .antique-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .antique-content,
    .antique-slider-wrapper {
        flex: 100%;
        width: 100%;
    }

    .antique-content {
        text-align: center;
    }

    .arrow-btns {
        justify-content: center;
        display: none;
    }

    .details {
        top: 180px;
        left: 40px;
        right: 40px;
    }

    .pagination {
        left: 40px;
        bottom: 40px;
    }

    .progress-sub-container {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .sticky-section {
        min-height: auto;
        /* height: 650px; */
        padding: 60px 0;
    }

    .premium-card {
        min-width: 280px;
    }

    .card-img {
        height: 300px;
    }

    .antique-imgbox {
        flex: 0 0 100%;
        margin: 0;
    }

    .antique-imgbox img {
        height: 400px;
    }

    .details {
        top: 140px;
        left: 20px;
        right: 20px;
    }

    .details .desc {
        max-width: 100%;
        font-size: 14px;
    }

    .pagination {
        left: 20px;
        bottom: 30px;
        gap: 15px;
    }

    .progress-sub-container {
        width: 150px;
    }

    .pagination .arrow {
        width: 40px;
        height: 40px;
    }

    .main-titles {
        font-size: 36px;
        margin-top: -30px;
    }

    .side-nav {
        left: -20px;
    }

    .arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .details .cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .details .cta .discover {
        margin-left: 0;
        width: 100%;
    }

    .progress-sub-container {
        width: 100px;
    }

    .premium-card {
        min-width: 260px;
    }

    .card-img {
        height: 250px;
    }

    .main-titles {
        font-size: 28px;
        margin-top: -25px;
    }
}

/* Utility Classes */
.text-gold {
    color: #ecad29;
}

.bg-gold {
    background-color: #ecad29;
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}




/* ============================= */
/* WHY CHOOSE SECTION */
/* ============================= */

.why-choose {
    padding: 50px 0;
    background: url(images/whychoose-bg.webp) center center no-repeat;
    background-size: cover;
    position: relative;
}

/* .why-choose::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
} */

.why-choose .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.why-choose .sub-title-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
}

.why-choose .sub-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #001f6f;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.why-choose .main-title {
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: center;
}


/* PARAGRAPH */
.why-choose .title-para {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

/* ============================= */
/* FEATURE BOXES */
/* ============================= */

.choose-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.choose-box {
    padding: 20px 10px;
    background: rgb(214 199 190);
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

/* Gold Top Border Animation */
.choose-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #EC6B02;
    transition: width 0.4s ease;
}

.choose-box i {
    font-size: 50px;
    margin-bottom: 15px;
    color: #EC6B02;
    transition: all 0.4s ease;
}

.choose-box h6 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #111;
    transition: 0.3s;
}

.choose-box p {
    font-size: 17px;
    color: #000000;
    margin: 0;
    line-height: 1.6;
    text-align: justify;
}

/* Hover Effects */
.choose-box:hover {
    /* transform: translateY(-12px); */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.choose-box:hover::before {
    width: 100%;
}

.choose-box:hover i {
    transform: scale(1.15) rotate(5deg);
    color: #EC6B02;
}

.choose-box:hover h6 {
    color: #001f6f;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
    .why-choose {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .why-choose {
        padding: 60px 0;
    }

    .why-choose .m-title {
        font-size: 24px;
    }

    .choose-box {
        padding: 25px 20px;
    }
}


.gallery {
    position: relative;
    width: 100%;
    /* height: 650px; */
    overflow: hidden;
    margin: 50px 0px;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Center Content */
.gallery .button1 {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Premium Button Style */
.view-btns a {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 600;
}

/* Hover Effect */
.view-btns a:hover {
    background: #ffffff;
    color: #000000;
}




/* SECTION */
.testimonial {
    padding: 60px 0;
    background: #f5f7fa;
}

.testimonial-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* CARD */
/* CARD WRAPPER */
.testimonial-section {
    min-width: 50%;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    /* 👈 IMPORTANT */
}

/* MAIN BOX */
.testimonial-box {
    display: flex;
    background: #c4d6e3;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
    flex: 1;
    /* 👈 pushes footer down */
}

/* LEFT IMAGE */
.testimonial-left {
    width: 35%;
}

.testimonial-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT CONTENT */
.testimonial-right {
    width: 65%;
    padding: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* TEXT */
.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
}

/* QUOTES */
.quote-icon {
    position: absolute;
    font-size: 40px;
    opacity: 0.6;
}

.quote-icon.top {
    top: 10px;
    left: 15px;
}

.quote-icon.bottom {
    bottom: 10px;
    right: 15px;
}

/* ✅ FOOTER FIX */
.testimonial-footer {
    background: #021f49;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-radius: 0 0 6px 6px;

    /* IMPORTANT FIXES */
    width: 100%;
    flex-shrink: 0;
    /* 👈 prevents hiding */
}

/* TEXT */
.client-info h3,
.company-info h3 {
    margin: 0;
    font-size: 16px;
}

.client-info p,
.company-info p {
    margin: 3px 0 0;
    font-size: 14px !important;
    opacity: 0.8;
}

.company-info {
    text-align: right;
}

.location i {
    margin-right: 6px;
    color: #fff;
    /* or your theme color */
    font-size: 14px;
}

/* CONTROLS WRAPPER */
.test-controls {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* BUTTONS */
.test-controls button {
    width: 45px;
    height: 45px;
    border: none;
    background: #002E46;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* HOVER */
.test-controls button:hover {
    background: #014d6b;
    transform: translateY(-2px);
}

/* ACTIVE CLICK */
.test-controls button:active {
    transform: scale(0.95);
}

/* MOBILE */
@media (max-width: 768px) {
    .testimonial-section {
        min-width: 100%;
    }

    .testimonial-box {
        flex-direction: column;
    }

    .testimonial-left,
    .testimonial-right {
        width: 100%;
    }

    .testimonial-footer {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .company-info {
        text-align: center;
    }
}





/* SECTION */
.faq {
    padding: 80px 0;
}

.faq-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* LEFT SIDE */
.faq-left {
    flex: 1;
}

.faq-left h1 {
    font-size: 42px;
    font-weight: 700;
    text-transform: capitalize;
    color: #021F49;
}

.faq-left h1:nth-child(2) {
    margin-bottom: 35px;
}

.faq-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
}

/* RIGHT SIDE */
.faq-right {
    flex: 1;
}

/* FAQ ITEM */
.faq-item {
    border-bottom: 1px solid #2c2c2c;
    padding: 10px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0px;
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 22px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* 🔥 Hover Effect */
.faq-question:hover h3 {
    color: #EC6B02;
    /* change to your theme color */
}

.faq-question:hover .faq-icon {
    /* transform: rotate(90deg); */
    color: #EC6B02;
}

/* ANSWER */
.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
}

.faq-answer p {
    padding-top: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    margin: 0px;
}

/* ACTIVE */
.faq-item.active .faq-icon {
    /* transform: rotate(45deg); */
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .faq-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .faq-left {
        text-align: center;
    }

    .faq-left h1 {
        font-size: 32px;
    }

    .faq-left p {
        font-size: 16px;
    }
}

/* SECTION */
.exhibitions {
    padding: 80px 0;
    background: #dcdcdc;
}

.exhibitions .sub-title {
    font-size: 16px;
    color: #EC6B02;
}

.exhibitions .m-title {
    font-size: 34px;
    font-weight: 700;
}

/* CARD */
.exhibitions-box {
    background: #fff;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    padding: 15px;
    margin-top: 10px;
}

/* IMAGE */
.box-img {
    overflow: hidden;
}

.box-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.5s ease;
}

/* TEXT */
.box-txt {
    padding-top: 15px;
}

.box-txt h3 {
    font-size: 22px !important;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 10px;
}

/* META INFO */
.meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 10px;
}

.meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000000;
}

.meta i {
    color: #000;
}

/* HOVER EFFECT */
.exhibitions-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.exhibitions-box:hover img {
    transform: scale(1.08);
}

.exhibitions-action {
    display: flex;
    /* align-items: center; */
    /* gap: 30px; */
    /* flex-wrap: wrap; */
    justify-content: center;
    margin-top: 50px;
}

.exhibitions-action .view-btn a {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #021f49;
    color: #021f49;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    border-radius: 4px;
}

.exhibitions-action .view-btn a:hover {
    background: #021f49;
    color: #ffffff;
    transform: translateY(-2px);

}

/* MOBILE FIX */
@media (max-width: 768px) {

    .box-img img {
        height: 220px;
    }

    .box-txt h3 {
        font-size: 18px;
    }

    .meta {
        flex-direction: column;
        align-items: flex-start;
    }
}



.main-footer {
    background: #ffffff;
    padding: 60px 0 20px;
    color: #000;
}

.footer-about p {
    text-align: justify;
}


/* Logo */
.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

/* Titles */
.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #001f6f;
    position: absolute;
    left: 0;
    bottom: -8px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #001f6f;
    padding-left: 5px;
}

/* Contact */
.footer-contact i {
    color: #001f6f;
    font-size: 20px;
}

/* Social */
.footer-social a {
    width: 38px;
    height: 38px;
    background: #22376c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #001f6f;
    transform: translateY(-3px);
}

/* Map */
.footer-map iframe {
    border-radius: 8px;
    height: 300px;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #ddd;
    font-size: 14px;
}

.footer-bottom a {
    color: #001f6f;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ================= JOIN SECTION ================= */

.join {
    position: relative;
    padding: 50px 0;
    background-image: url("images/partner-bg.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.join-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    background: #fff;
    padding: 30px;
}

/* Equal Width Columns */
.join-left,
.join-img,
.join-form {
    flex: 1;
    width: 100%;
}

/* ================= LEFT CONTENT ================= */
.join .sub-title-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.join .sub-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #001f6f;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.join .main-title {
    font-size: 35px;
    font-weight: 700;
    color: #021F49;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: left;
}


/* PARAGRAPH */
.join .title-para {
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

/* List */
.join-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.join-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #222;
}

.join-list i {
    width: 45px;
    height: 45px;
    background: #021F49;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

/* ================= IMAGE ================= */

.join-img {
    overflow: hidden;
}

.join-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* .join-img:hover img {
    transform: scale(1.05);
} */

/* ================= FORM ================= */

.join-form h2 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.join form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.join input {
    padding: 15px 10px;
    border: none;
    /* remove full border */
    border-bottom: 1px solid #000;
    /* keep only bottom */
    font-size: 14px;
    transition: 0.3s ease;
}

/* Focus effect */
.join-form input:focus,
.join-form textarea:focus,
.join-form select:focus {
    border-bottom: 1px solid #c19a5b;
    outline: none;
    box-shadow: none;
}

.submit-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #021f49;
    background-color: #fff;
    color: #021f49;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 600;
}

.submit-btn:hover {
    background: #021f49;
    color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .join-wrapper {
        flex-direction: column;
        text-align: left;
        padding: 15px;
        border-radius: 10px;
    }

    .join-list li {
        justify-content: left;
    }

    .join-img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .join {
        padding: 60px 20px;
    }

    .join .m-title {
        font-size: 24px;
    }

    .join-form h2 {
        font-size: 20px;
    }
}



.floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
}

/* Common Button Style */
.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: all 0.4s ease;
    animation: floatUpDown 2.5s infinite ease-in-out;
}

/* Phone Button */
.phone-btn {
    background: linear-gradient(135deg, #0066ff, #00c6ff);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.4);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #1ebe5d, #25D366);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Hover Effect */
.float-btn:hover {
    transform: scale(1.1);
}

/* Soft Pulse Effect */
.float-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.4;
    z-index: -1;
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}


/* products page */


.products {
    padding: 80px 0;
    text-align: center;
}

.products .sub-title {
    font-size: 14px;
    color: #000000;
    letter-spacing: 2px;
}

.products .main-title {
    font-size: 35px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;
}


/* GRID FIX */
.sub-products,
.products .row-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 15px;
    /* justify-content: space-between; */
}


.products .row-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 15px;
    /* justify-content: space-between; */
}


/* CARD */
.row-1 .product-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 0px;
    flex: 0 0 24%;
    max-width: 24%;
    transition: 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.row-2 .product-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 0px;
    flex: 0 0 24%;
    max-width: 24%;
    transition: 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}


.product-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */
.product-card h3 {
    font-size: 23px;
    font-weight: 600;
}

.product-card img {
    /* width: 100%; */
    height: 375px;
    margin: 0px 0px 10px 0;
    border-radius: 5px;
}

/* BUTTONS */
.card-btn {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0px 10px 10px 10px;
}

/* Common styles for both */
.card-btn a {
    display: inline-block;
    text-align: center;
    padding: 6px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

/* View Button */
.view {
    background: #021F49;
    color: #fff;
}

.view:hover {
    background: #EDEDED;
    color: #021F49;
    border: 1px solid #021F49;
}

/* Enquiry Button */
.enquiry {
    color: #021F49;
    background: #ffffff;
    border: 1px solid #021F49;
}

.enquiry:hover {
    background: #021F49;
    color: #fff;
}

/* Hover Animation */
.card-btn a:hover {
    transform: translateY(-2px);
}

/* ✅ RESPONSIVE */


/* ========================= */
/* ✅ LARGE TABLET 3 CARDS */
/* ========================= */
@media (max-width: 992px) {
    .product-card {
        flex: 0 0 31.5%;
        max-width: 31.5%;
    }

    .products .main-title {
        font-size: 30px;
    }

    .product-card h3 {
        font-size: 20px;
    }
}

/* ========================= */
/* ✅ TABLET 2 CARDS */
/* ========================= */
@media (max-width: 768px) {

    .row-1 .row-2 .product-card {
        flex: 0 0 50%;
    }

    .row-1 .row-2.product-card {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .product-card img {
        /* height: 100%; */
        margin-top: 10px;
    }

    .products {
        padding: 60px 0;
    }
}

/* ========================= */
/* ✅ MOBILE 1 CARD */
/* ========================= */
@media (max-width: 576px) {

    .products .row-1 {
        display: block;
    }

    .product-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .products .main-title {
        font-size: 24px;
    }

    .products .sub-title {
        font-size: 12px;
    }

    .product-card h3 {
        font-size: 18px;
    }

    .product-card img {
        /* height: 100%; */
        margin-top: 10px;
    }

    .card-btn {
        flex-direction: column;
    }

    .card-btn a {
        width: 100%;
    }
}

/* product details page */


.product-details {
    padding: 60px 0;
    background: #f5f5f5;
}

.product-wrapper {
    display: flex;
    gap: 20px;
}

/* LEFT SIDE */
.product-image {
    flex: 1;
    width: 100%;
    max-width: 500px;
    margin: auto;
}


.image-box {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    border: 1px solid #ddd;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.image-box.zoomed img {
    transform: scale(2);
    /* zoom level */
}

/* .image-box {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: zoom-in;
    position: relative;
    background: #fff;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.25s ease;
    transform-origin: center center;
}

.image-box.zoomed img {
    transform: scale(2.2);
} */

/* RIGHT SIDE */
.product-content {
    flex: 1;
    padding-right: 10px;
}

.product-content .sub-title-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.product-content .sub-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #001f6f;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.product-content .main-title {
    font-size: 35px;
    font-weight: 700;
    color: #021F49;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: left;
}


/* PARAGRAPH */
.product-content .title-para {
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    /* margin-bottom: 20px; */
    text-align: justify;
}

/* TABLE */
.table {
    background: #CEDEEC;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.table .row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.table .row span {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 15px;
}

.head span {
    background: transparent;
    font-weight: bold;
    color: #000000;
}

/* BUTTONS */
.btns {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.btns button {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btns button {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquirys {
    background: #1565C0;
    color: #fff;
}

.enquirys:hover {
    background: #0d47a1;
}

.book {
    background: #25D366;
    color: #fff;
}

.book:hover {
    background: #0b7632;
}

/* SCROLLBAR STYLE */
.product-content::-webkit-scrollbar {
    width: 6px;
}

.product-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.product-content::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 10px;
}

.product-content::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* EXTRA CONTENT STYLING */
.extra {
    margin-top: 40px;
}

.extra p {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .product-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .image-box {
        position: relative;
        top: 0;
        height: 400px;
    }

    .btns {
        flex-direction: column;
    }

    .table .row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .head {
        display: none;
    }

    .table .row span {
        text-align: left;
        padding: 8px 12px;
    }

    .table .row span:before {
        content: attr(data-label);
        font-weight: bold;
        display: inline-block;
        width: 0px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .product-details {
        padding: 30px 0;
    }

    .image-box {
        height: 300px;
    }

    .image-box img {
        height: 300px;
    }

    .product-content h2 {
        font-size: 26px;
    }
}



.sub-products {
    /* background-color: #F5F5F5 !important; */
    padding: 40px 0px;
}

.sub-products .main-title {
    margin-top: 10px;
    margin-bottom: 15px;
}

.sub-products h1 {
    font-size: 30px;
    margin-bottom: 20px;
}

.sub-products .row-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    /* justify-content: space-between !important; */
    text-align: center;
}


.similar-products {
    padding: 40px 0;
    background: #CEDEEC;
}


/* Title */
.main-title {
    font-size: 35px;
    font-weight: 700;
    color: #021F49;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 15px;
}

/* Wrapper */
.slider-wrapper {
    position: relative;
}

/* Slider */
.slider-container {
    overflow: hidden;
    width: 100%;
}

/* Track */
.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.7s ease-in-out;
    will-change: transform;
}

/* Card */
.product-card {
    flex: 0 0 calc(25% - 14px);
    background: #fff;
    border-radius: 10px;
    /* padding: 15px; */
    text-align: center;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Image */
.similar-products .product-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Buttons */
.card-btn button {
    width: 100%;
    /* margin-top: 5px; */
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}

.card-btn .view {
    background: #021F49;
    color: #fff;
}

.card-btn .enquirys {
    border: 2px solid #021F49;
    color: #021F49;
    background: transparent;
}

.card-btn .enquirys:hover {
    background: #021F49;
    color: #fff;
}


/* Arrows */
.slider-prev-btn,
.slider-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #021F49;
    color: #fff;
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    z-index: 10;
    transition: 0.3s;
}

.slider-prev-btn {
    left: -100px;
}

.slider-next-btn {
    right: -100px;
}

.slider-prev-btn:hover,
.slider-next-btn:hover {
    background: #ff4d4d;
    transform: translateY(-50%) scale(1.1);
}

/* Tablet */
@media (max-width: 992px) {
    .product-card {
        flex: 0 0 calc(50% - 10px);
    }

    .slider-prev-btn {
        left: -40px;
    }

    .slider-next-btn {
        right: -40px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .sub-products .row-1 {
        display: block;
    }

    .product-card {
        flex: 0 0 100%;
    }

    .slider-prev-btn,
    .slider-next-btn {
        display: none;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .product-card {
        flex: 0 0 calc(50% - 10px);
    }

    .prev {
        left: -40px;
    }

    .next {
        right: -40px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .product-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .prev,
    .next {
        display: none;
    }
}





/* contact page */





/* Section */
.connect {
    padding: 50px 0;
    /* background: #f5f9ff; */
}

/* Titles */
.connect .sub-title {
    text-transform: uppercase;
    color: #0a4da3;
    letter-spacing: 2px;
    font-size: 14px;
    text-align: center;
    /* margin-bottom: 10px; */
}

.connect .main-title {
    font-size: 35px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #021F49;
}

.connect .classic-para {
    max-width: 1000px;
    margin-bottom: 40px;
    color: #000000;
    text-align: center;
    line-height: 1.6;
    margin: 0px auto;
    font-size: 18px;
}


.connect-box {
    margin: 30px 0px;
}

/* Map */
.map iframe {
    width: 100%;
    height: 100%;
    min-height: 435px;
    border: 0;
    border-radius: 10px;
}


/* Cards */
.reg-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    height: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    margin-bottom: 25px;
}

.reg-box:hover {
    transform: translateY(-5px);
}

/* Icon */
.reg-icon {
    width: 50px;
    height: 50px;
    background: #021F49;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
}

/* Replace <i> text with icon style */
.reg-icon i {
    font-style: normal;
}

/* Details */
.reg-details h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #021F49;
    text-transform: capitalize;
}

.reg-details p {
    margin: 0;
    color: #000000;
    font-size: 17px;
    line-height: 1.6;
}

.reg-details p {
    text-decoration: none;
}

/* Social icons */
.social-icons {
    margin-top: 10px;
    display: flex;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    font-size: 18px;
    color: #ffffff;
    background: #001f6f;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Hover effect */
.social-icons a:hover {
    background: #0a4da3;
    color: #fff;
    transform: translateY(-3px);
}



/* Responsive */
@media (max-width: 992px) {

    .col-8,
    .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .map iframe {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 26px;
    }

    .classic-para {
        font-size: 14px;
    }

    .reg-box {
        padding: 15px;
    }
}

.showrooms {
    padding: 80px 0;
    background: #f5f7fa;
}

/* GRID */
.locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.location-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    position: relative;
}

.location-card:hover {
    transform: translateY(-8px);
}

/* HEADER */
.location-card h3 {
    color: #fff;
    padding: 20px;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
}

/* COLORS */
.location-card.green h3 {
    background: linear-gradient(135deg, #8bc34a, #689f38);
}

.location-card.orange h3 {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

/* IMAGE */
.location-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.location-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CURVED WHITE OVERLAY */
/* .location-img::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    border-top-left-radius: 100% 80px;
    border-top-right-radius: 100% 80px;
} */

/* LIST SECTION */
.location-list {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

/* LIST STYLE */
.location-list ul {
    list-style: none;
    padding: 0;
    margin: 0px;
}

.location-list ul li {
    font-size: 17px;
    color: #000000;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

/* ICON DOT */
.location-list ul li::before {
    content: "📍";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff7a00;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .locations {
        grid-template-columns: 1fr;
    }

    .location-list {
        flex-direction: column;
        gap: 10px;
    }
}


.support-section {
    padding: 60px 0px;
    /* background: #f5f7fb; */
    background-image: url(images/partner-bg.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.support-section h2 {
    font-size: 30px;
    color: #001f6f;
    text-align: center;
}

.support-wrapper {
    /* max-width: 1200px; */
    margin: auto;
    background-color: #fff;
    padding: 20px;
}

/* Tabs */
.support-tabs {
    text-align: center;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.tab-btn {
    padding: 10px 25px;
    border: none;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 25px;
    transition: 0.3s;
}

.tab-btn.active {
    background: #001f6f;
    color: #fff;
}

/* Grid */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Left */

.support-section .sub-title-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.support-section .sub-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #001f6f;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.support-section .main-title {
    font-size: 35px;
    font-weight: 700;
    color: #021F49;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: left;
}


/* PARAGRAPH */
.support-section .title-para {
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.support-list {
    list-style: none;
    padding: 0;
}

.support-list li {
    margin-bottom: 10px;
}

/* Image */
.support-image img {
    width: 100%;
    border-radius: 10px;
}

.join-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.join-form input,
.join-form textarea,
.join-form select {
    padding: 15px 10px;
    border: 1px solid #000;
    font-size: 14px;
    width: 100%;
    transition: 0.3s ease;
}

/* Phone + Email row */
.form-row {
    display: flex;
    gap: 10px;
}

.form-row input {
    width: 100%;
}

/* Focus effect */
.join-form input:focus,
.join-form textarea:focus,
.join-form select:focus {
    border-color: #c19a5b;
    outline: none;
    box-shadow: 0 0 0 2px rgba(193, 154, 91, 0.15);
}

/* Responsive */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}

/* Tabs Content */
.tab-content {
    display: none;
    opacity: 0;
    transition: 0.3s;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-image {
        order: -1;
    }

    .support-left,
    .support-form {
        text-align: center;
    }
}



/* SECTION */
.faq-section {
    padding: 80px 0px;
}

/* WRAPPER */
.faq-wrap {
    /* max-width: 900px; */
    margin: auto;
}

/* Titles */
.faq-section .sub-title {
    text-transform: uppercase;
    color: #0a4da3;
    letter-spacing: 2px;
    font-size: 14px;
    text-align: center;
    /* margin-bottom: 10px; */
}

.faq-section .main-title {
    font-size: 35px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #021F49;
}

.faq-section .title-para {
    max-width: 1000px;
    margin-bottom: 40px;
    color: #000000;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 18px;
}



/* ACCORDION */
.faq-accordion {
    width: 100%;
}

/* CARD */
.faq-card {
    margin-bottom: 15px;
}

/* BUTTON */
.faq-btn {
    width: 100%;
    background: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-btn:hover {
    background: #f9f9f9;
}

/* ICON */
.faq-icon {
    font-size: 22px;
    color: #b08b57;
    transition: 0.3s;
}

/* ACTIVE */
.faq-card.open .faq-icon {
    transform: rotate(45deg);
}

/* CONTENT */
.faq-content {
    max-height: 0;
    overflow: hidden;
    background: #dddddd;
    transition: max-height 0.3s ease;
    /* border-radius: 0 0 6px 6px; */
    padding: 0 20px;
}

.faq-content p {
    padding: 15px 0;
    font-size: 15px;
    color: #000000;
}

/* SHOW */
.faq-card.open .faq-content {
    max-height: 200px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .faq-heading {
        font-size: 30px;
    }

    .faq-desc {
        font-size: 14px;
    }

    .faq-btn {
        font-size: 16px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 15px;
    }

    .faq-heading {
        font-size: 26px;
    }

    .faq-btn {
        font-size: 15px;
    }
}



/* about page */



/* OUR STORY */
.our-story {
    padding: 50px 0;
    /* background: #f8fafd; */
}

/* CENTER CONTENT */
.title-box {
    text-align: center;
    /* max-width: 850px; */
    margin: 0 auto;
}

/* FLEX ROW (LOGO + TEXT) */
.sub-title-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* LOGO + SUBTITLE ROW */
.sub-title-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px !important;
    background-color: #D6DCE8 !important;
    padding: 5px 10px 5px 5px !important;
    border-radius: 20px !important;
    margin-bottom: 0px !important;
    width: fit-content;
}

/* LOGO */
.sub-title-logo img {
    width: 25px;
    height: auto;
}

/* SUB TITLE */
.sub-title {
    font-size: 14px;
    /* letter-spacing: 2px; */
    font-weight: 600;
    margin: 0;
    color: #051F36 !important;
}

/* MAIN TITLE */
.main-title {
    font-size: 35px;
    font-weight: 700;
    color: #021F49;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 15px;
    font-family: 'Livvic', sans-serif;
}

.main-title span {
    color: #EC6B02;
}

/* PARAGRAPH */
.title-para {
    font-size: 18px;
    color: #202020;
    line-height: 1.6;
    max-width: 1000px;
    margin-bottom: 20px !important;
    font-family: 'Livvic', sans-serif;
    font-weight: 400 !important;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 768px) {
    .our-story {
        padding: 60px 0;
    }

    .main-title {
        font-size: 28px;
    }

    .title-para {
        font-size: 15px;
        text-align: justify;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .our-story {
        padding: 50px 0;
    }

    /* STACK LOGO + TEXT */
    .sub-title-logo {
        flex-direction: column;
        gap: 5px;
    }

    .sub-title-logo img {
        width: 38px;
    }

    .sub-title {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .main-title {
        font-size: 22px;
    }

    .title-para {
        font-size: 14px;
        text-align: justify;
    }
}

/* SECTION */
.we-are {
    padding: 50px 0;
    /* background: #ffffff; */
}


/* IMAGE */
.are-img {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.are-img img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    display: block;
}

/* TEXT */
.are-text {
    width: 100%;
}

.we-are .sub-title-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* LEFT ALIGN */
    justify-content: flex-start;
    text-align: left;
}


/* SUBTITLE */
.we-are .sub-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #001f6f;
    font-weight: 600;
    margin: 0;
}

/* MAIN TITLE */
.we-are .main-title {
    font-size: 35px;
    font-weight: 700;
    color: #021F49;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 15px;
}


/* PARAGRAPH */
.we-are .title-para {
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 10px !important;
}

/* WRAPPER */
.presence-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    border-radius: 10px;
}

/* EACH ITEM */
.presence {
    flex: 1;
    /* min-width: 120px; */
    max-width: 200px;
    text-align: center;
    padding: 20px 10px;
    border-radius: 5px;
    background: #D6DCE8;
    transition: 0.3s ease;
}

/* NUMBER */
.presence h1 {
    font-size: 30px;
    color: #001f6f;
    margin-bottom: 5px;
    font-weight: 800;
    /* font-style: italic; */
    font-family: 'Livvic', sans-serif;
}

/* LABEL */
.presence h6 {
    font-size: 16px;
    color: #000000;
    font-weight: 600;
    margin: 0;
}

/* HOVER EFFECT */
.presence:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 768px) {
    .presence {
        flex: 1 1 45%;
    }

    .presence h1 {
        font-size: 28px;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .presence {
        flex: 1 1 100%;
        padding: 15px;
    }

    .presence h1 {
        font-size: 24px;
    }

    .presence h6 {
        font-size: 13px;
    }
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
    .row {
        gap: 25px;
        padding: 10px;
    }

    .main-title {
        font-size: 28px;
    }

    .title-para {
        font-size: 15px;
        text-align: justify;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .are-img {
        margin-bottom: 20px;
    }

    .title-box {
        max-width: 100%;
    }

    .main-title {
        font-size: 24px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .we-are {
        padding: 50px 0;
    }

    .sub-title-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .sub-title-logo img {
        width: 38px;
    }

    .sub-title {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .main-title {
        font-size: 20px;
    }

    .title-para {
        font-size: 14px;
        text-align: justify;
    }
}



/* SECTION */
.mission {
    padding: 80px 0;
    /* background: #f8fafd; */
}

/* STACK BOXES */
.vision-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.vision-box:hover {
    transform: translateY(-5px);
}

/* TITLE ALIGNMENT */
.mission .sub-title-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}



.mission .sub-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #001f6f;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.mission .main-title {
    font-size: 28px;
    font-weight: 700;
    color: #021F49;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 15px;
}


/* PARAGRAPH */
.mission .title-para {
    font-size: 17px !important;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

/* LIST */
.vision-box ul {
    padding-left: 20px;
    margin: 0;
}

.vision-box ul li {
    font-size: 17px;
    color: #202020;
    margin-bottom: 8px;
    position: relative;
    font-weight: 500;
}

/* OPTIONAL CUSTOM BULLET */
.vision-box ul li::marker {
    color: #001f6f;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (min-width: 768px) {
    .mission .container {
        display: flex;
        gap: 30px;
    }

    .vision-box {
        width: 50%;
        margin-bottom: 0;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .mission {
        padding: 60px 0;
    }

    .vision-box {
        padding: 25px;
    }

    .main-title {
        font-size: 26px;
    }

    .title-para {
        font-size: 15px;
        text-align: justify;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .mission {
        padding: 50px 0;
    }

    .sub-title-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .sub-title-logo img {
        width: 38px;
    }

    .sub-title {
        font-size: 12px;
    }

    .main-title {
        font-size: 22px;
    }

    .title-para {
        font-size: 14px;
        text-align: justify;
    }

    .vision-box ul li {
        font-size: 14px;
    }
}



/* SECTION */
.why-staly {
    padding: 80px 0;
    position: relative;
    background: url("images/partner-bg.webp") no-repeat center center / cover;
    background-attachment: fixed;
    /* ✅ FIXED BACKGROUND */
    z-index: 1;
}

/* DARK OVERLAY */
.why-staly::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

/* TEXT COLOR (light on dark bg) */
.why-staly .sub-title,
.why-staly .main-title,
.why-staly .title-para,
.why-staly h3 {
    color: #fff;
    text-align: center;
}


/* TITLE ALIGN CENTER */
.why-staly .sub-title-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 40px;
}


/* GRID */
.excellence-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* CARD */
.excellence {
    flex: 1 1 220px;
    max-width: 250px;
    text-align: center;
    padding: 25px 20px;
    /* border-radius: 12px; */
    /* background: rgba(255, 255, 255, 0.08); */
    /* backdrop-filter: blur(6px); */
    transition: 0.3s ease;
}

/* IMAGE */
.excellence i {
    font-size: 60px;
    color: #fff;
    margin-bottom: 15px;
}

/* TITLE */
.excellence h3 {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
}

/* HOVER */
.excellence:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.15);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 768px) {
    .why-staly {
        padding: 60px 0;
    }

    .main-title {
        font-size: 26px;
    }

    .excellence {
        flex: 1 1 45%;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .why-staly {
        padding: 50px 0;
    }

    .sub-title-logo {
        flex-direction: column;
        gap: 5px;
    }

    .sub-title-logo img {
        width: 38px;
    }

    .main-title {
        font-size: 22px;
    }

    .title-para {
        font-size: 14px;
        text-align: justify;
    }

    .excellence {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .excellence img {
        width: 50px;
    }
}

/* SECTION */
.choose-us {
    padding: 40px 20px;
}

/* GRID */
.choose {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 15px;
}

/* BOX */
.choose-box {
    background: #fff;
    padding: 20px 15px;
    text-align: left;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.choose-box img {
    width: 70px;
    margin-bottom: 10px;
}

.choose-box h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: capitalize;
    color: #22376C;
}

.choose-box p {
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
    text-align: justify;

}

/* HOVER */
.choose-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* TABLET */
@media (max-width: 992px) {
    .choose {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-title {
        font-size: 26px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .choose {
        grid-template-columns: 1fr;
    }

    .choose-box {
        padding: 20px;
    }

    .main-title {
        font-size: 22px;
    }
}


/* SECTION */
.philosophy {
    padding: 40px 20px 0px;
    background: linear-gradient(135deg, #000000, #0153A1);
    color: #fff;
}

/* LAYOUT */
.philosophy {
    display: flex;
    align-items: center;
    justify-content: left;
}

.philosophy .container {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.philosophy .sub-title-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
}

/* LEFT IMAGE */
.philosophy img {
    width: 500px;
    border-radius: 12px;
    object-fit: cover;
}

/* RIGHT CONTENT */
/* .philosophy .title-box {
    width: 50%;
} */

/* SUB TITLE */
.philosophy .title-box {
    max-width: 1200px;
}

.philosophy .sub-title-logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.philosophy .sub-title-logo img {
    width: 28px;
}

.philosophy .sub-title {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

/* MAIN TITLE */
.philosophy .main-title {
    font-size: 35px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 35px;
    color: #ffff;
}


/* PARAGRAPH */
.philosophy .title-para {
    font-size: 18px;
    text-align: left;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px !important;
}

.philosophy h4 {
    text-align: left;
    font-size: 22px;
    font-weight: 600;
    color: #ec6b02;
    margin-bottom: 15px;
    position: relative;
    letter-spacing: 0.5px;
}

/* Optional stylish underline */
.philosophy h4::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #ffffff;
    margin-top: 8px;
    border-radius: 2px;
}

.philosophy h3 {
    margin-top: 40px;
    font-family: 'Playwrite IE', cursive;
}

/* TABLET */
@media (max-width: 992px) {
    .philosophy .container {
        flex-direction: column;
        text-align: center;
    }

    .philosophy img,
    .philosophy .title-box {
        width: 100%;
    }

    .sub-title-logo {
        justify-content: center;
    }

    .main-title {
        font-size: 26px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .philosophy {
        padding: 60px 15px;
    }

    .main-title {
        font-size: 22px;
    }

    .title-para {
        font-size: 14px;
        text-align: justify;
    }
}




.our-team {
    padding: 60px 24px;
    /* background: linear-gradient(135deg, #f8fafd 0%, #f0f3f9 100%); */
    position: relative;
}

/* ========= SLIDER WRAPPER ========= */
.team-members {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 12px 8px;
    margin: 0 -8px;
}

/* TRACK - smooth horizontal sliding */
.team-track {
    display: flex;
    /* gap: 30px; */
    justify-content: space-between;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    list-style: none;
    padding: 8px 0;
}

/* PROFILE CARD */
.profile {
    flex: 0 0 auto;
    min-width: calc(33.33% - 21px);
    /* 4 cards default: (100% - gaps)/4 */
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    /* box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.02); */
    transition: all 0.35s ease;
    backdrop-filter: blur(0px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: default;
}

.profile:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 45px -15px rgba(1, 83, 161, 0.2);
    border-color: #ffffff;
    background: #ffffff;
}

/* IMAGE CONTAINER */
.experts {
    /* margin-bottom: 22px; */
    position: relative;
    display: inline-block;
    width: 100%;
}

.experts img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 50%; */
    box-shadow: 0 20px 25px -10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    /* border: 4px solid white; */
    outline: 1px solid rgba(1, 83, 161, 0.2);
}

.profile:hover .experts img {
    transform: scale(1.02);
    box-shadow: 0 25px 30px -12px rgba(1, 83, 161, 0.25);
}

/* NAME & TITLE */
.name h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f2b3f;
    margin: 12px 0 6px;
    letter-spacing: -0.2px;
}

.name p {
    font-size: 1rem;
    font-weight: 500;
    color: #0153A1;
    /* background: #eef4fc; */
    display: inline-block;
    /* padding: 5px 18px; */
    /* border-radius: 40px; */
    margin: 0px;
    transition: all 0.2s;
}

/* .profile:hover .name p {
    background: #0153A1;
    color: white;
} */

/* SLIDER BUTTONS - Modern & accessible */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    color: #0153A1 !important;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 22px -8px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
    z-index: 20;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.96);
    font-weight: 300;
}

.slider-btn:hover {
    background: #0153A1;
    color: white !important;
    box-shadow: 0 18px 28px -10px #0153a180;
    transform: translateY(-50%) scale(1.03);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.96);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* ========= RESPONSIVE BREAKPOINTS ========= */
@media (max-width: 1200px) {
    .profile {
        min-width: calc(33.333% - 19px);
        /* 3 cards visible on large tablets */
        margin-bottom: 10px;
    }

}

@media (max-width: 992px) {
    .our-team {
        padding: 70px 20px;
    }

    .profile {
        min-width: calc(50% - 14px);
        /* 2 cards */
        margin-bottom: 10px;
    }

    .team-track {
        gap: 24px;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .slider-btn {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .profile {
        min-width: calc(50% - 14px);
        margin-bottom: 10px;
    }

    .experts img {
        width: 100%;
        height: 100%;
    }

    .name h3 {
        font-size: 1.35rem;
    }
}

@media (max-width: 576px) {
    .our-team {
        padding: 60px 16px;
    }

    .profile {
        min-width: calc(100% - 0px);
        /* 1 card full width */
        margin-bottom: 10px;
    }

    .team-track {
        gap: 22px;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
        background: rgba(1, 83, 161, 0.9);
        color: white;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    }

    .prev {
        left: 4px;
    }

    .next {
        right: 4px;
    }

    .main-title {
        font-size: 1.9rem;
    }

    .sub-title {
        font-size: 0.8rem;
    }
}

/* extra small devices */
@media (max-width: 450px) {
    .experts img {
        width: 100%;
        height: 100%;
    }

    .name h3 {
        font-size: 1.25rem;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}

/* Add subtle animation to track loading */
.team-track {
    will-change: transform;
}

/* optional: dots or fallback smoothness */
.no-transition {
    transition: none !important;
}

/* a11y focus */
.slider-btn:focus-visible {
    outline: 3px solid #0153A1;
    outline-offset: 3px;
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
    box-shadow: none;
}




/* SECTION */
.call-to-action {
    position: relative;
    padding: 150px 0;
    background-image: url("images/callto-acton.webp");
    background-position: center;
    background-size: cover;
    /* background-repeat: no-repeat; */
    /* background-attachment: fixed; */
}

/* CONTAINER */
/* .call-to-action .container {
    max-width: 900px;
    margin: auto;
} */

/* SUB TITLE */
.sub-title-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

.sub-title-logo img {
    width: 28px;
}

.sub-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
}

/* MAIN TITLE */
.main-title {
    font-size: 35px;
    font-weight: 700;
    color: #021F49;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 15px;
}

.main-title span {
    color: #EC6B02;
}

/* PARAGRAPH */
.call-to-action .title-para {
    margin-bottom: 20px;
    max-width: 900px;
    font-size: 18px;
    color: #202020;
    line-height: 1.6;
}

/* BUTTON */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    background: #111;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-btn i {
    transition: transform 0.3s ease;
}

/* HOVER */
.cta-btn:hover {
    background: #EC6B02;
}

.cta-btn:hover i {
    transform: translateX(6px);
}

/* ========================= */
/* 📱 TABLET */
/* ========================= */
@media (max-width: 992px) {
    .main-title {
        font-size: 34px;
    }

    .title-para {
        font-size: 15px;
        text-align: justify;
    }
}

/* ========================= */
/* 📱 MOBILE */
/* ========================= */
@media (max-width: 576px) {

    .call-to-action {
        padding: 70px 15px;
    }

    .main-title {
        font-size: 26px;
    }

    .title-para {
        font-size: 14px;
        text-align: justify;
    }

    .sub-title {
        font-size: 12px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
}


.industries {
    padding: 80px 0;
    background: #f8f9fb;
}

/* TITLE */
.sub-title-logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sub-title {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
}

.main-title {
    font-size: 35px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.main-title span {
    color: #EC6B02;
}

/* SLIDER */
.solutions-wrapper {
    position: relative;
    margin-top: 20px;
}

.solutions {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
}

/* CARD */
.solutions-card {
    min-width: calc(25% - 14px);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    position: relative;
    transition: 0.3s;
}

.solutions-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* TEXT OVERLAY */
.industries-name {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    padding: 5px;
    background-color: #fff;
    color: #000;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.industries-name h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #001f6f;
}

.industries-name p {
    font-size: 16px;
    opacity: 0.8;
    margin: 0px;
}

/* HOVER */
.solutions-card:hover {
    transform: translateY(-5px);
}

/* BUTTONS */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.slider-btn.prev {
    left: 50px;
}

.slider-btn.next {
    right: 50px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .solutions-card {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .solutions-card {
        min-width: 100%;
    }

    .main-title {
        font-size: 24px;
    }

    .slider-btn {
        /* display: none; */
    }
}

/* main section */
.accross-india {
    padding: 50px 0;
    /* background: linear-gradient(135deg, #fefcf7 0%, #f9fafc 100%); */
    position: relative;
    overflow: hidden;
}

.accross-india .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ========= DESTINATIONS (REFINED TIMELINE) ========= */
.destinations {
    position: relative;
    padding-left: 48px;
    /* background: rgba(255, 255, 255, 0.6); */
    border-radius: 32px;
    padding-top: 8px;
    padding-bottom: 8px;
}

/* enhanced dotted vertical line with gradient + smoother dots */
.destinations::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 12px;
    width: 2.5px;
    height: calc(100% - 24px);
    background: repeating-linear-gradient(to bottom,
            #f57c00,
            #f57c00 6px,
            transparent 6px,
            transparent 16px);
    border-radius: 2px;
    opacity: 0.65;
}

/* location group modern spacing */
.location-group {
    position: relative;
    margin-bottom: 45px;
    transition: transform 0.2s ease;
}

.location-group:last-child {
    margin-bottom: 8px;
}

/* refined pin icon using fontawesome */
.location-group::before {
    content: "\f3c5";
    /* location icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: -43px;
    top: 2px;
    color: #f57c00;
    font-size: 22px;
    background: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
    z-index: 2;
}

.location-group:hover::before {
    transform: scale(1.08);
    color: #e06e00;
    box-shadow: 0 6px 14px rgba(245, 124, 0, 0.2);
}

/* heading style */
.location-group h3 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #0f2b3b;
    letter-spacing: -0.3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.location-group h3 i {
    font-size: 1.3rem;
    color: #f57c00;
    opacity: 0.7;
}

/* modern list: clean bullet + micro animation */
.location-group ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 30px;
    margin-top: 0px;
}

.location-group ul li {
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e4e;
    /* background: #ffffffcc; */
    backdrop-filter: blur(2px);
    padding: 4px 0 4px 20px;
    border-radius: 40px;
    transition: all 0.2s;
    letter-spacing: -0.2px;
}

/* enhanced dash bullet becomes modern accent dash + slight scale */
.location-group ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: 3px;
    color: #f57c00;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.location-group ul li:hover {
    color: #f57c00;
    transform: translateX(5px);
}

.location-group ul li:hover::before {
    transform: translateX(2px);
    color: #e25d00;
}

/* special case for groups without <ul> (Andhra, Puducherry) */
.location-group:not(:has(ul)) {
    padding-bottom: 6px;
}


/* Right side image card */
.destinations-vid {
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 40px -20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    background: #fff;
    border: 1px solid rgba(245, 124, 0, 0.15);
}

.destinations-vid:hover {
    transform: scale(1.01);
}

.destinations-vid img {
    width: 100%;
    /* height: 500px; */
    display: block;
    transition: transform 0.5s ease;
}

.destinations-vid:hover img {
    transform: scale(1.02);
}

/* optional decorative map badge */
.map-badge {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    gap: 12px;
}

/* ========= RESPONSIVE & ENHANCEMENTS ========= */
@media (max-width: 1100px) {
    .main-title {
        font-size: 40px;
    }

    .location-group h3 {
        font-size: 1.45rem;
    }
}

@media (max-width: 992px) {
    .row {
        flex-direction: row;
    }

    .destinations {
        padding-left: 48px;
        margin-bottom: 20px;
    }

    .destinations-vid {
        max-width: 550px;
        margin: 0 auto;
    }


    .title-box {
        margin-bottom: 0px;
    }
}

@media (max-width: 768px) {
    .accross-india {
        padding: 70px 0;
    }

    .destinations {
        padding-left: 38px;
    }

    .destinations::before {
        left: 14px;
    }

    .location-group::before {
        left: -28px;
        width: 26px;
        height: 26px;
        font-size: 18px;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .location-group h3 {
        font-size: 1.35rem;
        margin-bottom: 10px;
    }

    .location-group ul {
        gap: 8px 20px;
    }

    .location-group ul li {
        font-size: 0.9rem;
        padding-left: 18px;
    }

    .main-title {
        font-size: 34px;
    }

    .title-para {
        font-size: 1rem;
        text-align: justify;
    }

    .sub-title-logo {
        padding: 4px 16px;
    }
}

@media (max-width: 550px) {
    .accross-india .container {
        padding: 0 20px;
    }

    .destinations {
        padding-left: 32px;
    }

    .destinations::before {
        left: 10px;
    }

    .location-group::before {
        left: -24px;
        font-size: 16px;
        width: 24px;
        height: 24px;
    }

    .location-group h3 {
        font-size: 1.25rem;
    }

    .location-group ul li {
        font-size: 0.85rem;
        padding: 2px 0 2px 18px;
    }

    .main-title {
        font-size: 28px;
    }

    .main-title span::after {
        height: 6px;
        bottom: 4px;
    }
}

/* Additional touch for smoothness */
.location-group ul li,
.location-group h3 {
    transition: all 0.2s;
}


/* nice hover on groups */
.location-group:hover h3 {
    color: #f57c00;
}

.location-group:hover h3 i {
    opacity: 1;
}

/* right side decorative soft border */
.destinations-vid {
    position: relative;
}

.destinations-vid::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    box-shadow: inset 0 0 0 1px rgba(245, 124, 0, 0.2);
    pointer-events: none;
}




.button1 {
    width: fit-content;
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #021f49;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

/* ICON WRAPPER */
.button1__icon-wrapper {
    width: 26px;
    height: 26px;
    position: relative;
    background-color: #fff;
    color: #021f49;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* SVG FIX */
.button1__icon-svg {
    width: 12px;
    height: 12px;
    position: absolute;
    transition: transform 0.35s ease;
}

/* START POSITION */
.button1__icon-svg:first-child {
    transform: translate(0, 0);
}

.button1__icon-svg--copy {
    transform: translate(-120%, 120%);
}

/* HOVER */
.button1:hover {
    background-color: #fff;
    color: #021f49;
}

.button1:hover .button1__icon-wrapper {
    background-color: #021f49;
    color: #fff;
}

/* ANIMATION FIX */
.button1:hover .button1__icon-svg:first-child {
    transform: translate(120%, -120%);
}

.button1:hover .button1__icon-svg--copy {
    transform: translate(0, 0);
}

/* SECTION */
.events {
    padding: 50px 0;
    /* background: #f9fafc; */
}

/* =========================
   EVENTS CARD
========================= */
.events-card {
    display: flex;
    align-items: stretch;
    /* equal height */
    gap: 15px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    padding: 15px;
    margin: 20px 0;
}

.events-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* =========================
   IMAGE
========================= */
.event-img {
    width: 260px;
    height: 100%;
    max-height: 260px;
    overflow: hidden;
    border-radius: 12px;
    flex-shrink: 0;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

/* .events-card:hover img {
    transform: scale(1.05);
} */

/* =========================
   CONTENT
========================= */
.box-txt {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0px;
}

/* TITLE */
.event-title h2 {
    font-size: 20px;
    font-weight: 700;
    color: #021f49;
    margin-bottom: 10px;
}

/* TEXT */
.box-txt p {
    font-size: 15px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: justify;
}

/* =========================
   META (FIXED)
========================= */
.meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    /* push to bottom */
    font-size: 13px;
}

.meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
}

.meta i {
    color: #e11d48;
}

/* =========================
   TABLET
========================= */
@media (max-width: 992px) {
    .events-card {
        gap: 12px;
        padding: 12px;
    }

    .event-img {
        width: 200px;
        max-height: 180px;
    }

    .event-title h2 {
        font-size: 18px;
    }

    .box-txt p {
        font-size: 14px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .events-card {
        flex-direction: column;
        /* stack */
    }

    .event-img {
        width: 100%;
        height: 200px;
        max-height: none;
    }

    .box-txt {
        padding-top: 10px;
    }

    .event-title h2 {
        font-size: 17px;
    }

    .box-txt p {
        font-size: 14px;
    }

    .meta {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
    .events-card {
        padding: 10px;
        margin: 0px;
    }

    .event-img {
        height: 180px;
    }

    .event-title h2 {
        font-size: 16px;
    }

    .meta span {
        font-size: 13px;
    }
}

/* Enquiry Button */
.enquiry-btn {
    background-color: #203464;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 35px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.enquiry-btn:hover {
    background-color: #203464;
}



/* Popup overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 252, 252, 0.918);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup content */
.popup-content {
    background: #203464;
    padding: 15px 20px;
    border-radius: 12px;
    width: 700px;
    max-width: 45%;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    font-size: 12px;
    transition: all 0.3s ease;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #fdf9f9;
}

.close-btn:hover {
    color: #faf5f5;
}

/* Form styling */
.form-group {
    margin-bottom: 10px;
}

.form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
    font-size: 15px;
    color: #f5f4f4;
}

.form-group input,
.form-group textarea {
    width: 90%;
    padding: 6px 8px;
    font-size: 13px;
    border-radius: 6px;
    border: 1px solid #fffbfb;
    transition: 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #43daa0;
    outline: none;
    box-shadow: 0 0 5px rgba(67, 218, 160, 0.3);
}

/* Submit button */
.sendbutton,
.submit-btn {
    display: inline-block;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    /* border-radius: 30px; */
    background: #2859d5;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 5px 12px rgba(40, 89, 213, 0.25);
}

/* Hover */
.sendbutton:hover,
.submit-btn:hover {
    background: #1f47b8;
    transform: translateY(-2px);
}

/* Active */
.sendbutton:active,
.submit-btn:active {
    transform: translateY(1px);
    box-shadow: 0 3px 8px rgba(40, 89, 213, 0.2);
}

/* CENTER BUTTON */
.btn-container {
    text-align: center;
    margin-top: 15px;
}

/* Button Style */
.sendbutton {
    display: inline-block;
    background-color: #22376C;
    /* brand dark blue */
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    /* pill shape */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(34, 55, 108, 0.3);
    font-size: 1rem;
}

/* Hover Effect */
.quote-btn:hover {
    background-color: #3c4a8a;
    /* slightly lighter blue */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 55, 108, 0.4);
}

/* Click Effect */
.quote-btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(34, 55, 108, 0.2);
}

/* Responsive */
@media (max-width: 576px) {
    .quote-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Modal Content */
.modal-custom {
    border-radius: 12px;
    overflow: hidden;
    background: #f9f9f9;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.modal-custom .modal-header {
    background-color: #2859d5;
    color: #fff;
    border-bottom: none;
    padding: 8px 25px;
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-custom .modal-title {
    color: #fff;
}

.modal-custom .btn-close {
    filter: invert(1);
}

/* Modal Body */
.modal-custom .modal-body {
    padding: 25px;
}

/* Form Styling */
.modal-form .form-group {
    margin-bottom: 15px;
}

.product-name-box {
    margin: 20px auto;
    padding: 10px 18px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;

    background: #0c162e;
    color: #fff;

    border-radius: 25px;
    display: inline-block;
}

.modal-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #222;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    outline: none;
    transition: all 0.2s ease;
}

.modal-form input:focus,
.modal-form textarea:focus {
    border-color: #22376C;
    box-shadow: 0 0 6px rgba(34, 55, 108, 0.3);
}

.modal-form textarea {
    resize: none;
    min-height: 100px;
}

/* Submit Button inside Modal */
.modal-form .submit-btn {
    display: inline-block;
    width: auto;
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 50px;
    background-color: #2859d5;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.modal-form .submit-btn:hover {
    background: #2859d5;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(34, 55, 108, 0.4);
}

.modal-form .submit-btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(34, 55, 108, 0.3);
}

/* Responsive */
@media (max-width: 576px) {
    .modal-custom .modal-body {
        padding: 15px;
    }

    .modal-form input,
    .modal-form textarea {
        font-size: 13px;
    }

    .modal-form .submit-btn {
        font-size: 0.95rem;
        padding: 10px;
    }


}

/* gallery page */


.galleryy {
    padding: 50px 0px;
}

.galleryy .sub-title-logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.galleryy .sub-title-logo img {
    width: 28px;
}

.galleryy .sub-title {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
}

/* MAIN TITLE */
.galleryy .main-title {
    font-size: 35px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #021F49;
}


/* PARAGRAPH */
.galleryy .title-para {
    font-size: 18px;
    text-align: center;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px !important;
}


/* SECTION */
.g-image {
    padding: 40px 20px;
}

/* GRID LAYOUT */
.g-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 4 cards */
    gap: 20px;
}

/* CARD */
.g-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background-color: #ffffff;
    padding: 10px;
}

/* IMAGE */
.g-card img {
    width: 100%;
    height: 260px;
    margin-bottom: 10px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}



.g-text h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.g-text p {
    font-size: 15px !important;
    margin: 5px 0 0;
}

/* HOVER */
.g-card:hover img {
    transform: scale(1.08);
}

/* =====================
   RESPONSIVE
===================== */

/* Tablet */
@media (max-width: 992px) {
    .g-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .g-grid {
        grid-template-columns: 1fr;
    }

    .g-card img {
        height: 220px;
    }
}