.back-button-wrapper {
    position: fixed;        /* stays visible while scrolling */
    top: 20px;
    left: 20px;
    z-index: 999;
}

.back-button {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #dfc833;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* Optional: add some styling for spacing or alignment */

.back-button-wrapper {
    position: fixed;        /* stays visible while scrolling */
    top: 20px;
    left: 20px;
    z-index: 999;
}

.back-button {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #dfc833;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* Optional: add some styling for spacing or alignment */

.pinyon-script-regular {
    font-family: "Pinyon Script", cursive;
    font-weight: 400;
    font-style: normal;
}

@import url('https://fonts.cdnfonts.com/css/aneisha-script');

:root {
    --bg: #0a0a0a;
    --bg-elevated: #141414;
    --fg: #ffffff;
    --muted: #505050;
    --accent: #fbbc05;
    --border: #2a2a2a;
    --card: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    align-items: center;




}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--fg);
    color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    /* Important for parallax container */
    margin: 0;
}

/* --- PARALLAX CONTAINER SETUP --- */
.MainContainer {
    perspective: 1px;
    transform-style: preserve-3d;
    background-color: rgb(250, 240, 210);
    overflow: hidden;
    /* 1. Locks scrolling initially */
}

/* 2. Class to enable scrolling when added */
.MainContainer.enable-scroll {
    overflow-y: scroll;
    overflow-x: hidden;
}

/* Content Container (Foreground) */
.ContentContainer {
    position: relative;
    display: block;
    z-index: 1;
}

/* --- 1ST SECTION: PARALLAX BACKGROUND --- */
/* This section moves slower (sticky effect) */
.header-hero.ParallaxContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: -1;
    /* Push behind foreground */
    height: 100vh;
    /* Full viewport height */
    transform: translateZ(-1px) scale(2);
    background-color: rgb(250, 240, 210);
    /* Fallback color */
    padding: 4rem 3rem;
    text-align: center;
    overflow: hidden;
    /* Contains the background icons */
}

/* Container for the floating background icons */
.parallax-icon-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 40px;
    padding: 40px;
    justify-items: center;
    align-items: center;
    z-index: 0;
    /* opacity: 1;  */
    pointer-events: none;
}

/* Icon Styling */
.p-icon img {
    width: 80px;
    height: auto;
    /* filter: grayscale(100%); */
    /* opacity: 0.6; */
    animation: float 6s ease-in-out infinite;
}

/* Bubble Floating Animation */
/* Adds slight rotation and X-axis drift for a bubble effect */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(3px, -8px) rotate(1deg);
    }

    /* Slight drift right */
    50% {
        transform: translate(0, -15px) rotate(0deg);
    }

    /* Peak height */
    75% {
        transform: translate(-3px, -8px) rotate(-1deg)
    }

    ;

    /* Slight drift left */
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Randomize timing for every icon so they don't float evenly */
/* This creates the chaotic/natural bubble look */
.p-icon:nth-child(1) img {
    animation-duration: 5s;
    animation-delay: 0s;
}

.p-icon:nth-child(2) img {
    animation-duration: 7s;
    animation-delay: 1.5s;
}

.p-icon:nth-child(3) img {
    animation-duration: 6s;
    animation-delay: 0.5s;
}

.p-icon:nth-child(4) img {
    animation-duration: 8s;
    animation-delay: 2s;
}

.p-icon:nth-child(5) img {
    animation-duration: 5.5s;
    animation-delay: 0.8s;
}

.p-icon:nth-child(6) img {
    animation-duration: 6.5s;
    animation-delay: 1s;
}

.p-icon:nth-child(7) img {
    animation-duration: 7.5s;
    animation-delay: 2.5s;
}

.p-icon:nth-child(8) img {
    animation-duration: 5.2s;
    animation-delay: 0.2s;
}

.p-icon:nth-child(9) img {
    animation-duration: 6.8s;
    animation-delay: 1.2s;
}

.p-icon:nth-child(10) img {
    animation-duration: 7.2s;
    animation-delay: 0.7s;
}

.p-icon:nth-child(11) img {
    animation-duration: 5.8s;
    animation-delay: 1.8s;
}

.p-icon:nth-child(12) img {
    animation-duration: 6.2s;
    animation-delay: 0.3s;
}

.p-icon:nth-child(13) img {
    animation-duration: 7.8s;
    animation-delay: 2.2s;
}

.p-icon:nth-child(14) img {
    animation-duration: 5s;
    animation-delay: 1.5s;
}

