:root {
    --rose-primary: #e37e97;
    --burgundy: #6e242f;
    --bg-light: #fffaf7;
    --bg-soft: #fef2f4;
    --text-dark: #2c1a1e;
    --text-muted: #5e3a41;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
.serif-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* ---------- NAVBAR ---------- */
.navbar {
    background-color: rgba(255, 250, 247, 0.98);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 18px rgba(110, 36, 47, 0.05);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(227, 126, 151, 0.25);
}

.navbar-brand img {
    height: 100px;
    width: auto;
    transition: transform 0.2s;
}

.navbar-brand img:hover {
    transform: scale(1.02);
}

.nav-link {
    font-weight: 500;
    color: var(--burgundy);
    margin: 0 0.2rem;
    transition: 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--rose-primary) !important;
}

.dropdown-menu {
    background: white;
    border: none;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(110, 36, 47, 0.1);
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--burgundy);
    transition: 0.2s;
}

.dropdown-item:hover {
    background-color: var(--bg-soft);
    color: var(--rose-primary);
}

/* ---------- BUTTONS ---------- */
.btn-outline-custom {
    border: 1.5px solid var(--rose-primary);
    background: transparent;
    color: var(--burgundy);
    border-radius: 40px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: 0.25s;
}

.btn-outline-custom:hover {
    background-color: var(--rose-primary);
    color: white;
    border-color: var(--rose-primary);
}

.btn-primary-custom {
    background-color: var(--rose-primary);
    border: none;
    color: white;
    border-radius: 40px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    transition: 0.25s;
}

.btn-primary-custom:hover {
    background-color: var(--burgundy);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 8px 18px rgba(227, 126, 151, 0.3);
}

/* ---------- VIDEO HERO SECTION ---------- */
.video-hero {
    position: relative;
    background: var(--burgundy);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    padding: 7rem 0;
}

.hero-content {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content .carousel-badge {
    background: rgba(227, 126, 151, 0.85);
    color: white;
    padding: 10px;
    border-radius: 10px;
}

.hero-content .reg-fee-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--burgundy);
    padding: 10px;
    border-radius: 40px;
}

.hero-content .btn-primary-custom {
    background-color: var(--rose-primary);
}

.hero-content .btn-primary-custom:hover {
    background-color: white;
    color: var(--burgundy);
}

/* ---------- MULTI-ITEM CAROUSEL (4 photos at a time) ---------- */
.multi-item-carousel .carousel-inner {
    padding: 1rem 0;
}

.multi-item-carousel .carousel-item {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
}

.multi-item-carousel .carousel-item .carousel-image-col {
    flex: 0 0 calc(25% - 0.75rem);
    max-width: calc(25% - 0.75rem);
}

.multi-item-carousel .carousel-image-col img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.multi-item-carousel .carousel-image-col img:hover {
    transform: scale(1.02);
}

/* Responsive: tablets 2 items, mobile 1 item */
@media (max-width: 992px) {
    .multi-item-carousel .carousel-item .carousel-image-col {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }
}

@media (max-width: 576px) {
    .multi-item-carousel .carousel-item .carousel-image-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.multi-item-carousel .carousel-control-prev,
.multi-item-carousel .carousel-control-next {
    width: 5%;
    opacity: 0.7;
    background-color: rgba(110, 36, 47, 0.3);
    border-radius: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
}

/* ---------- OTHER SECTIONS (unchanged from previous) ---------- */
.about-section {
    padding: 5rem 0;
    background-color: white;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--burgundy);
}

.legacy-card {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 20px 35px -12px rgba(110, 36, 47, 0.08);
    border: 1px solid rgba(227, 126, 151, 0.2);
    transition: all 0.3s;
    height: 100%;
}

.legacy-icon {
    font-size: 2.6rem;
    color: var(--rose-primary);
    margin-bottom: 1.2rem;
}

.founder-section {
    background-color: var(--bg-soft);
    padding: 5rem 0;
}

.founder-title {
    padding: 10px;
    border-radius: 20px;
}

