:root{
    /* Colors */
    --primary:#cf1e67;
    --primary-dark:#a31450;
    --primary-light:#fff4f8;
    --white:#ffffff;
    --black:#1f1f1f;
    --text:#666666;
    --border:#f3d9e5;
    --bg-light:#fff8fb;
    /* Fonts */
    --heading-font:'DM Sans', sans-serif;
    --heading-font-2:'bootstrap-icons';
    --body-font:'Poppins', sans-serif;
    /* Shadow */
    --shadow-sm:
    0 5px 15px rgba(0,0,0,.05);
    --shadow-md:
    0 10px 30px rgba(207,30,103,.12);
    --shadow-lg:
    0 15px 40px rgba(207,30,103,.18);
    --shadow-dark:0px 5px 4px rgb(0 0 0 / 22%);
    /* Radius */
    --radius-sm:10px;
    --radius-md:20px;
    --radius-lg:30px;
    /* Transition */
    --transition:.3s ease;
    /* Container */
    --container-width:1320px;
    color:var(--primary);
background:var(--white);
font-family:var(--heading-font);
box-shadow:var(--shadow-md);
border-radius:var(--radius-md);
transition:var(--transition);
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--body-font);
    color:var(--text);
    background:var(--white);
    overflow-x:hidden;
}
a{
    text-decoration:none;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

h1,h2,h3,h4,h5,h6{
    font-family:var(--body-font);
    text-transform: uppercase;
    color:var(--black);
    margin-bottom:0;
}
.header-area {
    position: absolute;
    width: 100%;
    z-index: 2;
}
.header-area .nav-link{
    color: var(--primary-dark);
}
.header-area nav img{
    width: auto;
    max-width: 120px;
}
.header-area .navbar {
    padding: 14px 20px;
    position: relative;
}
.header-area .navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.mobile-menu-btn {
    border: 1px solid rgba(207, 30, 103, 0.35);
    border-radius: 10px;
    padding: 6px 8px;
    margin-left: auto;
}
.mobile-menu-btn .navbar-toggler-icon {
    width: 1.35rem;
    height: 1.35rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23cf1e67' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.mobile-menu .nav-link {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 0;
}
.header-area .navbar-nav {
    align-items: center;
    gap: 8px;
}
.header-social-wrap {
    display: none;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}
.header-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(207, 30, 103, 0.2);
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
}
.header-social-link:hover {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}
.mobile-menu-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 0 4px;
    margin-top: 8px;
    border-top: 1px solid rgba(207, 30, 103, 0.15);
}
.mobile-menu-social a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--primary-dark);
    background: rgba(207, 30, 103, 0.06);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.mobile-menu-social a span {
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.mobile-menu-social a:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}
@media (min-width: 992px) {
    .header-social-wrap {
        display: flex;
    }
    .mobile-menu-social {
        display: none;
    }
}
.hero-section{
    padding:120px 0 0;
    background:#fce9d8;
    position: relative;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.hero-section__bg,
.hero-section__model {
    position: absolute;
    inset: 0;
    background-image: url('/Images/Hero-Image.png');
    background-repeat: no-repeat;
    pointer-events: none;
}
.hero-section__bg {
    z-index: 0;
    background-size: cover;
    background-position: 68% center;
}
.hero-section__model {
    display: none;
}
.hero-container {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 32px;
    padding-right: 32px;
}
.hero-main-row {
    flex: 1;
    align-items: center;
    min-height: 0;
}
.hero-headline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 2px;
    margin: 0 0 18px;
    font-weight: 700;
    text-transform: none;
    color: inherit;
    line-height: 1.05;
    font-family: 'Cormorant Garamond', serif;
}
.hero-headline-prefix {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-dark);
}
.hero-headline-brand {
    font-size: 4.5rem;
    line-height: 0.92;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -1px;
}
.hero-headline-suffix {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 340px;
    margin-top: 6px;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
}
.hero-headline-suffix__line {
    flex: 1;
    height: 1px;
    background: #1f1f1f;
    opacity: 0.75;
}
.hero-headline-suffix__text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.hero-headline-crown {
    color: var(--primary);
    font-size: 0.85em;
    line-height: 1;
}
.hero-content p,
.hero-tagline {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
    margin-top: 0;
    color: #2f2f2f;
    max-width: 520px;
    text-transform: none;
    font-weight: 400;
}
.hero-tagline {
    line-height: 1.75;
}
.hero-content p strong,
.hero-tagline strong {
    color: var(--primary);
    font-weight: 700;
}
.hero-btns{
    display:flex;
    gap:15px;
    margin-bottom:0;
    flex-wrap:wrap;
}
.hero-register-btn {
    border-radius: 50px;
    padding: 13px 30px;
    font-size: 11px;
    letter-spacing: 0.14em;
    background: linear-gradient(90deg, #9b1248 0%, #cf1e67 55%, #e63a82 100%);
    border: none;
    box-shadow: 0 8px 22px rgba(207, 30, 103, 0.32);
}
.hero-register-btn:hover {
    background: linear-gradient(90deg, #80103c 0%, #b8195c 55%, #cf1e67 100%);
    color: var(--white);
}

.theme-btn{
   background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    height: fit-content;
    box-shadow: var(--shadow-dark);
}

.theme-btn:hover{
    background:var(--primary-dark);
    color:var(--white);
}
.hero-btns a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.hero-btns a i{
    font-size: 20px;
    vertical-align: middle;
}
.outline-btn{
    border:2px solid var(--primary);
    color:var(--primary);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    height: fit-content;
}

.hero-feature-wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: start;
    width: 100%;
    max-width: 100%;
    padding: 22px 10px 26px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}
.hero-feature {
    display: grid;
    gap: 12px;
    text-align: center;
    position: relative;
    padding: 0 16px;
    min-width: 0;
    justify-items: center;
}
.hero-feature:first-child {
    padding-left: 8px;
}
.hero-feature:last-child {
    padding-right: 8px;
}
.hero-feature:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}
.hero-feature:not(:last-child)::after {
    display: none;
}
.hero-feature img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    box-shadow: none;
    border-radius: 50%;
    margin: 0 auto;
    border: 1px solid rgba(207, 30, 103, 0.4);
    background: rgba(255, 255, 255, 0.55);
    padding: 8px;
}
.hero-feature p {
    font-size: 11px;
    font-weight: 500;
    margin: 0;
    color: #1f1f1f;
    line-height: 1.35;
    text-transform: none;
    padding: 0 2px;
}
.section-padding{
    padding:50px 0;
}

.section-title{
    max-width:750px;
    margin:auto;
}

   .sub-title {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 20px;
    display: block;
    margin-bottom: 30px;
    position: relative;
}
.sub-title::before {
    position: absolute;
    content: '';
    left: 52px;
    width: 22%;
    height: 1.5px;
    background-color: var(--primary-dark);
    top: 16px;
    border-radius: 50px;
}
.sub-title::after {
    position: absolute;
    content: '';
    right: 52px;
    width: 22%;
    height: 1.5px;
    background-color: var(--primary-dark);
    top: 16px;
    border-radius: 50px;
}

.join-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px 25px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--primary);
}

.join-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
}

.join-icon{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
}
.join-icon img{
    width: 72px;
    height: 72px;
    max-width: 100%;
    object-fit: contain;
}
.join-icon i{
    font-size: 52px;
    line-height: 1;
    color: var(--primary);
}

.join-card h4{
   font-size: 16px;
    margin-bottom: 8px;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 700;
    font-family: var(--body-font);
}

