/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none !important;
}
html,
body {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

:root {
    --primary: #d14e9a;
    --secondary: #ff5e91;
    --light-bg: #FFF8FA;
    --text: #1A1A1A;
    --gray: #666;
    --border: #F1F1F1;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 0px 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo-link img {
    height: 5rem;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-link:hover img {
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.register-btn {
    background-image: linear-gradient(98deg, #d14e9a 14%, #ff566d 73.56%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary span,
.pricing-btn span,
.register-btn span {
    color: white;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 79, 135, 0.3);
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #60bbf1, #c6e1f1, #f57e93, #b4a8ff, #c8f1ff, #eda5b2);
    background-size: 400% 400%;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.register-btn:hover::before {
    opacity: 0.2;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 79, 135, 0.3);
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--light-bg) 0%, #fff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 80px;
}

#hero {
    scroll-margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    opacity: 0.3;
}
@media (max-width: 768px) {
    .hero::after {
       display: none;
    }
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    opacity: 0.2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.event-card {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-bottom {
    padding: 0 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.badge-icon {
    width: 18px;
    height: 18px;
}

.about-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 6px;
}

.icon-svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.float-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 6px;
}

.expect-svg {
    width: 48px;
    height: 48px;
}

.check-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 6px;
}

.timeline-arrow-svg {
    width: 24px;
    height: 24px;
}

.star-icon {
    width: 22px;
    height: 22px;
    display: inline-block;
}

.social-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s;
}

.social-icon-img:hover {
    transform: scale(1.2);
}

.faq-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-question {
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(90deg, #60bbf1, #c6e1f1, #f57e93, #b4a8ff, #c8f1ff, #eda5b2);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 500px;
}



.event-details-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}



.event-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 16px;
    border-bottom: none;
}

.event-detail strong {
    display: block;
    color: var(--text);
    font-size: 14px;
}

.event-detail span {
    color: var(--gray);
    font-size: 13px;
}

.event-detail .icon {
    font-size: 24px;
}

.event-detail strong {
    display: block;
    color: var(--text);
}

.event-detail span {
    color: var(--gray);
    font-size: 14px;
}

.btn-primary {
    background-image: linear-gradient(98deg, #d14e9a 14%, #ff566d 73.56%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 79, 135, 0.4);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:active::after {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 16px 32px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    margin-left: 15px;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--light-bg);
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    flex: 1 1 auto;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 0px;
    left: 144px;
    animation-delay: 2s;
}

.card-2 {
    bottom: 15px;
    right: 89px;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    right: -40px;
    animation-delay: 2s;
}

.card-4 {
    top: 72px;
    right: 108px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* About Section */
.about {
    background: var(--light-bg);
}

.about-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.about-description {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 20px;
}

.topics-list {
    list-style: none;
    margin: 30px 0;
}

.topics-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text);
}

.topics-list li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* What to Expect Section */
.expect {
    background: #fff;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.expect-card {
    background: var(--light-bg);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.expect-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.expect-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.expect-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text);
}

.expect-card p {
    color: var(--gray);
    font-size: 14px;
}

/* Highlights Section */
.highlights {
    background: var(--light-bg);
}

.highlights-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlights-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.highlights-list h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.highlights-list ul {
    list-style: none;
}

.highlights-list li {
    padding: 15px 0;
    font-size: 18px;
    color: var(--text);
}

/* Schedule Timeline */
.timeline {
    max-width: 600px;
    margin: 0 auto;
}

.timeline-item {
    background: white;
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time {
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
}

.activity {
    color: var(--text);
    font-weight: 500;
}

.timeline-arrow {
    text-align: center;
    font-size: 24px;
    color: var(--secondary);
    margin: 10px 0;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
}

.pricing-card {
    background: white;
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.price {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary);
    margin: 20px 0;
}

.includes-title {
    font-size: 18px;
    font-weight: 600;
    margin: 30px 0 20px;
}

.includes-list {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.includes-list li {
    padding: 10px 0;
    color: var(--text);
}

.pricing-btn {
    padding: 18px 40px;
    font-size: 18px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--light-bg);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
}

.stars {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text);
}

.author {
    color: var(--gray);
    font-weight: 500;
}

/* FAQ Section */
.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--gray);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Final CTA */
.final-cta {
    background: #D7A0C9;
    padding: 100px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.final-cta .large {
    padding: 20px 50px;
    font-size: 20px;
}

/* Footer */
footer {
    background: var(--text);
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.link-group h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.link-group a,
.link-group span {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin: 10px 0;
    transition: color 0.3s;
}

.link-group a:hover {
    color: var(--primary);
}

.social-icons a {
    font-size: 24px;
    margin-right: 15px;
    text-decoration: none;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #777;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 20px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 100;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 10px 0;
        font-size: 18px;
        border-bottom: 1px solid var(--border);
    }

    .register-btn {
        display: none;
    }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
    }

    .overlay.active {
        display: block;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-image-container {
        margin-top: 40px;
    }

    .floating-card {
        padding: 10px 15px;
        font-size: 12px;
    }

    .card-1 {
        top: -104px;
        left: -10px;
        animation-delay: unset;
    }

    .card-2 {
        bottom: 66px;
        right: -10px;
    }

    .card-3 {
        top: -50px;
        right: -10px;
    }
    .card-4 {
       top: -50px;
        left: -10px;
        width: 46%;
    }

    .section-title {
        font-size: 32px;
    }

    .about-card {
        padding: 30px;
    }

    .expect-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .event-details-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .event-detail {
        padding: 12px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        margin-left: 0;
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 48px;
    }

    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }

    .section-container {
        padding: 50px 20px;
    }

    .final-cta h2 {
        font-size: 32px;
    }
}