.founder-img {
    background: #f8dfe5;
    border-radius: 28px;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0 18px 28px -10px rgba(110, 36, 47, 0.1);
    background-image: url('../../assets/images/aashoke_gulabani.jpeg');
    background-size: cover;
    background-position: center top;
}

.founder-name-tag {
    background: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--burgundy);
}

.quote-mark {
    font-size: 4rem;
    line-height: 1;
    color: var(--rose-primary);
    opacity: 0.5;
}

.category-box {
    padding: 1.5rem;
    border: 1px solid rgba(227, 126, 151, 0.3);
    border-radius: 1.5rem;
    text-align: center;
    transition: 0.2s;
    background: white;
}

.category-box i {
    font-size: 2.5rem;
    color: var(--rose-primary);
    margin-bottom: 0.8rem;
}

.footer {
    background-color: var(--burgundy);
    color: #fce4e9;
    padding: 3rem 0 3rem;
}

.footer a {
    color: #fbc4d0;
    text-decoration: none;
    transition: 0.2s;
}

.footer a:hover {
    color: var(--rose-primary);
}

.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--rose-primary);
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
    border: none;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero-overlay {
        padding: 3rem 0;
    }
}

.demo-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--rose-primary);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 14px;
    z-index: 9999;
}

.slider-wrap {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.slider-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
    flex: 0 0 100%;
    aspect-ratio: 16/7;
    position: relative;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.slide-caption {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 2;
}

.slide-caption h3 {
    font-family: 'Cinzel', serif;
    font-size: clamp(20px, 3vw, 36px);
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 168, 76, 0.5);
    background: rgb(255 255 255 / 70%);
    color: var(--rose-primary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--rose-primary);
    color: var(--black);
}

.slider-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--rose-primary);
    width: 18px;
    border-radius: 3px;
}

.asean-slider-section {
    background: #fff;
    padding: 4rem 0 5rem 0;
    position: relative;
}

.asean-slider-section h3 {
    font-family: "Pinyon Script", Sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: var(--rose-primary);
    margin: 30px;
    text-align: center;
}

.swiper {
    width: 100%;
    padding: 20px 0 40px 0;
}

.swiper-slide {
    width: auto;
    transition: transform 0.3s ease;
}

.asean-card {
    background: #1a1e26;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    border: 1px solid rgba(212, 175, 122, 0.3);
    backdrop-filter: blur(2px);
}

.asean-card:hover {
    transform: translateY(-8px);
    border-color: var(--rose-primary);
    box-shadow: 0 30px 40px -12px rgba(0, 0, 0, 0.6);
}

.card-img-top {
    width: 100%;
    /* aspect-ratio: 4 / 5; */
    object-fit: cover;
    border-bottom: 2px solid rgba(212, 175, 122, 0.5);
    transition: transform 0.5s;
}

.asean-card:hover .card-img-top {
    transform: scale(1.02);
}

.swiper-wrapper {
    cursor: default;
}

.swiper-slide {
    cursor: default;
}

.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

.swiper-pagination-bullet {
    background: #c7a86b;
    opacity: 0.5;
    width: 8px;
    height: 8px;
}

.swiper-pagination-bullet-active {
    background: #e9c891;
    opacity: 1;
    transform: scale(1.2);
}

.season-video video {
    width: 50%;
}