.join-card p{
        margin-bottom: 0;
    line-height: 1.3;
    font-size: 12px;
    color: var(--black);
    font-weight: 500;
}
.why-goa-section {
    position: relative;
    background: var(--white);
    overflow: hidden;
}
.why-goa-section::before,
.why-goa-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: min(140px, 18vw);
    height: 100%;
    background-image: radial-gradient(circle, #efc4d4 1.2px, transparent 1.2px);
    background-size: 14px 14px;
    opacity: 0.45;
    pointer-events: none;
}
.why-goa-section::before { left: 0; }
.why-goa-section::after { right: 0; }
.why-goa-wrap {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}
.why-goa-top {
    max-width: 820px;
    margin: 0 auto 28px;
    padding: 0 16px;
}
.why-goa-crown {
    color: var(--primary-dark);
    font-size: 22px;
    margin-bottom: 14px;
}
.why-goa-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
}
.why-goa-deco {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    max-width: 220px;
}
.why-goa-line {
    flex: 1;
    height: 1.5px;
    background: var(--primary-dark);
    border-radius: 50px;
}
.why-goa-deco i {
    color: var(--primary);
    font-size: 8px;
    flex-shrink: 0;
}
.why-goa-title {
    margin: 0;
    padding: 0 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-dark);
    white-space: nowrap;
}
.why-goa-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--black);
    text-transform: none;
    margin-bottom: 16px;
    line-height: 1.3;
}
.why-goa-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-transform: none;
}
.why-goa-cta {
    max-width: 900px;
    margin: 0 auto 36px;
    padding: 18px 24px;
    border: 1px solid #f0c4d4;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff9fb 0%, #fff 100%);
    text-align: center;
}
.why-goa-cta p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #333;
    text-transform: none;
}
.why-goa-cta strong {
    font-weight: 700;
    color: var(--black);
}
.why-goa-cta-highlight {
    color: var(--primary-dark) !important;
}
.why-goa-heart {
    color: var(--primary);
    font-size: 12px;
    vertical-align: middle;
    margin: 0 2px;
}
.why-goa-cards {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
}
.why-goa-card {
    flex: 1;
    min-width: 0;
    max-width: 210px;
    background: var(--white);
    border: 1px solid #f1e1e8;
    border-radius: 16px;
    padding: 22px 16px 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(207, 30, 103, 0.06);
}
.why-goa-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffe8f0 0%, #fff5f9 100%);
    border: 1px solid #f5d4e2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-goa-card-icon i {
    font-size: 24px;
    color: #d4a437;
}
.why-goa-card h4 {
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 10px;
    line-height: 1.35;
}
.why-goa-card p {
    font-size: 12px;
    line-height: 1.55;
    color: #666;
    margin: 0;
    text-transform: none;
}
.why-goa-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    color: var(--primary);
    font-size: 9px;
    flex-shrink: 0;
}
@media (max-width: 1199px) {
    .why-goa-cards {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    .why-goa-sep { display: none; }
    .why-goa-card {
        flex: 1 1 calc(33.333% - 12px);
        max-width: 240px;
    }
}
@media (max-width: 767px) {
    .why-goa-card {
        flex: 1 1 calc(50% - 8px);
        max-width: none;
    }
}
@media (max-width: 575px) {
    .why-goa-card {
        flex: 1 1 100%;
    }
}
.category-card
 {
    justify-content: space-between;
    position: relative;
    border: 1px solid var(--primary-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    padding-right: 35px;
}
.category-content h4{
    color: var(--primary-dark);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 700;
    
}
.category-content h6{
    font-family: var(--body-font);
        margin-top: 25px;
    font-size: 13px;
}
.category-image img{
    height: 185px;
}
@media(max-width:767px){

.category-image img{
    height:280px;
}

.category-content{
    padding:25px;
}

.category-content h4{
    font-size:28px;
}

}
.visionaries-section {
    background: var(--bg-light);
}
.visionaries-section .container-fluid {
    max-width: 1500px;
    padding-left: 20px;
    padding-right: 20px;
}
.visionaries-panel {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 40px 36px;
    background: var(--white);
    border: 1px solid rgba(207, 30, 103, 0.12);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(207, 30, 103, 0.1);
}
.visionaries-section .sub-title {
    font-family: var(--body-font);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
}
.visionaries-section .visionaries-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    max-width: 100%;
    width: 100%;
    padding: 0 12px;
    margin: 0 auto 28px;
}
.visionaries-section .visionaries-heading-line {
    flex: 1;
    height: 2px;
    background-color: var(--primary);
    border-radius: 50px;
    min-width: 32px;
    max-width: 420px;
}
.visionaries-section .visionaries-heading .sub-title {
    flex-shrink: 0;
    margin: 0;
    padding: 0 6px;
    background: transparent;
    white-space: nowrap;
}
.visionaries-section .visionaries-heading .sub-title::before,
.visionaries-section .visionaries-heading .sub-title::after {
    display: none;
}
.visionary-row {
    max-width: none;
    margin: 0;
}
.visionary-row > [class*="col-"] {
    display: flex;
}
.visionary-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    height: 100%;
    padding: 20px 18px;
    background: var(--white);
    border: 1px solid #ececec;
    border-radius: 16px;
    box-shadow: none;
}
.visionary-image {
    flex: 0 0 200px;
    width: 200px;
    max-width: 200px;
    flex-shrink: 0;
}
.visionary-image img,
.visionary-card .visionary-image img {
    width: 200px !important;
    height: 260px !important;
    max-width: 200px !important;
    min-width: 200px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.visionary-content-side {
    flex: 1;
    min-width: 0;
}
.visionary-content-side h4 {
    color: var(--primary);
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}
.visionary-card--kirti {
    padding: 22px 20px;
    gap: 18px;
}
.visionary-card--kirti .visionary-bio {
    font-size: 13px;
    line-height: 1.7;
}
.visionary-card--viveka {
    overflow: hidden;
    padding: 22px 26px;
    gap: 22px;
}
.visionary-card--viveka .visionary-content-side h4 {
    font-size: 22px;
    margin-bottom: 8px;
}
.visionary-card--viveka .visionary-role--sub {
    margin-bottom: 12px;
}
.visionary-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}
.visionary-card--viveka .visionary-bio {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.7;
}
.visionary-brand-panel {
    flex: 0 0 120px;
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}
.visionary-brand-box {
    width: 100%;
    padding: 10px 8px;
    background: var(--white);
    border: 1.5px solid rgba(207, 30, 103, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.visionary-brand__logo {
    width: 92px;
    height: auto;
    max-width: 92px;
    max-height: 76px;
    object-fit: contain;
    display: block;
}
.visionary-visit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    padding: 10px 8px;
    border-radius: 8px;
    background: var(--primary);
    color: var(--white);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.2;
    text-align: center;
    transition: var(--transition);
}
.visionary-visit-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}
.visionary-visit-btn i {
    font-size: 8px;
}
.visionary-role {
    color: var(--primary);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 4px;
}
.visionary-content-side h6 {
    display: none;
}
.visionary-content-side h6::after {
    display: none;
}
.visionary-bio,
.visionary-content-side p.visionary-bio {
    color: #333;
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.65;
    margin-bottom: 0;
    text-transform: none;
}
.visionary-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 10px 14px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
}
.visionary-video-btn:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}
.visionary-play-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.visionary-play-btn i {
    font-size: 14px;
    margin-left: 2px;
}
.receive-card {
    display: grid;
    gap: 10px;
    text-align: center;
    width: fit-content;
    box-shadow: var(--shadow-md);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}
