* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #EDEDED;
    font-family: 'Livvic', sans-serif !important;
}

h5 {
    font-family: 'Fira Sans', sans-serif !important;
}

p {
    font-family: 'Livvic', sans-serif;
    /* font-weight: 500; */
    font-size: 17px !important;
}

a {
    text-decoration: none;
}

/* =========================
   NAVBAR
========================= */
.ft-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: #021f49;
}

.ft-navbar.ft-scrolled {
    background: #ffffff;
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* CONTAINER */
.ft-container {
    max-width: 1200px;
    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: all 0.3s ease;
}

.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;
}

/* =========================
   NAV LINKS
========================= */
.ft-nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 0px;
}

.ft-nav-links li {
    position: relative;
}

/* LINKS */
.ft-nav-links>li>a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    position: relative;
    transition: 0.3s ease;
}

/* HOVER UNDERLINE EFFECT */
.ft-nav-links>li>a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #EC6B02;
    transition: 0.3s ease;
}

.ft-nav-links>li>a:hover::after {
    width: 100%;
}

.ft-nav-links>li>a:hover {
    color: #EC6B02;
}

/* SCROLLED STATE */
.ft-navbar.ft-scrolled .ft-nav-links>li>a {
    color: #000;
}

.ft-navbar.ft-scrolled .ft-nav-links>li>a:hover {
    color: #EC6B02;
}

/* =========================
   DROPDOWN
========================= */
.ft-dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* SHOW */
.ft-dropdown:hover .ft-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* DROPDOWN ITEMS */
.ft-dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #000000;
    font-size: 14px;
    text-decoration: none;
    transition: 0.25s ease;
    font-weight: 600;
}

.ft-dropdown-menu li a:hover {
    background: #f8f8f8;
    padding-left: 25px;
    color: #EC6B02;
}

/* ARROW */
.ft-arrow {
    font-size: 10px;
    margin-left: 6px;
    transition: 0.3s ease;
}

.ft-dropdown:hover .ft-arrow {
    transform: rotate(180deg);
}

/* =========================
   BUTTON
========================= */
.ft-brochure a {
    background: linear-gradient(135deg, #f97316, #EC6B02);
    padding: 10px 20px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(236, 107, 2, 0.3);
}

.ft-brochure a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(236, 107, 2, 0.4);
}

/* =========================
   TOGGLE BUTTON
========================= */
.ft-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.ft-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}


/* NAVBAR SCROLL STATE */
.ft-navbar.ft-scrolled {
    background: #ffffff;
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* TEXT COLOR CHANGE */
.ft-navbar.ft-scrolled .ft-nav-links>li>a {
    color: #000;
}

/* LOGO SWITCH */
.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;
}

/* LOGO SIZE REDUCE */
.ft-navbar.ft-scrolled .ft-logo img {
    height: 40px;
}

/* TOGGLE COLOR FIX (IMPORTANT) */
.ft-navbar.ft-scrolled .ft-menu-toggle span {
    background: #000;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 992px) {

    .ft-menu-toggle {
        display: flex;
    }

    .ft-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 270px;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: 0.4s ease;
    }

    .ft-nav-links.ft-active {
        right: 0;
    }

    .ft-nav-links>li>a {
        font-size: 16px;
        color: #fff;
    }

    /* DROPDOWN MOBILE */
    .ft-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        background: #1a1a1a;
        border-radius: 6px;
        width: 100%;
    }

    .ft-dropdown.ft-active .ft-dropdown-menu {
        max-height: 300px;
        margin-top: 10px;
    }

    .ft-dropdown-menu li a {
        color: #ccc;
        text-align: center;
    }

    .ft-dropdown-menu li a:hover {
        color: #EC6B02;
        background: transparent;
    }
}

/* =========================
   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;
    }
}


.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: #202202;
    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;
}

/* 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.webp") no-repeat center center;
    background-size: cover;
    position: relative;
}

.steel-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* 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;
    /* below text */
}