.p-icon:nth-child(15) img {
    animation-duration: 6s;
    animation-delay: 0.9s;
}


/* --- CUSTOM POSITION FOR EACH LOGO --- */

/* Row 1 Positions */
.p-icon:nth-child(1) {
    transform: translate(10px, 15px);
}

/* Moves right 10px, down 15px */
.p-icon:nth-child(2) {
    transform: translate(-20px, -10px);
}

/* Moves left 20px, up 10px */
.p-icon:nth-child(3) {
    transform: translate(5px, -25px);
}

.p-icon:nth-child(4) {
    transform: translate(-15px, 20px);
}

.p-icon:nth-child(5) {
    transform: translate(25px, 5px);
}

/* Row 2 Positions */
.p-icon:nth-child(6) {
    transform: translate(-10px, 20px);
}

.p-icon:nth-child(7) {
    transform: translate(-12px, 2px);
}

.p-icon:nth-child(8) {
    transform: translate(-25px, 5px);
}

.p-icon:nth-child(9) {
    transform: translate(10px, 25px);
}

.p-icon:nth-child(10) {
    transform: translate(-5px, -20px);
}

/* Row 3 Positions */
.p-icon:nth-child(11) {
    transform: translate(20px, 10px);
}

.p-icon:nth-child(12) {
    transform: translate(-15px, -5px);
}

.p-icon:nth-child(13) {
    transform: translate(5px, 15px);
}

.p-icon:nth-child(14) {
    transform: translate(-3px, -10px);
}

.p-icon:nth-child(15) {
    transform: translate(15px, 0px);
}

/* --- CUSTOM SIZE FOR EACH LOGO --- */

/* Row 1 Sizes */
.p-icon:nth-child(1) img {
    width: 90px;
}

.p-icon:nth-child(2) img {
    width: 110px;
}

.p-icon:nth-child(3) img {
    width: 150px;
}

.p-icon:nth-child(4) img {
    width: 120px;
}

.p-icon:nth-child(5) img {
    width: 95px;
}

/* Row 2 Sizes */
.p-icon:nth-child(6) img {
    width: 100px;
}

.p-icon:nth-child(7) img {
    width: 115px;
}

.p-icon:nth-child(8) img {
    width: 80px;
}

.p-icon:nth-child(9) img {
    width: 105px;
}

.p-icon:nth-child(10) img {
    width: 90px;
}

/* Row 3 Sizes */
.p-icon:nth-child(11) img {
    width: 110px;
}

.p-icon:nth-child(12) img {
    width: 95px;
}

.p-icon:nth-child(13) img {
    width: 120px;
}

.p-icon:nth-child(14) img {
    width: 85px;
}

.p-icon:nth-child(15) img {
    width: 100px;
}


/* --- HERO CARD STYLES --- */
.hero-card {
    display: flex;
    flex-direction: row;
    background: transparent;
    border: 1px solid rgb(0, 0, 0) !important;
    /* Semi-transparent white background */
    border-radius: 20px;
    overflow: hidden;
    max-width: 800px;
    max-height: 210px;
    width: 100%;
    margin-top: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 10px;
}