.receive-card-row{
    display: flex;
    gap: 10px;
    justify-content: center;
}
.receive-card h6{
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    color: var(--black);
    line-height: 1.35;
    font-family: var(--body-font);
    text-transform: none;
}
.receive-mobile-accordion {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 8px;
}
.receive-accordion .accordion-item {
    border: 1px solid #ececec;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 10px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.receive-accordion .accordion-button {
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    box-shadow: none !important;
    text-transform: none;
}
.receive-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary-dark);
}
.receive-accordion .accordion-body {
    padding: 0 18px 16px;
    font-size: 13px;
    line-height: 1.65;
    color: #555;
}
.event-category-section .sub-title::before{
    left: 80px;
}
.event-category-section .sub-title::after{
    right: 80px;
}
.receive-section  .sub-title::before{
    left: 80px;
}
.receive-section  .sub-title::after{
    right: 80px;
}
.gallery-section .sub-title::before{
    left: 32px;
}
.gallery-section .sub-title::after{
    right: 32px;
}

.event-category-section {
    background: #fff9fb;
}
.event-category-container {
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.event-category-row {
    margin-top: 14px;
    --bs-gutter-x: 1.25rem;
}
.event-card {
    position: relative;
    border: 1px solid #efd5e1;
    border-radius: 24px;
    background: #fef8fb;
    overflow: hidden;
    padding: 0;
    min-height: 420px;
    height: 100%;
    box-shadow: 0 14px 34px rgba(207, 30, 103, 0.09);
}
.event-card__body {
    display: flex;
    align-items: stretch;
    min-height: 420px;
    background: #fef8fb;
}
.event-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 0 0 38%;
    width: 38%;
    min-height: 420px;
    padding: 30px 20px 26px 26px;
    background: #fef8fb;
}
.event-card__content::after {
    display: none;
}
.card-number {
    font-size: 88px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.14;
    line-height: 0.82;
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
}
.card-crown {
    position: static;
    font-size: 22px;
    color: #d4a437;
    margin: -2px 0 8px;
    line-height: 1;
}
.event-card__content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 14px;
    line-height: 1.2;
    font-family: var(--body-font);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.event-card__divider {
    border: 0;
    border-top: 1px solid #d4a437;
    margin: 12px 0 12px;
    width: 100%;
    opacity: 0.9;
}
.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e63a82;
    color: #e63a82;
    border-radius: 50px;
    padding: 8px 14px;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 0;
    width: fit-content;
    background: #fef8fb;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}
.feature-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 500;
    color: #222;
    line-height: 1.4;
}
.feature-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: #d4a437;
    font-size: 11px;
}
.event-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: auto;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 10px;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 12px rgba(207, 30, 103, 0.2);
    text-transform: uppercase;
}
.event-card__btn i {
    font-size: 11px;
}
.card-image {
    position: relative;
    flex: 1 1 62%;
    min-width: 0;
    min-height: 420px;
    z-index: 1;
    margin: 0;
    clip-path: url(#eventCardImageClip);
    -webkit-clip-path: url(#eventCardImageClip);
}
.card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolyline points='26,0 10,50 26,100' fill='none' stroke='%23d4a437' stroke-width='1.5'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.card-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.gallery-section .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.video-section {
    background: var(--bg-light);
}
.video-section .sub-title::before,
.video-section .sub-title::after {
    display: none;
}
.video-section .owl-carousel {
    max-width: 1200px;
    margin: 24px auto 0;
    padding: 0 12px;
}
.video-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #111;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(207, 30, 103, 0.12);
}
.video-card video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 480px;
    object-fit: contain;
    background: #000;
    border-radius: var(--radius-md);
}

/* Your Journey with VogueStar Goa */
.journey-section {
    background:
        radial-gradient(ellipse at 0% 50%, rgba(207, 30, 103, 0.08) 0%, transparent 45%),
        linear-gradient(180deg, #fff8fb 0%, #ffffff 50%, #fff4f8 100%);
    position: relative;
    overflow: hidden;
}
.journey-section .journey-heading {
    margin-bottom: 8px;
}
.journey-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 16px;
}
.journey-title-line {
    flex: 1;
    height: 1.5px;
    max-width: 160px;
    background: var(--primary-dark);
    border-radius: 50px;
}
.journey-title {
    margin: 0;
    padding: 0 4px;
    flex-shrink: 0;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 30px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
    text-align: center;
}
@media (max-width: 767px) {
    .journey-title-row {
        gap: 10px;
    }
    .journey-title-line {
        max-width: 40px;
    }
    .journey-title {
        font-size: 20px;
        letter-spacing: 0.04em;
    }
}
.journey-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    max-width: 1240px;
    margin: 36px auto 0;
    padding: 8px 12px 0;
    align-items: stretch;
}
.journey-track::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 8%;
    right: 8%;
    height: 0;
    border-top: 2px dashed rgba(207, 30, 103, 0.35);
    z-index: 0;
}
.journey-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 100%;
}
.journey-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-size: 30px;
    box-shadow: 0 12px 28px -10px rgba(163, 20, 80, 0.55);
    border: 3px solid #fff;
    flex-shrink: 0;
}
.journey-number {
    width: 28px;
    height: 28px;
    margin: -26px auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--primary-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    border: 2px solid var(--primary);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.journey-step-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.25;
    margin: 0 0 10px;
    flex-shrink: 0;
}
.journey-step-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    line-height: 1.55;
    color: #555;
    margin: 0 0 16px;
    max-width: 210px;
    flex: 1 1 auto;
}
.journey-date {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    min-height: 2.6em;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-dark);
    text-align: left;
}
.journey-date i {
    font-size: 15px;
    color: var(--primary);
    line-height: 1.35;
    margin-top: 1px;
    flex-shrink: 0;
}
.journey-date-text {
    display: block;
    line-height: 1.35;
    color: var(--primary-dark);
}
@media (max-width: 991px) {
    .journey-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 16px;
    }
    .journey-track::before {
        display: none;
    }
    .journey-step:last-child {
        grid-column: 1 / -1;
        max-width: 320px;
        margin: 0 auto;
    }
}
@media (max-width: 575px) {
    .journey-track {
        grid-template-columns: 1fr;
        gap: 26px;
        max-width: 360px;
    }
    .journey-step:last-child {
        max-width: none;
    }
    .journey-step-text {
        max-width: none;
    }
}

.video-section .owl-nav button.owl-prev,
.video-section .owl-nav button.owl-next {
    color: var(--primary) !important;
    font-size: 28px !important;
}
.video-section .owl-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    background-color: rgba(207, 30, 103, 0.35) !important;
    border-radius: 50px;
    margin: 4px;
}
.video-section button.owl-dot.active {
    background-color: var(--primary-dark) !important;
}