/* 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 */
@media(max-width: 900px) {
    .steel-container {
        flex-direction: column;
    }

    .steel-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .steel-card-wrapper {
        flex-wrap: wrap;
    }
}

/* ========================= */
/* CLASSIC SECTION */
/* ========================= */
.classic {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    color: white;
    position: relative;
}

.indicator {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    z-index: 60;
    background-color: #ecad29;
    transform: translateX(-100%);
}

#classicDemo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.4);
    will-change: transform;
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: 8px 8px 25px rgba(0, 0, 0, 0.5);
}

/* ---- CARD CONTENT: must be absolute to overlay cards ---- */
.card-content {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 35;
    color: white;
    padding: 10px;
    pointer-events: none;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* ---- SLIDE NUMBERS: animate items sliding vertically ---- */

.slide-numbers .item {
    width: 50px;
    height: 50px;
    position: absolute;
    color: white;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.slide-numbers .item.active {
    opacity: 1;
    transform: translateY(0%);
}


.content-place {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    display: none;
}


.content-start {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    /* background-color: #ffffff; */
    margin-bottom: 10px;
}

.details {
    z-index: 22;
    position: absolute;
    top: 240px;
    left: 60px;
    max-width: 600px;
    pointer-events: none;
}



.details .sub-title-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.details .sub-title-logo {
    display: flex;
    align-items: center;
    max-width: 204px;
    gap: 10px;
    max-width: 205px;
}

/* SUBTITLE */
.details .sub-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #001f6f;
    font-weight: 600;
    margin: 0;
}

/* MAIN TITLE */
.details .main-title {
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: left;
}


/* PARAGRAPH */
.details .title-para {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 40px;
}

.details .cta {
    max-width: 500px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    pointer-events: auto;
    gap: 15px;
}

.details .cta .bookmark {
    border: none;
    background-color: #ecad29;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: white;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.details .cta .bookmark:hover {
    transform: scale(1.1);
    background-color: #d49c1f;
}

.details .cta .discover {
    border: 2px solid #ffffff;
    background-color: transparent;
    height: 48px;
    border-radius: 10px;
    color: #ffffff;
    padding: 0 32px;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 1px;
}

.details .cta .discover:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.pagination {
    position: absolute;
    left: 46%;
    bottom: 120px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 60;
    flex-wrap: wrap;
}

.pagination .arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #FFC107;
    color: #FFC107;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.pagination .arrow:hover {
    border-color: #ecad29;
    background-color: rgba(236, 173, 41, 0.2);
    transform: scale(1.1);
}

.pagination .arrow svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.8);
}

.progress-sub-container {
    width: 300px;
    height: 50px;
    display: flex;
    align-items: center;
}

.progress-sub-background {
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.progress-sub-foreground {
    height: 3px;
    background-color: #ecad29;
    width: 0%;
    border-radius: 3px;
    transition: width 0.6s ease;
}

.slide-numbers {
    width: 50px;
    height: 50px;
    overflow: hidden;
    position: relative;
}

.slide-numbers .item {
    width: 50px;
    height: 50px;
    position: absolute;
    color: white;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1a;
    z-index: 100;
}


/* =========================
   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: #202202;
    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;
    }

    .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;
    }

    .antique .view-btn a {
        padding: 12px 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .antique-imgbox img {
        height: 300px;
    }

    .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: 350px;
    }
}

@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;
    }

    .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: 300px;
    }

    .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;
}



.testimonial {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.testimonial-wrapper {
    display: flex;
    align-items: center;
    /* gap: 80px; */
}

/* IMAGE */
.test-img {
    position: relative;
    max-width: 420px;
    width: 100%;
    height: 350px;
}

.testimonial-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-image.active {
    opacity: 1;
    position: relative;
}

/* TEXT */
.test-content {
    flex: 1;
    background-color: rgba(13, 110, 253, 0.25);
    padding: 30px;
    height: 350px;
    align-items: center;
    margin: auto;
}