/* Left Side: Image */
.hero-card-left {
    flex: 0 0 170px;
    /* Fixed width for image */
    background: transparent;
    /* border: 1px solid rgb(0, 0, 0) ; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border-right: 1px solid #000000;
}

.hero-card-left img {
    max-width: 150px;
    height: auto;
    object-fit: contain;
}

/* Right Side: Text & Button */
.hero-card-right {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;

}

.hero-card-head {
    color: #dfc833;
    font-size: 20px;
    font-family: 'Astro 867', 'Montserrat', sans-serif;
}

.hero-card-para {
    font-size: 14px;
}

.hero-card-right .header-hero-subtitle {
    margin-bottom: 1.5rem;
    text-align: left;
    color: #333;
}

/* View Button Styling */
.view-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: rgba(250, 227, 160, 1);
    /* Black background */
    color: #000000;
    border: none;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: var(--accent);
    /* Yellow on hover */
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.view-btn svg {
    transition: transform 0.3s ease;
}

.view-btn:hover svg {
    transform: translateY(3px);
}

/* Responsive: Stack on Mobile */
@media (max-width: 768px) {
    /* .hero-card {
        flex-direction: column;
    }

    .hero-card-left {
        flex: 0 0 auto;
        width: 100%;
        height: 100px;
        border-right: none;
        border-bottom: 1px solid #eee;
    } */

    .header-hero-title{
        font-size: 60px !important;
    }

    .hero-card-right {
        padding: 1.5rem;
        text-align: center;
    }

    .hero-card-right .header-hero-subtitle {
        text-align: center;
    }

    .view-btn {
        align-self: center;
    }
}

/* Center Content Styling */
.header-hero-content {
    position: relative;
    z-index: 1;
    /* Above the icons */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

/* Logo Styling inside the center */
.hero-center-logo {
    width: 200px;
    /* Adjust size as needed */
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    animation: fadeInScale 1.2s ease-out forwards;
}

/* Animation for Logo */
/* @keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
} */

.header-hero-title {
    font-family: 'Astro 867', 'Montserrat', sans-serif;
    font-size: clamp(4rem, 15vw, 4.7rem);
    /* Larger for background */
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    color: #dfc833;
}

.header-hero-subtitle {
    font-weight: 500;
    color: var(--muted);
    line-height: 1.6;
}

/* ================================== */
/* --- HERO SECTION (FOREGROUND) --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 4rem 3rem;
    z-index: 1;
    /* Opaque background to cover parallax layer when scrolling */
    background: linear-gradient(180deg, rgba(250, 227, 160, 1) 0%, rgba(246, 246, 246, 1) 13%, rgba(245, 245, 245, 1) 42%, rgba(250, 228, 162, 1) 54%, rgba(250, 228, 162, 1) 63%, rgba(255, 255, 255, 1) 73%, rgba(255, 255, 255, 1) 100%);
}

.hero-title {
    font-family: 'Astro 867', 'Montserrat', sans-serif;
    font-size: clamp(3rem, 12vw, 4rem);
    font-weight: 700;
    letter-spacing: 5px;
    text-align: center;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease 0.2s forwards;
    color: #dfc833;
}

.creative {
    /* font-family: 'Pinyon Script', cursive; */
    font-family: 'Aneisha Script', sans-serif;
    font-weight: 500 !important;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    letter-spacing: 2px;
}

.present {
    font-size: 2.5rem;
    color: var(--bg);
    margin-bottom: 0.5rem;
}

.join {
    color: var(--bg);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    color: var(--muted);
    text-align: center;
    max-width: 80%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease 0.4s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- HERO GRID STYLES --- */
.hero-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-top: 2rem;
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease 0.8s forwards;
}

.grid-left,
.grid-right {
    flex: 1;
}

.grid-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-center img {
    max-width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.grid-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.grid-left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bg);
    line-height: 1.2;
}

.logo-small {
    width: 200px;
    height: auto;
}

.grid-right {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.viha-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1rem);
    font-weight: 700;
    color: var(--bg);
    line-height: 1.3;
}

.viha-text {
    font-size: 1.3rem;
    color: var(--bg);
    line-height: 1.6;
    margin-top: 0.5rem;
    font-weight: 600;
}

.logo-viha {
    width: 200px;
    height: auto;
    margin: 5px 0;
}

/* --- LIVE SECTION STYLES --- */
.live-section {
    margin-top: 5rem;
    text-align: center;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
    width: 70%;
}

.live-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    color: var(--bg);
}

.live {
    color: red;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.live::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 0, 0, 0.3);
    border-radius: 4px;
    filter: blur(4px);
    z-index: -1;
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0;
        transform: scale(1.5);
    }

    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

/* --- ANNOUNCE SECTION STYLES --- */
.Announce {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 4rem 3rem;
    z-index: 1;
    background: linear-gradient(180deg, rgba(246, 246, 246, 1) 0%, rgba(252, 252, 252, 1) 41%, rgba(250, 228, 162, 1) 71%, rgba(250, 228, 162, 1) 87%, rgba(255, 255, 255, 1) 100%);
}

.annonce-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    gap: 2rem;
}

.vihaball {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
}

.viha-gif {
    width: 200px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.vihaball-text {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.5rem;
}

.viha-logo-inline {
    width: 120px;
    height: auto;
}

.vihaball-text p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bg);
}

.annonce-card-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

.annonce-individual-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 30%;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card-gap {
    margin-top: 3rem;
}

.annonce-individual-card:hover {
    transform: translateY(-5px);
}

.annonce-individual-card img {
    width: 50%;
    height: auto;
    object-fit: cover;
}

.annonce-text {
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    color: var(--bg);
}