.Register-form {
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    background: #ffc0cb17;
    padding: 28px 24px 32px;
}
.register-grid {
    margin-top: 10px;
}
.register-col {
    padding: 20px 24px;
    position: relative;
}
@media (min-width: 992px) {
    .event-category-row > [class*="col-"] {
        display: flex;
    }
    .event-card {
        width: 100%;
    }
    .event-card__body,
    .event-card__content,
    .card-image,
    .card-image img {
        min-height: 400px;
    }
    .event-card__content {
        flex: 0 0 38%;
        width: 38%;
        padding: 28px 18px 24px 24px;
    }
    .event-card__content h3,
    .feature-list,
    .event-card__divider {
        max-width: none;
    }
    .register-col:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 100%;
        background: rgba(0, 0, 0, 0.12);
    }
}
.Register-form h4 {
    padding: 0 0 16px;
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}
.reg-fields label,
.upload-block > label,
.upload-pictures > label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--black);
    margin-bottom: 6px;
}
.input-icon-wrap {
    position: relative;
}
.input-icon-wrap > i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 15px;
    z-index: 1;
    pointer-events: none;
}
.input-icon-wrap .whatsapp-icon {
    color: #25d366;
}
.input-icon-wrap input,
.input-icon-wrap select {
    width: 100%;
    height: 42px;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    background: #fff;
    padding: 0 12px 0 42px;
    font-size: 13px;
    color: var(--black);
    text-transform: capitalize;
    outline: none;
}
.input-icon-wrap input[type="date"] {
    padding-right: 36px;
}
.input-icon-wrap input:focus,
.input-icon-wrap select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(207, 30, 103, 0.12);
}
.input-icon-wrap input[readonly] {
    background: #ececec;
    color: #666;
}
.input-icon-wrap select {
    appearance: auto;
    cursor: pointer;
}
.upload-block {
    margin-bottom: 18px;
}
.upload-block > label {
    text-transform: capitalize;
    margin-bottom: 10px;
}
.id-upload-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}
.id-upload-row ul {
    list-style: disc;
    padding-left: 18px;
    margin: 0;
    flex: 1;
}
.id-upload-row ul li {
    font-size: 12px;
    text-transform: capitalize;
    color: var(--black);
    margin-bottom: 2px;
}
.declare-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.declare-row input[type="checkbox"],
.Register-form input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    min-height: 18px;
    margin: 2px 0 0;
    padding: 0;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--primary);
    -webkit-appearance: checkbox;
    appearance: checkbox;
    border: 1px solid #999;
    border-radius: 3px;
    background: #fff;
}
.declare-row label {
    font-size: 11px;
    line-height: 1.5;
    font-weight: 500;
    text-transform: none;
    color: var(--black);
    margin: 0;
}
.verification-declaration,
.upload-pictures {
    margin-top: 18px;
}
.upload-pictures > label {
    margin-bottom: 10px;
}
.payment-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.payment-summery {
    background: #ffc0cb52;
    padding: 18px 16px;
    border-radius: var(--radius-sm);
    flex: 1;
    text-align: left;
}
.payment-summery h4 {
    padding: 0;
    margin: 0 0 6px;
    text-align: left;
}
.payment-sub {
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--black);
    margin: 0 0 10px;
    text-align: left;
}
.payment-note {
    font-size: 12px;
    line-height: 1.6;
    color: #555;
    text-transform: none;
    font-weight: 400;
    margin: 0 0 20px;
    text-align: left;
}
.amount li,
.total-amount li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black);
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}
.amount li strong,
.amount li span:last-child {
    font-weight: 700;
    text-align: right;
}
.total-amount {
    margin: 16px 0;
    padding-top: 14px;
    border-top: 1px solid rgba(207, 30, 103, 0.35);
}
.total-amount li h5 {
    width: fit-content;
    color: var(--primary-dark) !important;
    font-weight: 700;
    font-family: var(--body-font);
    margin: 0;
}
.box {
    margin: 16px 0;
    text-align: center;
    color: var(--black);
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 600;
    padding: 11px;
    border: 1px solid #cecece;
    border-radius: 5px;
    background: #fff;
}
.payment-summery .theme-btn {
    margin-top: 8px;
    padding: 12px 16px;
    letter-spacing: 0.06em;
}
.payment-summery ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
}
.Register-form .form-control {
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 0;
}
.Register-form label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}
.Register-form input:not([type="checkbox"]),
.Register-form optgroup,
.Register-form select,
.Register-form textarea {
    background: white;
    border: 1px solid #d8d8d8;
    text-transform: capitalize;
    font-size: 13px;
    color: black;
    height: 40px;
    border-radius: 6px;
    width: 100%;
}
.Register-form .input-icon-wrap input,
.Register-form .input-icon-wrap select {
    padding: 0 12px 0 42px;
    height: 42px;
}
.Register-form .input-icon-wrap input[type="date"] {
    padding-right: 36px;
}
.Register-form .personal-detials,
.Register-form .identify-veryfication {
    position: relative;
}
.Register-form .identify-veryfication::before,
.Register-form .identify-veryfication::after {
    display: none;
}
.Register-form .identify-veryfication ul {
    list-style: disc;
    padding-left: 15px;
}
.Register-form .identify-veryfication ul li {
    font-size: 12px;
    text-transform: capitalize;
}
.Register-form .file {
    width: 200px !important;
    height: 105px !important;
    text-align: center;
}
.Register-form .upload-pictures,
.Register-form .verification-declaration {
    margin: 20px 0;
}
.payment-summery h4 {
    padding: 0;
}
.payment-summery .payment-sub {
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--black);
    margin-bottom: 10px;
}
.amount li span {
    float: none;
    font-weight: 700;
}
.total-amount,
.amount {
    margin-top: 0;
}
.payment-summery ul:not(:last-child)::after {
    display: none;
}
.payment-summery-footer{
    margin-top: 20px;
}
.payment-summery-footer p{
    color: var(--black);
    font-size: 12px;
    text-align: center;
    margin-bottom: 10px;
}
.payment-summery-footer img{
    width: 50px;
}
.payment-summery-footer li{
        width: 65px;
    padding: 5px;
    border-radius: 2px;
    background: white;
    border: 1px solid gray;
    height: 30px;
    object-fit: contain;
    margin: 2px;
}
.faq-section {
    background: var(--bg-light);
}
.faq-section .sub-title {
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}
.faq-section .sub-title::before {
    left: 0;
    width: calc(50% - 170px);
}
.faq-section .sub-title::after {
    right: 0;
    width: calc(50% - 170px);
}
.faq-panel {
    max-width: 980px;
    margin: 32px auto 0;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 28px 28px 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.faq-panel::after {
    content: '';
    display: block;
    height: 5px;
    background: var(--primary);
    margin: 24px -28px 0;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    padding-bottom: 28px;
}
.faq-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 12px;
}
.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}
.faq-pill-btn {
    border: 1px solid #e3e3e3;
    border-radius: 999px;
    background: #fff;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #2f2f2f;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    text-align: left;
}
.faq-pill-btn::after {
    display: none;
}
.faq-pill-btn:not(.collapsed),
.faq-pill-btn:focus {
    background: #fff;
    color: #2f2f2f;
    border-color: var(--primary);
    box-shadow: none !important;
}
.faq-question {
    flex: 1;
    text-transform: none;
    line-height: 1.45;
}
.faq-icon {
    flex-shrink: 0;
    width: 22px;
    text-align: center;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    color: #666;
}
.faq-icon::before {
    content: '+';
}
.faq-pill-btn:not(.collapsed) .faq-icon::before {
    content: '−';
}
.faq-accordion .accordion-body {
    padding: 10px 22px 4px;
    font-size: 13px;
    line-height: 1.75;
    color: #555;
}
.bottom-cta-bar {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #8f1040 0%, #b81858 18%, #cf1e67 42%, #e8327a 58%, #cf1e67 78%, #8f1040 100%);
    padding: 24px 20px;
}
.bottom-cta-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.07) 0,
        rgba(0, 0, 0, 0.07) 1px,
        transparent 1px,
        transparent 7px
    );
    pointer-events: none;
}
.bottom-cta-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding-left: 100px;
}
.bottom-cta-watermark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.14;
    pointer-events: none;
}
.bottom-cta-watermark img {
    width: 110px;
    filter: brightness(0) invert(1);
}
.bottom-cta-text {
    margin: 0;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2.4vw, 30px);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
}
.bottom-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 12px 22px;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #ffeef4 100%);
    color: var(--primary);
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    white-space: nowrap;
    transition: var(--transition);
}
.bottom-cta-btn i {
    font-size: 22px;
    line-height: 1;
}
.bottom-cta-btn:hover {
    color: var(--primary-dark);
    background: var(--white);
    transform: translateY(-1px);
}
footer,
.site-footer {
    background: var(--primary-dark);
    padding: 40px 0 20px;
}
footer p,
.site-footer p {
    color: var(--white);
    text-transform: none;
}
.site-footer__locations {
    max-width: 960px;
    margin: 0 auto 28px;
    padding: 0 16px;
}
.site-footer__title {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
}
.site-footer__address {
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
}
.site-footer__phones {
    margin: 0;
    padding: 0;
}
.site-footer__phones li {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.75;
    font-family: 'Poppins', sans-serif;
}
.site-footer__phone-item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 6px;
    align-items: start;
    margin-bottom: 4px;
}
.site-footer__phone-label {
    color: rgba(255, 255, 255, 0.88);
    min-width: 0;
}
.site-footer__phones a {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}
.site-footer__phones a:hover {
    color: #ffc8dd;
    text-decoration: underline;
}
.site-footer__copy {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 18px;
    margin: 0 16px;
}
.site-footer__copy p {
    font-size: 13px;
    text-transform: capitalize;
    opacity: 0.85;
}
.site-footer__social {
    max-width: 960px;
    margin: 0 auto 28px;
    padding: 0 16px;
}
.site-footer__social .site-footer__title {
    margin-bottom: 16px;
}
.site-footer__social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
}
.site-footer__social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
}
.site-footer__social-icons a:hover {
    background: var(--white);
    color: var(--primary-dark);
}
.site-footer__social-extra {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}
.site-footer__social-extra a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}
.site-footer__social-extra a:hover {
    color: #ffc8dd;
    text-decoration: underline;
}