.testimonial-slide {
    display: none;
    animation: fadeText 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide p {
    font-size: 22px !important;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    text-align: center;
}

.testimonial-slide h3 {
    font-size: 24px;
    margin-bottom: 5px;
    text-align: center;
}

.testimonial-slide h6 {
    font-size: 18px;
    color: #777;
    text-align: center;
}

/* BUTTONS */
.test-btns {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 40px auto 0px auto;
    justify-content: center;
}

.test-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    transition: 0.3s;
}

.test-btn:hover {
    transform: scale(1.2);
}

.test-pagination {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #000;
    opacity: 0.3;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    opacity: 1;
    width: 25px;
    border-radius: 20px;
}

/* ANIMATION */
@keyframes fadeText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .testimonial-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .test-img {
        height: 350px;
    }

    .testimonial-slide p {
        font-size: 18px;
    }

    .test-btns {
        justify-content: 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: 20px !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;
}

/* ================= 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: 25px;
}

.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: center;
    }

    .join-list li {
        justify-content: center;
    }

    .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: center;
    /* gap: 10px; */
    justify-content: space-between;
}


.products .row-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 10px; */
    justify-content: space-between;
}


/* CARD */
.row-1 .product-card {
    background: #FFFFF0;
    border-radius: 10px;
    padding: 15px;
    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: #FFFFF0;
    border-radius: 10px;
    padding: 15px;
    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: 275px;
    height: 375px;
    margin: 0px 0px 15px 0;
    border-radius: 5px;
}

/* BUTTONS */
.card-btn {
    display: flex;
    justify-content: center;
    gap: 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: #ffffff;
    color: #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 */

/* Tablet */
@media (max-width: 992px) {
    .product-card {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .product-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .main-title {
        font-size: 24px;
    }
}


/* product details page */


.product-details {
    padding: 60px 0;
    background: #f5f5f5;
}

.product-wrapper {
    display: flex;
    gap: 20px;
}

/* LEFT SIDE */
.product-image {
    flex: 1;
}

.image-box {
    position: sticky;
    top: 100px;
    overflow: hidden;
    border-radius: 10px;
    height: 500px;
    cursor: zoom-in;
    background: #f5f5f5;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Enhanced zoom effect with mouse tracking */
.image-box.zoomed img {
    transform: scale(1.5);
}

/* 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: #202202;
    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;
}

.enquirys {
    background: #1565C0;
    /* Blue for enquiry */
    color: #fff;
}

.enquirys:hover {
    background: #0d47a1;
}

.book {
    background: #ef6c00;
    /* Orange for book now */
    color: #fff;
}

.book:hover {
    background: #c43e00;
}

/* 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: 80px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .product-details {
        padding: 30px 0;
    }

    .image-box {
        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: 20px;/*/
    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;
}

/* Track */
.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

/* Card */
.product-card {
    flex: 0 0 calc(30% - 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: 0px;
}

/* Buttons */
.card-btn button {
    width: 100%;
    margin-top: 5px;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}

.view {
    background: #021F49;
    color: #fff;
}

.enquiry {
    border: 2px solid #021F49;
    color: #021F49;
    background: transparent;
}


/* 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) {
    .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%;
    }

    .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;
}

.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: 20px;
    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);
}

.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: 45px;
    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: #202202;
    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;
}

.tab-content.active {
    display: block;
}

/* 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;
    }
}





/* tab navigation - modern pill design */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2.8rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
    border: none;
    padding: 10px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    border: 1px solid #000000;
}

.tab-btn i {
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.tab-btn:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 22px -12px rgba(0, 0, 0, 0.2);
    border-color: rgba(59, 110, 158, 0.3);
}

.tab-btn.active {
    background: #1f2e3c;
    color: white;
    border-color: #1f2e3c;
    box-shadow: 0 12px 20px -12px rgba(31, 46, 60, 0.4);
}

.tab-btn.active i {
    color: #ffd966;
}

/* gallery grid - fully responsive masonry-like but modern flex grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.8rem;
    transition: all 0.2s;
}

/* card styling - latest neumorphic-lite + glassmorphism */
.media-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(0px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.35s ease;
    transform: translateY(0px);
    cursor: pointer;
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 35px -16px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.5);
    background: white;
}