.air-color {
    color: #007bff;
}

.cla-color {
    color: #dc3545;
}

/* --- UNVEIL SECTION STYLES (FIXED) --- */
.Unveil {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 6rem 3rem;
    z-index: 1;
}

.unveil-main-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    width: 100%;
    max-width: 1400px;
    justify-content: center;
}

.unveil-des {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 4rem auto;
    line-height: 1.6;
}

.unveil-main-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg);
}

.unveil-layout-container {
    display: flex;
    gap: 3rem;
    width: 100%;
    max-width: 1400px;
    align-items: flex-start;
}

.unveil-left-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.unveil-right-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.unveil-product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 8px solid rgb(225, 229, 235);
}

.unveil-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: #f5f5f5;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
}

.card-header h6 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.05em;
}

.logo-card {
    width: 80px;
    height: auto;
}

.card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    min-height: 200px;
    justify-content: center;
}

.product-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.card-body p {
    font-size: 1rem;
    color: var(--bg);
    font-weight: 700;
}

.sidebar-image-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.sidebar-image {
    width: 100%;
    height: auto;
    display: block;
}

/* fotter */
.footer-section {
    color: var(--bg);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    min-height: 80vh;
    gap: 2rem;
    background: linear-gradient(142deg,
            rgba(246, 246, 246, 1) 0%,
            rgba(252, 252, 252, 0.9) 55%,
            rgba(250, 228, 162, 1) 78%,
            rgba(250, 228, 162, 0.7) 86%);
}

.footer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    max-width: 600px;
}

.footer-text {
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 600;
    letter-spacing: 0.1rem;
    color: #000000;
}

.footer-thanks {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 1rem;
}

.footer-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-image {
    width: 100%;
    height: auto;
    max-height: 850px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(255, 255, 255, 0.1));
}

/* Responsive */
@media (max-width: 1100px) {
    .unveil-layout-container {
        flex-direction: column;
        align-items: center;
    }

    .unveil-right-sidebar {
        position: static;
        flex-direction: row;
        align-items: flex-start;
    }

    .unveil-right-sidebar>div {
        width: 50%;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .grid-left h2 {
        text-align: center;
    }

    .grid-center img {
        max-height: 400px;
    }

    .logo-small {
        margin: 0 auto 1rem auto;
    }

    .logo-viha {
        margin: 5px auto;
    }

    .grid-right {
        gap: 3rem;
        align-items: center;
    }

    .annonce-card-container {
        flex-direction: column;
        gap: 2rem;
    }

    .annonce-individual-card {
        width: 100%;
    }

    .card-gap {
        margin-top: 0;
    }

    .vihaball {
        padding: 2rem;
        flex-direction: column;
    }

    .vihaball-text {
        align-items: center;
    }

    .unveil-left-grid {
        grid-template-columns: 1fr;
    }

    .unveil-right-sidebar {
        flex-direction: column;
    }

    .sidebar-image-wrapper {
        display: none;
    }

    .unveil-right-sidebar>div {
        width: 100%;
    }

    .unveil-main-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: 4rem 2rem;
        gap: 3rem;
    }

    .footer-content {
        align-items: center;
        max-width: 100%;
    }

    .footer-text {
        font-size: 1.2rem;
    }

    .footer-image-wrapper {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {

    .hero,
    .Announce,
    .Unveil {
        padding: 4rem 1.5rem;
    }

    .live-section {
        width: 100%;
    }
}

/* Focus States */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* section star minds */
.star-minds {
    padding: clamp(40px, 8vw, 150px) 0;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.star-minds-content {
    display: flex;
    align-items: flex-start;
    gap: clamp(10px, 2vw, 40px);
    position: relative;
    min-height: 600px;
}

.star-minds-left {
    flex: 0 0 clamp(30%, 40%, 45%);
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 2vw, 20px);
    align-items: flex-start;
    position: relative;
    min-height: 500px;
}

.star-minds-right {
    flex: 0 0 clamp(55%, 60%, 70%);
    position: relative;
    margin-top: 127px;
}

.star-minds-images {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vw, 15px);
    width: 100%;
}

.cup-png {
    width: clamp(250px, 35vw, 550px);
    height: auto;
    border-radius: 12px;
    position: absolute;
    left: clamp(-20px, -2vw, 0px);
    top: clamp(-100px, -12vw, -150px);
    z-index: 1;
}

.art-logo-png {
    width: clamp(200px, 28vw, 342px);
    height: auto;
    border-radius: 12px;
    position: absolute;
    left: clamp(53px, 20vw, 160px);
    top: clamp(300px, 38vw, 460px);
    z-index: 2;
}

.abstract-png {
    width: clamp(280px, 42vw, 250px);
    height: auto;
    border-radius: 12px;
    position: absolute;
    right: clamp(-10px, -1vw, 0px);
    top: clamp(-300px, -18vw, -200px);
    z-index: 1;
}

.star-main-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 15px);
    margin: clamp(100px, 20vh, 200px) 0 clamp(10px, 2vw, 15px) 0;
}