.custom-file-upload {
    position: relative;
    width: 210px;
    min-width: 180px;
    height: 130px;
    flex-shrink: 0;
}
.custom-file-upload-wide {
    width: 100%;
    min-width: 0;
    height: 130px;
}
.custom-file-upload input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.custom-file-upload div {
    width: 100%;
    height: 100%;
    border: 1px dashed #e8a4bc;
    border-radius: 12px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    padding: 12px;
    pointer-events: none;
}
.custom-file-upload div:hover {
    background: var(--white);
    border-color: var(--primary);
}
.custom-file-upload i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 8px;
}
.custom-file-upload h6 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #222;
    font-family: var(--body-font);
    text-transform: uppercase;
}
.custom-file-upload p {
    margin: 4px 0 0;
    font-size: 11px;
    color: #666;
    line-height: 1.35;
}
.photo-preview-list {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 10px;
}
.photo-preview-item {
    position: relative;
    border: 1px solid #f0c4d4;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 1;
}
.photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.photo-preview-item span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 4px 6px;
    font-size: 9px;
    line-height: 1.2;
    color: #fff;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.photo-preview-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    z-index: 1;
}
.photo-preview-remove:hover {
    background: var(--primary);
}
.document-preview-list {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 10px;
}
.document-preview-item {
    position: relative;
    border: 1px solid #f0c4d4;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 1;
}
.document-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.document-preview-pdf {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5f8;
    color: #cf1e67;
    font-size: 28px;
}
.document-preview-item span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 4px 6px;
    font-size: 9px;
    line-height: 1.2;
    color: #fff;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gallery-section .owl-carousel .owl-dots.disabled {
    display: block !important;
}
.gallery-section .owl-dot{
      width: 5px;
    height: 5px;
    display: inline;
    background-color: pink !important;
    border-radius: 50px;
    position: relative;
    left: 50%;
    margin: 2px;
}
button.owl-dot.active {
    background-color: var(--primary-dark) !important;
}
@media (min-width:768px){
    .why-join-section {

    }
}
@media (max-width:600px) {
    .sub-title::before, .sub-title::after{
        width: 0 !important;
    }
}
@media (max-width:500px) {
    .hero-headline {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        line-height: 1.05;
    }
    .hero-headline-prefix {
        font-size: 14px;
    }
    .hero-headline-brand {
        font-size: 2.75rem;
    }
    .hero-headline-suffix {
        font-size: 1.25rem;
    }
}

/* Registration + responsive fixes */
html { scroll-padding-top: 90px; }
#formStatus { font-size: 13px; font-weight: 600; text-align: center; margin-top: 12px; line-height: 1.5; }
#formStatus.error { color: #a11335; background: #fff5f7; border: 1px solid #f3c0d2; padding: 12px 14px; border-radius: 10px; text-align: left; }
#formStatus.success { color: #17633a; background: #eaf8ef; padding: 10px; border-radius: 8px; text-align: center; }
.form-status-title { margin: 0 0 8px; font-weight: 700; }
.form-status-errors {
    margin: 0;
    padding-left: 18px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}
.form-status-errors li { margin-bottom: 4px; }
.form-status-errors li:last-child { margin-bottom: 0; }
.field-error {
    margin: 6px 0 0;
    font-size: 11px;
    font-weight: 600;
    color: #a11335;
    line-height: 1.35;
}
.input-icon-wrap.is-invalid input,
.input-icon-wrap.is-invalid select {
    border-color: #cf1e67;
    box-shadow: 0 0 0 2px rgba(207, 30, 103, 0.12);
}
.custom-file-upload.is-invalid > div {
    border-color: #cf1e67;
    background: #fff8fa;
}
.declare-row.has-error .checkbox {
    outline: 2px solid rgba(207, 30, 103, 0.35);
    outline-offset: 2px;
}
.upload-block.has-error > label,
.upload-pictures.has-error > label {
    color: #a11335;
}
.thank-you-section {
    background: linear-gradient(180deg, #fff9fb 0%, #fff 100%);
}
.thank-you-card {
    max-width: 560px;
    margin: 0 auto;
    padding: 48px 32px;
    background: #fff;
    border: 1px solid #efd5e1;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(207, 30, 103, 0.1);
}
.thank-you-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf8ef;
    color: #17633a;
    font-size: 40px;
    line-height: 1;
}
.thank-you-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
}
.thank-you-lead {
    font-size: 15px;
    color: #2f2f2f;
    margin-bottom: 20px;
    line-height: 1.6;
}
.thank-you-lead strong {
    color: var(--primary);
}
.thank-you-ref {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}
.thank-you-ref span {
    display: inline-block;
    margin-top: 6px;
    padding: 8px 14px;
    background: #fff4f8;
    border: 1px dashed #e9a8c4;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    word-break: break-all;
}
.thank-you-note {
    font-size: 13px;
    color: #555;
    margin-bottom: 28px;
    line-height: 1.6;
}
.thank-you-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 11px;
    letter-spacing: 0.12em;
}
@media (max-width: 767px) {
    .thank-you-card {
        padding: 36px 20px;
        border-radius: 20px;
    }
    .thank-you-card h2 { font-size: 1.65rem; }
    .thank-you-btn { width: 100%; justify-content: center; }
}
.registration-form .reg-form-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 100%;
    width: 100%;
    padding: 0 24px;
    margin: 0 auto 24px;
}
.reg-early-bird-promo {
    max-width: 920px;
    margin: 0 auto 28px;
    padding: 0 24px;
}
.reg-early-bird-offer {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(17px, 2.2vw, 22px);
    color: var(--primary-dark);
    line-height: 1.5;
    margin: 0 0 10px;
}
.reg-early-bird-old {
    position: relative;
    display: inline-block;
    color: #B98A9C;
    font-weight: 600;
    margin: 0 6px;
}
.reg-early-bird-old::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    top: 52%;
    height: 2px;
    background: #8E1348;
    transform: rotate(-4deg);
}
.reg-early-bird-new {
    color: #6B0F35;
    font-size: clamp(20px, 2.6vw, 26px);
    margin: 0 8px 0 4px;
}
.reg-early-bird-tax {
    display: inline-block;
    font-size: clamp(13px, 1.6vw, 15px);
    font-weight: 600;
    color: #7A3350;
    margin-left: 2px;
}
.reg-early-bird-eligibility {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-size: clamp(14px, 1.8vw, 16px);
    color: var(--primary-dark);
    line-height: 1.55;
    margin: 0;
}
.registration-form .reg-form-heading-line {
    flex: 1;
    height: 1.5px;
    background-color: var(--primary-dark);
    border-radius: 50px;
    min-width: 24px;
}
.registration-form .reg-form-heading .sub-title {
    display: block;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    white-space: nowrap;
    letter-spacing: 0.06em;
}
.registration-form .reg-form-heading .sub-title::before,
.registration-form .reg-form-heading .sub-title::after,
.registration-form .section-title::before {
    display: none;
}