/* image wrapper & video wrapper */
.media-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 3;
    overflow: hidden;
    background: #eef2f8;
}

.media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.media-card:hover .media-wrapper img {
    transform: scale(1.04);
}

.media-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #0f1720;
}

/* video controls styling */
.media-wrapper video::-webkit-media-controls {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

/* card caption */
.card-caption {
    padding: 1rem 1.2rem 1.2rem;
}

.card-caption h3 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.2px;
    margin-bottom: 0.25rem;
    color: #11181c;
}

.card-caption p {
    font-size: 0.8rem;
    color: #5c6f87;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-type {
    background: #eef2ff;
    padding: 0.2rem 0.6rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
    width: fit-content;
    color: #2c6280;
}

/* empty state (if needed) */
.empty-state {
    text-align: center;
    grid-column: 1 / -1;
    padding: 3.5rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2rem;
    color: #6c7f8f;
    font-weight: 500;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}


/* responsive touches */
@media (max-width: 680px) {


    .gallery-container {
        padding: 1.2rem;
    }

    .tab-btn {
        padding: 0.6rem 1.4rem;
        font-size: 0.9rem;
    }

    .gallery-grid {
        gap: 1rem;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }

    .card-caption h3 {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .tabs-nav {
        gap: 0.8rem;
    }

    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* subtle animation for tab content */
.tab-pane {
    animation: fadeSlideUp 0.4s ease-out forwards;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* custom lightbox / modal on click optional? but we provide enhanced click preview */
.media-card {
    cursor: pointer;
}



/* 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: 10px;
    margin-bottom: 5px !important;
    background-color: #D6DCE8 !important;
    padding: 5px 10px 5px 5px !important;
    border-radius: 20px !important;
    margin-bottom: 0px !important;
}

/* 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;
    }
}

/* 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;
    }
}

/* SECTION */
.we-are {
    padding: 50px 0;
    /* background: #ffffff; */
}


/* IMAGE */
.are-img {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.are-img img {
    width: 100%;
    height: 100%;
    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: #202220;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 20px;
}

/* 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: #202202;
    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;
    }

    .main-title {
        font-size: 28px;
    }

    .title-para {
        font-size: 15px;
    }
}

/* 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;
    }
}



/* 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;
    }
}

/* 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;
    }

    .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;
    }

    .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: center;
}

.philosophy .container {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

/* 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: 10px;
}

.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: 15px;
    color: #ffff;
}


/* PARAGRAPH */
.philosophy .title-para {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px !important;
}

/* 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;
    }
}




.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: 15px;
    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(25% - 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;
    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;
    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 */
    }

    .container {
        max-width: 1100px;
    }
}

@media (max-width: 992px) {
    .our-team {
        padding: 70px 20px;
    }

    .profile {
        min-width: calc(50% - 14px);
        /* 2 cards */
    }

    .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);
    }

    .experts img {
        width: 130px;
        height: 130px;
    }

    .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: 0 auto;
    }

    .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: 110px;
        height: 110px;
    }

    .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: 10px;
    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;
    }
}

/* ========================= */
/* 📱 MOBILE */
/* ========================= */
@media (max-width: 576px) {

    .call-to-action {
        padding: 70px 15px;
    }

    .main-title {
        font-size: 26px;
    }

    .title-para {
        font-size: 14px;
    }

    .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: 10px;
}

.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: 35px;
    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: column;
    }

    .destinations {
        padding-left: 48px;
        margin-bottom: 20px;
    }

    .destinations-vid {
        max-width: 550px;
        margin: 0 auto;
    }

    .col-lg-6 {
        width: 100%;
    }

    .title-box {
        margin-bottom: 48px;
    }
}

@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;
    }

    .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;
}

.container {
    width: 100%;
}

/* 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 {
    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: column;
        align-items: flex-start;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
    .events-card {
        padding: 10px;
    }

    .event-img {
        height: 180px;
    }

    .event-title h2 {
        font-size: 16px;
    }

    .meta span {
        font-size: 13px;
    }
}