.star-main-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.2;
    margin-top: 20px;
    color: #1a1a1a;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.logo-small {
    width: clamp(120px, 20vw, 320px);
    height: auto;
    flex-shrink: 0;
}

.star-minds-right p {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    line-height: 1.7;
    color: #000000;
    margin-top: clamp(15px, 4vw, 20px);
    font-weight: 700;
    letter-spacing: 1px;
    max-width: 90%;
}

.star-recog {
    color: #fbbc05;
    font-weight: 600 !important;
}

/* Tablet & Large Mobile */
@media (max-width: 1024px) {
    .star-minds-content {
        gap: 20px;
    }

    .cup-png {
        left: -10px;

    }
}

@media (max-width: 1300px) {
    .art-logo-png {
        left: 75px;
    }
}

/* Mobile - Hide abstract-png, 2-column layout */
@media (max-width: 768px) {
    .star-minds-content {
        flex-direction: row;
        /* Row instead of column */
        gap: 25px;
        align-items: flex-start;
        /* Top alignment */
        padding: 20px;
    }

    .star-minds-left {
        flex: 0 0 45%;
        /* Left: 45% for images */
        width: 45%;
        min-height: auto !important;
        /* 🔥 FIX 1: Remove min-height */
        height: auto;
    }

    .star-minds-right {
        flex: 0 0 55%;
        /* Right: 55% for text */
        width: 55%;
        margin-top: 0 !important;
    }

    /* HIDE abstract-png on mobile/tablet */
    .abstract-png {
        display: none !important;
    }

    /* Images become relative & centered */
    .cup-png,
    .art-logo-png {
        position: relative !important;
        margin: 15px auto;
        left: 0 !important;
        top: 0 !important;
        max-width: 200px;
        width: 100%;
    }

    .star-main-header {
        margin: 20px 0 15px 0;
        flex-direction: column;
        text-align: left;
    }

    .star-main-header h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        text-align: left;
    }

    .star-minds-right p {
        max-width: 100%;
        padding: 0;
        margin-top: 15px;
        text-align: left;
    }
}

/* Small Mobile - Single column, images horizontal */
@media (max-width: 480px) {

    /* .header-hero-title {} */

    .header-hero-content h1 {
        font-size: 30px !important;
        width: 100vh;
    }

    .view-btn {
        padding: 7px 20px;
        font-size: 15px;
    }

    .header-hero-subtitle {
        width: 55vh;
    }

    .p-icon:nth-child(6) {
        display: none;
    }

    .hero-card-para {
        font-size: 12px;
    }

    .hero-card-left {
        display: none;
    }

    .hero-card-head {
        padding-top: 20px;
    }

    .star-minds {
        padding: 30px 15px;
    }

    .star-minds-content {
        flex-direction: column;
        /* Stack vertically */
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .star-minds-left,
    .star-minds-right {
        flex: none;
        width: 100%;
    }

    .star-minds-images {
        flex-direction: row;
        /* Images side by side */
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    .cup-png,
    .art-logo-png {
        max-width: 120px;
        /* Smaller for small screens */
        margin: 0;
    }

    .star-main-header {
        text-align: center;
    }

    .star-main-header h1 {
        text-align: center;
    }

    .star-minds-right p {
        text-align: center;
        padding: 0 10px;
    }
}

/* Tablet (between 481px - 768px) - Keep 2-column */
@media (min-width: 481px) and (max-width: 768px) {

    .cup-png,
    .art-logo-png {
        max-width: 220px;
    }
}

/* VENUE SECTION */
.venue-section {
    padding: clamp(60px, 10vw, 120px) 0;
    margin: 0 auto;
    text-align: center;
    position: relative;
    background: linear-gradient(145deg,
            rgba(246, 246, 246, 1) 0%,
            rgba(252, 252, 252, 0.9) 45%,
            rgba(250, 228, 162, 1) 55%,
            rgba(250, 228, 162, 0.7) 100%);
    background:
        linear-gradient(145deg,
            rgba(246, 246, 246, 1) 0%,
            rgba(252, 252, 252, 0.9) 45%,
            rgba(250, 228, 162, 1) 55%,
            rgba(250, 228, 162, 0.7) 80%,
            rgba(250, 228, 162, 0.4) 95%),
        linear-gradient(to bottom, transparent 70%, rgba(255, 255, 255, 0.9) 85%, rgba(255, 255, 255, 1) 100%);
    background-blend-mode: overlay;
}

.venue-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 4vw, 4px);
}