@media (min-width: 992px) {
    .header-area .navbar {
        padding: 18px 40px;
    }
    .header-area nav img {
        max-width: 115px;
    }
    .header-area .nav-link {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--primary);
        color: var(--white) !important;
        margin-left: 6px;
        padding: 0;
        font-size: 16px;
        transition: var(--transition);
    }
    .header-area .nav-link:hover {
        background: var(--primary-dark);
        color: var(--white) !important;
    }
    .hero-section {
        min-height: 88vh;
        max-height: 900px;
    }
    .hero-section__bg {
        background-position: 42% center;
    }
    .hero-section__model {
        display: block;
        z-index: 1;
        left: auto;
        width: 52%;
        background-size: cover;
        background-position: 78% center;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 18%);
        mask-image: linear-gradient(to right, transparent 0%, #000 18%);
    }
    .hero-container {
        padding-left: 48px;
        padding-right: 48px;
    }
    .hero-content {
        max-width: 100%;
        padding-top: 24px;
    }
    .hero-headline-brand {
        font-size: 5.5rem;
    }
    .hero-headline-prefix {
        font-size: 1.35rem;
    }
    .hero-headline-suffix {
        font-size: 2.15rem;
        max-width: 380px;
    }
    .hero-feature-wrap {
        padding: 24px 12px 28px;
        margin-bottom: 28px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 80px 0 0;
        min-height: 100svh;
        max-height: none;
    }
    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.25) 34%,
            rgba(0, 0, 0, 0.08) 52%,
            transparent 68%
        );
        pointer-events: none;
        z-index: 1;
    }
    .hero-section .hero-container {
        padding: 0 12px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0;
        min-height: calc(100svh - 80px);
    }
    .hero-main-row {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        margin: 0;
        padding: 16px 0 20px;
        --bs-gutter-x: 0;
    }
    .hero-main-row > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }
    .hero-section .hero-content {
        max-width: 76%;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        text-align: left;
        align-self: flex-start;
    }
    .hero-headline {
        margin-bottom: 18px;
        text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
    }
    .hero-headline-prefix {
        font-size: 16px;
        font-family: 'Poppins', sans-serif;
        color: var(--primary);
        letter-spacing: 0.1em;
        font-weight: 600;
    }
    .hero-headline-brand {
        font-size: clamp(3.2rem, 13vw, 4.25rem);
        letter-spacing: -0.5px;
        line-height: 0.9;
        color: var(--primary);
    }
    .hero-headline-suffix {
        font-size: 1.4rem;
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        max-width: 240px;
        width: 100%;
        gap: 6px;
        margin-top: 10px;
        color: #000;
        text-shadow: none;
    }
    .hero-headline-suffix__line {
        flex: 0 0 22px;
        width: 22px;
        max-width: 22px;
        background: #1f1f1f;
        opacity: 0.8;
    }
    .hero-headline-suffix__text {
        gap: 8px;
    }
    .hero-headline-crown {
        color: var(--primary);
    }
    .hero-content p,
    .hero-tagline {
        font-size: 16px;
        font-family: 'Poppins', sans-serif;
        line-height: 1.7;
        margin: 0 0 20px;
        color: #fff !important;
        font-weight: 500;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }
    .hero-content p strong,
    .hero-tagline strong {
        color: var(--primary) !important;
        font-weight: 700;
    }
    .hero-register-btn {
        width: auto;
        max-width: 140px;
        min-width: 120px;
        border-radius: 50px;
        padding: 10px 16px;
        font-size: 8px;
        letter-spacing: 0.1em;
        box-shadow: 0 5px 14px rgba(207, 30, 103, 0.25);
    }
    .hero-btns a i {
        font-size: 16px;
    }
    .hero-feature-wrap {
        width: calc(100% + 24px);
        max-width: none;
        margin: 0 -12px;
        margin-top: auto;
        padding: 18px 6px max(20px, env(safe-area-inset-bottom));
        background: #fff;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
    }
    .hero-feature {
        padding: 10px 4px !important;
        border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
        border-bottom: none !important;
        gap: 8px;
    }
    .hero-feature:last-child {
        border-right: none !important;
    }
    .hero-feature img {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(207, 30, 103, 0.4);
        background: #fff;
        padding: 7px;
    }
    .hero-feature p {
        font-size: 9px;
        line-height: 1.3;
        font-family: 'Poppins', sans-serif;
    }
    .hero-section__bg {
        background-image: url('/Images/Hero-Image-Mobile.png');
        background-size: cover;
        background-position: center 22%;
    }
    .hero-section__model {
        display: none !important;
    }
    .mobile-menu-btn {
        display: none !important;
    }
    .mobile-menu {
        display: none !important;
    }
    .header-area {
        text-align: left;
    }
    .header-area .navbar {
        justify-content: flex-start;
        align-items: flex-start;
        padding: 8px 0 4px;
        min-height: 52px;
    }
    .header-area .navbar .container-fluid {
        width: 100%;
        display: flex;
        justify-content: flex-start !important;
        align-items: flex-start;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .header-area .navbar-brand {
        margin: 0 !important;
        padding: 0;
        margin-right: auto;
        text-align: left;
    }
    .header-area nav img {
        max-width: 82px;
        display: block;
        margin: 0;
    }
    .mobile-menu {
        position: absolute;
        top: 100%;
        right: 16px;
        left: 16px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(207, 30, 103, 0.15);
        border-radius: 14px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
        padding: 8px 16px 12px;
        z-index: 5;
    }
    .mobile-menu .navbar-nav {
        align-items: flex-start;
        gap: 0;
    }
    .register-col {
        padding: 20px 12px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    .register-col:last-child { border-bottom: none; }
    .register-col::after { display: none !important; }
    .id-upload-row { flex-direction: column; }
    .custom-file-upload { width: 100%; min-width: 0; }
    .visionary-card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 20px 18px;
    }
    .visionary-image {
        flex: 0 0 200px;
        max-width: 200px;
        width: 200px;
    }
    .visionary-image img {
        width: 200px;
        height: 260px;
        max-width: 200px;
    }
    .receive-card-row { flex-wrap: wrap; justify-content: center; gap: 12px; }
    .receive-card { width: calc(50% - 8px); max-width: none; margin-bottom: 0; }
    .event-card { min-height: auto; }
}