@media (max-width: 768px) {
    .brand-header h1 {
        font-size: 2.2rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-body {
        padding: 1rem;
    }

    .asean-slider-section {
        padding: 2rem 0 3rem;
    }

    .season-video video {
        width: 100% !important;
    }
}

.form-container {
    max-width: 880px;
    margin: 0 auto;
}

.card-form {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.2s;
    border: none;
}

.hero-banner {
    background: linear-gradient(98deg, #1a1e2b 0%, #0f111a 100%);
    padding: 2rem 2rem 1.8rem 2rem;
    color: white;
    text-align: center;
}

.hero-banner h1 {
    font-weight: 800;
    font-size: 2.1rem;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #FFE6B0, var(--rose-primary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-banner .subhead {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 0.5rem;
}

.badge-soon {
    background: var(--rose-primary);
    color: #1a1e2b;
    font-weight: 600;
    border-radius: 40px;
    padding: 0.2rem 1rem;
    font-size: 0.7rem;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.form-body {
    padding: 2rem 2rem 2rem 2rem;
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e4e;
    border-left: 5px solid var(--rose-primary);
    padding-left: 12px;
    margin: 1.5rem 0 1.2rem 0;
}

.form-section-title:first-of-type {
    margin-top: 0;
}

.required-star {
    color: #e03a3a;
    font-size: 1rem;
    margin-left: 3px;
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    color: #1f2a3e;
}

.form-control,
.form-select {
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 0.6rem 1rem;
    transition: 0.2s;
    background-color: #fefefe;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--rose-primary);
    box-shadow: 0 0 0 3px rgb(242 161 206 / 25%);
}

.btn-gold {
    background: #d4af7a;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 700;
    border-radius: 40px;
    color: #1e1e2a;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-gold:hover {
    background: #c49b5c;
    transform: translateY(-2px);
    color: white;
}

.file-note {
    font-size: 0.7rem;
    color: #6c757d;
}

.checkbox-group,
.radio-group {
    background: #f9fafc;
    padding: 0.8rem 1rem;
    border-radius: 18px;
    margin-top: 0.3rem;
}

hr {
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .form-body {
        padding: 1.5rem;
    }

    .hero-banner h1 {
        font-size: 1.6rem;
    }
}

.page-breadcrumb h3 {
    color: var(--rose-primary);
    font-weight: 400;
    font-size: 48px;
    padding: 30px;
    line-height: 1.3em;
}

.about-img-1 {
    object-fit: cover;
    object-position: center center;
    border-radius: 20px 20px 20px 20px;
    width: 100%;
    height: 524px;
}

.text-primary-custom {
    color: var(--rose-primary);
}

.text-burgundy {
    color: var(--burgundy);
}

.team-card {
    background: var(--bg-light);
    border: 1px solid var(--burgundy);
    overflow: hidden;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
    position: relative;
    margin: 30px;
    border-radius: 20px;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.1);
}

.team-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    filter: brightness(0.85) saturate(0.9);
    transition: filter 0.4s;
}

.team-card:hover img {
    filter: brightness(1) saturate(1);
}

.team-card-body {
    padding: 20px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.team-card-body h3 {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--burgundy);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.team-card-body .role {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--burgundy);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.team-card-body p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--rose-primary);
}
.slide-1{
    aspect-ratio: 5/7 !important;
}
.slide-2{
    aspect-ratio: 12/7 !important;
}
.heading-xxl{
    font-weight: 700;
    font-size: 5rem;
}
.heading-xl{
    
    font-weight: 500;
    font-size: 4rem;
}
.internation-top-section {
    position: relative;
    overflow: hidden;
}
.internation-top-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(https://missaseatic.com/wp-content/uploads/2026/01/SnapInsta.to_463938550_879931120896702_3345399408398181340_n.jpg.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px);
    z-index: 1;
}
.internation-top-section > *:not(.management-blur) {
    position: relative;
    z-index: 3;
}
.internation-top{
    padding: 80px;
}
.international-launching{
    margin-top: 100px;
    border: 0.5px solid var(--burgundy);
    padding: 30px;
    font-size: 17px !important;
    border-radius: 10px;
}
.countries-section {
    background: #6d1f25; /* maroon background */
    padding: 60px 0;
    text-align: center;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.country-card {
    transition: 0.3s ease;
}

.country-card img {
    width: 100%;
    max-width: 220px;
    height: 130px;
    object-fit: cover;
    border-radius: 2px;
}

.country-card p {
    margin-top: 15px;
    color: #e6a4b4; /* light pink text */
    font-size: 18px;
    letter-spacing: 1px;
}

.country-card:hover {
    transform: translateY(-6px);
}

@media (max-width: 992px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .country-card img {
        height: 100px;
    }
}