.venue-title {
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 1px;
}

.venue-name {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 900;
    color: #000;
    letter-spacing: 1px;
}

.venue-image {
    width: clamp(280px, 60vw, 550px);
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.venue-details {
    display: flex;
    flex-direction: row;
    gap: clamp(15px, 3vw, 25px);
    align-items: center;
    padding: clamp(20px, 4vw, 40px);
    max-width: 1000px;
    width: 100%;
}

.venue-address {
    display: flex;
    align-items: flex-start;
    gap: clamp(12px, 2vw, 20px);
    width: 70%;
}

.location-icon {
    width: 50px;
    height: auto;
    margin-top: 4px;
}

.address-text {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #333;
    line-height: 1.6;
    text-align: left;
}

.venue-time {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 700;
    color: #000;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.time-label {
    color: #fbbc05;
    font-size: clamp(1rem, 2.8vw, 1.3rem);
}

/* Tablet */
@media (max-width: 1024px) {
    .venue-section {
        padding: clamp(50px, 8vw, 100px) 0;
    }

    .venue-details {
        padding: clamp(20px, 5vw, 35px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .venue-content {
        gap: 25px;
    }

    .venue-details {
        margin: 0 15px;
        padding: clamp(25px, 6vw, 35px);
    }

    .venue-address {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .address-text {
        text-align: center;
        max-width: 280px;
    }

    .venue-time {
        flex-direction: column;
        gap: 8px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .venue-section {
        padding: 40px 15px;
    }

    .venue-name {
        letter-spacing: 1px;
    }

    .venue-details {
        margin: 0 10px;
        flex-direction: column;
        padding: 25px 20px;
    }
}

.chief-guest-section {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
}

.guest-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.guest-card {
    width: 200px;
    text-align: center;
}

.guest-card img {
    width: 200px;
    height: 200px;
    border-radius: 25%;
    object-fit: cover;
    border: 4px solid #ddd;
    transition: 0.3s;
}

.guest-card1 img {
    width: 200px;
    height: 200px;
    border-radius: 25%;
    object-fit: cover;
    transition: 0.3s;

}

.guest-card img:hover {
    transform: scale(1.05);
}

.guest-card h4 {
    margin-top: 15px;
    font-size: 18px;
}

.guest-card p {
    font-size: 14px;
    color: #555;
}

/* Highlight Center Guest */
.highlight img {
    width: 230px;
    height: 230px;
    border: 5px solid #007bff;
}

.img1,
.img3 {
    margin-top: 80px;
}



.guest-row1 {
    display: flex;
    justify-content: center;
    gap: 250px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.guestfont {
    color: #dfc833;
}

/* Center-row container */
.center-row {
    position: relative;
    /* allows absolute positioning inside if needed */
    width: 100%;
    height: 0;
    /* optional, height handled by content */
}

/* Viha image card */
.guest-card1.img4 {
    position: absolute;
    left: 50%;
    /* move to center horizontally */
    transform: translateX(-50%);
    /* truly center the image */
    top: -80px;
    /* adjust vertical position */
    display: block;
    margin: 0 auto;
    width: 200px;
    /* keep original size */
}

.guest-card1.img4 img {
    width: 100%;
    height: auto;
    border-radius: 25%;
    object-fit: cover;
    transition: 0.3s;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .guest-card1.img4 {
        top: -60px;
        width: 180px;
    }
}

@media (max-width: 768px) {
    .guest-card1.img4 {
        position: relative;
        /* stack naturally on smaller screens */
        left: auto;
        transform: none;
        top: -20px;
        margin: 0 auto 20px auto;
        width: 160px;
    }
}

@media (max-width: 480px) {
    .guest-card1.img4 {
        width: 140px;
        top: -10px;
        margin-bottom: 15px;
    }
}



/* Optional: add some styling for spacing or alignment */