@media (max-width: 991.98px) {
    .event-category-section .event-category-container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .event-category-row {
        --bs-gutter-x: 0.75rem;
        margin-top: 10px;
    }
    .event-card {
        min-height: auto;
        height: auto;
        border-radius: 20px;
    }
    .event-card__body {
        flex-direction: column;
        min-height: auto;
    }
    .event-card__content {
        flex: 1 1 auto;
        width: 100%;
        min-height: auto;
        padding: 22px 18px 18px;
    }
    .event-card__content h3,
    .feature-list,
    .event-card__divider {
        max-width: none;
    }
    .card-image {
        flex: 0 0 auto;
        width: 100%;
        min-height: 260px;
        clip-path: none;
        -webkit-clip-path: none;
    }
    .card-image::after {
        display: none;
    }
    .card-image img {
        width: 100%;
        min-height: 260px;
        height: auto;
        display: block;
        object-fit: cover;
        object-position: center center;
    }
    .card-number { font-size: 64px; }
    .card-crown { font-size: 20px; margin-bottom: 4px; }
    .event-card__content h3 { font-size: 17px; margin-bottom: 12px; }
    .age-badge { font-size: 10px; padding: 7px 12px; }
    .feature-list li { font-size: 10px; }
}

@media (max-width: 767px) {
    .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }
    .event-category-section .event-category-container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .event-category-row {
        --bs-gutter-x: 0.5rem;
    }
    .why-goa-title-row {
        gap: 10px;
    }
    .why-goa-deco {
        max-width: 60px;
    }
    .why-goa-title {
        white-space: normal;
        font-size: 26px;
    }
    .why-goa-cta {
        padding: 16px 14px;
        margin-bottom: 24px;
    }
    .why-goa-cta p {
        font-size: 14px;
        text-align: left;
    }
    .hero-section {
        padding: 80px 0 0;
        min-height: 100svh;
        max-height: none;
        display: flex;
        flex-direction: column;
    }
    .hero-section__bg {
        background-image: url('/Images/Hero-Image-Mobile.png');
        background-size: cover;
        background-position: center 22%;
    }
    .hero-section__model {
        display: none !important;
    }
    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.25) 34%,
            rgba(0, 0, 0, 0.08) 52%,
            transparent 68%
        );
        pointer-events: none;
        z-index: 1;
    }
    .hero-section .hero-container {
        position: relative;
        z-index: 2;
        padding: 0 12px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0;
        min-height: calc(100svh - 80px);
    }
    .hero-main-row {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        margin: 0;
        padding: 16px 0 20px;
        --bs-gutter-x: 0;
    }
    .hero-main-row > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }
    .hero-headline {
        flex-direction: column;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 2px;
        margin-bottom: 16px;
        line-height: 1.05;
        text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
    }
    .hero-headline-prefix {
        font-size: 16px;
        font-family: 'Poppins', sans-serif;
        color: var(--primary);
        font-weight: 600;
    }
    .hero-headline-brand {
        font-size: clamp(3.2rem, 13vw, 4.25rem);
        letter-spacing: -0.5px;
        line-height: 0.9;
        color: var(--primary);
    }
    .hero-headline-suffix {
        font-size: 1.4rem;
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        max-width: 240px;
        width: 100%;
        gap: 6px;
        margin-top: 10px;
        color: #000;
        text-shadow: none;
    }
    .hero-headline-suffix__line {
        flex: 0 0 22px;
        width: 22px;
        max-width: 22px;
        background: #1f1f1f;
        opacity: 0.8;
    }
    .hero-headline-suffix__text {
        gap: 8px;
    }
    .hero-headline-crown {
        font-size: 0.8em;
        color: var(--primary);
    }
    .hero-section .hero-content {
        max-width: 76%;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        text-align: left;
        align-self: flex-start;
    }
    .hero-container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .hero-content p,
    .hero-tagline {
        font-size: 16px;
        font-family: 'Poppins', sans-serif;
        line-height: 1.7;
        margin: 0 0 20px;
        color: #fff !important;
        font-weight: 500;
        max-width: 100%;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }
    .hero-content p strong,
    .hero-tagline strong {
        color: var(--primary) !important;
        font-weight: 700;
    }
    .hero-btns {
        flex-direction: row;
        margin-bottom: 0;
        gap: 10px;
    }
    .hero-btns a {
        width: auto;
        text-align: center;
        justify-content: center;
    }
    .hero-register-btn {
        width: auto;
        max-width: 140px;
        min-width: 120px;
        border-radius: 50px;
        padding: 10px 16px;
        font-size: 8px;
        letter-spacing: 0.1em;
        box-shadow: 0 5px 14px rgba(207, 30, 103, 0.25);
    }
    .hero-btns a i {
        font-size: 16px;
    }
    .hero-feature-wrap {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        width: calc(100% + 24px);
        max-width: none;
        margin: 0 -12px;
        margin-top: auto;
        padding: 18px 6px max(20px, env(safe-area-inset-bottom));
        background: #fff;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
    }
    .hero-feature {
        padding: 10px 4px !important;
        border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
        border-bottom: none !important;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        gap: 8px;
    }
    .hero-feature:last-child {
        border-right: none !important;
    }
    .hero-feature:nth-child(odd),
    .hero-feature:nth-child(1),
    .hero-feature:nth-child(2) {
        border-bottom: none !important;
        padding-left: 4px !important;
    }
    .hero-feature img {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(207, 30, 103, 0.4);
        background: #fff;
        padding: 7px;
        box-shadow: none;
    }
    .hero-feature p {
        font-size: 9px;
        line-height: 1.3;
        color: #1f1f1f;
        font-weight: 500;
        font-family: 'Poppins', sans-serif;
    }
    .header-area {
        padding-top: max(8px, env(safe-area-inset-top));
        text-align: left;
    }
    .header-area .navbar .container-fluid {
        display: flex;
        justify-content: flex-start !important;
        align-items: flex-start;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .header-area .navbar-brand {
        margin: 0 !important;
        margin-right: auto;
        text-align: left;
    }
    .header-area nav img {
        max-width: 82px;
        margin-left: 0;
    }
    .why-join-section .row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .receive-card { width: calc(50% - 6px); padding: 14px 10px; }
    .receive-card-row { gap: 10px; }
    .gallery-section .owl-carousel .owl-item img { height: 260px; }
    .video-card video { max-height: 420px; }
    .Register-form { padding: 18px 12px 24px; margin: 0; }
    .register-col { padding: 18px 6px; }
    .reg-early-bird-promo {
        padding: 0 12px;
        margin-bottom: 22px;
    }
    .reg-early-bird-offer {
        line-height: 1.6;
    }
    .registration-form .reg-form-heading {
        padding: 0 12px;
        gap: 12px;
    }
    .registration-form .reg-form-heading .sub-title {
        font-size: 16px;
        white-space: normal;
        text-align: center;
    }
    .reg-fields .row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .input-icon-wrap input,
    .input-icon-wrap select { font-size: 16px; }
    .declare-row input[type="checkbox"],
    .Register-form input[type="checkbox"] {
        width: 22px !important;
        height: 22px !important;
        min-width: 22px;
        min-height: 22px;
        margin-top: 0;
    }
    .declare-row label { font-size: 11px; }
    .amount li strong { font-size: 12px; max-width: 55%; text-align: right; }
    .payment-panel { height: auto; }
    .payment-summery-footer img { width: 42px; }
    .payment-summery .theme-btn { font-size: 11px; padding: 14px 12px; }
    .faq-grid { grid-template-columns: 1fr; gap: 0; }
    .faq-panel { padding: 20px 16px 0; border-radius: 14px; }
    .faq-panel::after { margin: 20px -16px 0; }
    .faq-pill-btn { padding: 13px 16px; font-size: 13px; }
    .faq-section .sub-title::before,
    .faq-section .sub-title::after { display: none; }
    .bottom-cta-inner {
        padding-left: 0;
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    .bottom-cta-watermark {
        left: -10px;
        opacity: 0.1;
    }
    .bottom-cta-watermark img { width: 80px; }
    .bottom-cta-bar { padding: 20px 16px; }
    .bottom-cta-btn { width: 100%; justify-content: center; max-width: 280px; }
    .visionaries-section.section-padding {
        padding-top: 28px;
        padding-bottom: 36px;
    }
    .visionaries-section .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }
    .visionaries-panel {
        padding: 14px 12px 16px;
        border-radius: 14px;
    }
    .visionaries-section .visionaries-heading {
        gap: 8px;
        padding: 0;
        margin-bottom: 16px;
    }
    .visionaries-section .visionaries-heading-line {
        flex: 0 0 24px;
        width: 24px;
        max-width: 24px;
        min-width: 24px;
    }
    .visionaries-section .visionaries-heading .sub-title {
        font-size: 16px;
        letter-spacing: 0.03em;
        line-height: 1.3;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding-top: 76px;
        min-height: 100svh;
    }
    .header-area .navbar {
        min-height: 48px;
        padding: 6px 0 4px;
    }
    .header-area nav img {
        max-width: 76px;
    }
    .hero-section__bg {
        background-position: center 20%;
    }
    .hero-section .hero-container {
        min-height: calc(100svh - 76px);
        padding: 0 12px;
    }
    .hero-section .hero-content {
        max-width: 82%;
        padding: 0;
    }
    .hero-headline-brand { font-size: clamp(3rem, 12vw, 3.75rem); }
    .hero-headline-suffix { font-size: 1.3rem; color: #000; max-width: 220px; }
    .hero-headline-suffix__line { flex: 0 0 20px; width: 20px; max-width: 20px; background: #1f1f1f; }
    .hero-headline-prefix { font-size: 15px; }
    .hero-content p,
    .hero-tagline { font-size: 15px; margin-bottom: 18px; color: #fff !important; }
    .hero-register-btn { max-width: 130px; min-width: 110px; padding: 9px 14px; font-size: 7px; }
    .hero-btns a i { font-size: 14px; }
    .hero-feature-wrap {
        width: calc(100% + 24px);
        margin: 0 -12px;
        border-radius: 18px 18px 0 0;
        padding: 16px 4px max(18px, env(safe-area-inset-bottom));
    }
    .hero-feature img { width: 32px; height: 32px; padding: 6px; }
    .hero-feature p { font-size: 8px; }
    .age-badge { font-size: 11px; padding: 8px 12px; margin-bottom: 16px; }
    .receive-card { width: 100%; }
    .Register-form { padding: 14px 10px 20px; }
    .register-col { padding: 14px 4px; }
    .Register-form h4 { font-size: 14px; }
    .declare-row label { font-size: 10px; }
    .visionaries-section .visionaries-heading-line {
        flex: 0 0 20px;
        width: 20px;
        max-width: 20px;
        min-width: 20px;
    }
    .visionaries-section .visionaries-heading .sub-title {
        font-size: 15px;
    }
    .visionaries-panel {
        padding: 12px 10px 14px;
    }
    .visionary-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .visionary-image img,
    .visionary-card .visionary-image img {
        width: 200px !important;
        height: 260px !important;
        max-width: 200px !important;
        min-width: unset;
    }
    .visionary-card--kirti .visionary-image,
    .visionary-card--viveka .visionary-image {
        flex: 0 0 auto;
        max-width: 200px;
        width: 100%;
    }
    .visionary-content-side h4 { font-size: 20px; }
    .visionary-detail-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    .visionary-brand-panel {
        width: 118px;
    }
    .visionary-video-btn { justify-content: center; }
}

/* Early Bird Offer Popup */
body.early-bird-open {
    overflow: hidden;
}
.early-bird-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.early-bird-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.early-bird-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(43, 14, 27, 0.72);
    backdrop-filter: blur(4px);
}
.early-bird-card {
    position: relative;
    width: 100%;
    max-width: 680px;
    max-height: calc(100vh - 40px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, #ffffff 0%, #FDF3EC 100%);
    border-radius: 22px;
    box-shadow:
        0 30px 60px -20px rgba(60, 5, 30, 0.55),
        0 0 0 1px rgba(212, 175, 55, 0.35);
    z-index: 1;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.25s ease;
}
.early-bird-modal.is-open .early-bird-card {
    transform: translateY(0) scale(1);
}
.early-bird-modal__close {
    position: absolute;
    top: 12px;
    left: 14px;
    z-index: 4;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #6B0F35;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.early-bird-sash {
    position: absolute;
    top: 22px;
    right: -64px;
    width: 260px;
    transform: rotate(40deg);
    background: linear-gradient(90deg, #D4AF37, #F1D98B, #D4AF37);
    color: #2B0E1B;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 2.5px;
    text-align: center;
    padding: 7px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 3;
}
.early-bird-top-bar {
    height: 8px;
    width: 100%;
    background: linear-gradient(90deg, #D4AF37, #C81E5C, #8E1348);
    border-radius: 22px 22px 0 0;
}
.early-bird-content {
    padding: 44px 46px 40px;
    position: relative;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.early-bird-crown {
    width: 34px;
    height: 34px;
    margin: 0 auto 14px;
    display: block;
}
.early-bird-eyebrow {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 12.5px;
    color: #C81E5C;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.early-bird-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 30px;
    color: #6B0F35;
    line-height: 1.25;
    margin-bottom: 4px;
}
.early-bird-title span {
    color: #C81E5C;
    font-style: italic;
}
.early-bird-divider {
    width: 70px;
    height: 2px;
    margin: 18px auto 22px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}
.early-bird-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.early-bird-old-price {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #B98A9C;
    position: relative;
}
.early-bird-old-price::after {
    content: "";
    position: absolute;
    left: -4px;
    right: -4px;
    top: 52%;
    height: 2px;
    background: #8E1348;
    transform: rotate(-6deg);
}
.early-bird-new-price-wrap {
    text-align: center;
}
.early-bird-new-price {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 52px;
    color: #6B0F35;
    letter-spacing: 0.5px;
    line-height: 1;
}
.early-bird-new-price sup {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #C81E5C;
    margin-left: 6px;
}
.early-bird-tax {
    margin-top: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #7A3350;
    letter-spacing: 0.3px;
}
.early-bird-savings-tag {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #7A5A00;
    background: linear-gradient(90deg, #F1D98B, #D4AF37);
    width: fit-content;
    margin: 2px auto 26px;
    padding: 5px 16px;
    border-radius: 30px;
}
.early-bird-eligibility {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-size: 14.5px;
    color: #7A3350;
    background: rgba(200, 30, 92, 0.06);
    border: 1px dashed rgba(200, 30, 92, 0.35);
    border-radius: 12px;
    padding: 12px 22px;
    line-height: 1.55;
    margin-bottom: 30px;
}
.early-bird-cta-row {
    display: flex;
    justify-content: center;
}
.early-bird-cta {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(90deg, #C81E5C, #8E1348);
    padding: 14px 40px;
    border-radius: 40px;
    box-shadow: 0 12px 24px -8px rgba(142, 19, 72, 0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.early-bird-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -8px rgba(142, 19, 72, 0.65);
}
.early-bird-footnote {
    text-align: center;
    margin-top: 18px;
    font-size: 11.5px;
    letter-spacing: 1px;
    color: #B98A9C;
    text-transform: uppercase;
}
@media (max-width: 480px) {
    .early-bird-content {
        padding: 38px 24px 32px;
    }
    .early-bird-title {
        font-size: 24px;
    }
    .early-bird-new-price {
        font-size: 42px;
    }
    .early-bird-old-price {
        font-size: 18px;
    }
    .early-bird-sash {
        font-size: 11px;
        width: 220px;
        top: 18px;
        right: -58px;
    }
}