/* Reset and Base Styles */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #be0097;
    --secondary-color: #393185;
    --white: #ffffff;
    --black: #000000;
    --gray: #f5f5f5;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: #f6edfa;

}
/* Navbar Section*/

.navbar {
    height: 80px;
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 0;
}

.logo img {
    height: auto;
    width:200px ;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #be0097;
}

.register-btn {
    background: #be0097;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.register-btn:hover {
    background: #a0007e;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 1rem;
        gap: 1rem;
        text-align: center;
        transform: translateY(-150%);
        transition: transform 0.3s;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .cta-button {
        display: none; /* Hide register button on mobile */

    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hamburger.active span:first-child {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:last-child {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/*main-page1*/
.page1 {
    background: #f6edfa;
    height: auto;
    width: 100%;
    color: #ffffff;
    padding-top: 100px;
}

.page1 h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 108px;
    line-height: 100px;
    text-align: center;
}

.page1 .main{
    padding: 80px 100px 0px 100px;
}
.main .main-text2 {
    color: #cd11a5;
}
.page1 h1{
    color: #000000;
}
.main h6{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0a0093;
    font-size: 26px;
    padding: 8px;
    font-style: italic;
    font-weight: 500;
}
.page1-img img{
    height: 100%;
    width: 100%;
    margin: 50px 0px 0px ;
    object-fit: cover;
    overflow: hidden;
    background-position: center;
}
/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .main h1 {
        font-size: 3.7rem;
        line-height: 55px;
        text-align: left;
    }
    .page1 .main {
        padding: 60px 100px 0px 100px;
    }
    .main h6 {
        font-size: 1.2rem ;
        margin-left: px;
        text-align: left;
    }
    
    .page1-img img {
        height: 100%;
    width: 100%;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
}


/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: #EFFFFD;
    padding: 2rem;
    
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.tagline {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.heading {
    font-size: 4rem;
    line-height: 70px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
}

.subheading {
    font-size: 1 rem;
    color: #666;
    margin-bottom: 2rem;
    opacity: 0;
    font-style: italic;
    animation: fadeUp 1s ease 0.6s forwards;
}

.hero .main2 {
    

    object-fit: cover;
    overflow: hidden;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero .main2 img {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Button Styles */
.cta-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(190, 0, 151, 0.2);
}

/* Section Styles */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #f6e9fc;
}

.section-title {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    padding: 40px;
}

.agenda{
    display: flex;
}
.timeline.img1{
    top: 0;
}
.img1 img {
    height: auto;
    width: 900px;
    border-radius: 15px;
    padding: 40px;
    margin-left: 15px;
    padding-bottom: -50%;
}
/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.grid-item {
    background: var(--white);
    height: 300px;
    width: 300px ;
    padding: 2.5rem;
    margin: rem;
    gap: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    
}

.grid-item i {
    color: #be0097;
    font-size: 50px;
}
.grid-item:hover {
    transform: translateY(-5px);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    padding: 2rem;
    margin: 2rem 0;
    border-left: 3px solid var(--primary-color);
    position: relative;
}

/* Location Cards */
.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.location-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Pricing Box */
.pricing-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

/* FAQ Accordion */
.faq-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background: var(--gray);
    padding: 1rem;
    cursor: pointer;
    position: relative;
}

.faq-answer {
    padding: 1rem;
    display: none;
}
.text-center p {
   padding: 2rem;
}
/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .heading {
        font-size: 2rem;
        line-height: 45px;
    }
    
    .subheading {
        font-size: 1 rem;
        padding: 0 px 20px;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    .grid-item {
        height: auto;
        width: 27rem;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }
    .img1 img {
    height: auto;
    width: 400px;
    border-radius: 15px;
    margin-left: 15px;
}
}

.about-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 50px;
   
}
.about-content p{
    font-size: 38px;
    text-align: left;
    padding: 40px;
}
.main3 img{
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 15px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero .main2 img {
        height: 100%;
    width: 100%;
    border-radius: 15px;
    }
    .about-content p{
    font-size: 11px ;
    text-align: left;
    padding: 10px;
    font-weight: 500;
}
    .main3 img {
     height: 100%;
    width: 100%;
    border-radius: 25px;
    }
    .section-title{
        line-height: 50px;
    }
}


/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

span {
    color: #be0097;
}

.ticker-container {
    height: auto;
      width: 100%;
      overflow: hidden;
      background-color: #f8f8f8;

    }

    .ticker-track {
      display: flex;
      animation: scroll 25s linear infinite;
      width: max-content;
      gap: 30px;
    }

    .ticker-logo {
      flex: 0 0 auto;
      width: 100px;
      height: 200px;
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ticker-logo img {
      max-width: 100px;
      max-height: 300px;
      object-fit: contain;
      transition: filter 0.3s;
    }

.spon {
    text-align: center;
    display: flex;
    justify-content: center;
}
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .ticker-logo {
        width: 90px;
        height: 150px;
        margin: 0 8px;
      }
    }

    @media (max-width: 480px) {
      .ticker-logo {
        height: 100px;
        margin: 0 6px;
      }
    }

    .event-details p{
        font-weight: 800;
    }
    @media (max-width: 480px) {
       .event-details p {

        font-size: 20px;
        font-weight: 800;
    } 
    }
