/* Custom CSS Variables */
:root {
    --primary-pink: #E91E63;
    --primary-teal: #008080;
    --accent-lavender: #E6E6FA;
    --text-dark: #000000;
    --text-light: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--primary-pink), var(--primary-teal));
    --gradient-secondary: linear-gradient(135deg, var(--accent-lavender), #f8f9fa);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-pink);
}

/* Navigation Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
    padding: 0.5rem 0;
}

.brand-container {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-ferty9 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-pink);
}

.brand-presents {
    font-size: 0.7rem;
    color: var(--text-dark);
    font-weight: 400;
    margin: -2px 0;
}

.brand-fertygyaan {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-teal);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 10px;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-pink) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 65px;
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
}

.fertygyaan-title {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.4;
}

.event-details {
    margin: 2rem 0;
}

.event-date,
.event-location {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
}

.event-date i,
.event-location i {
    margin-right: 10px;
    color: var(--primary-pink);
    font-size: 1.3rem;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-light {
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-pink);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Section Styles */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* About Section */
.about-content h3 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}
.about-content li{
   color: #555; 
    line-height: 1.7;
}
/* Stats Container */
.stats-container {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.counter {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-item p {
    color: #666;
    font-weight: 500;
    margin: 0;
    font-size: 1rem;
}

/* Speaker Cards */
.speaker-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.speaker-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.speaker-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.speaker-card:hover .speaker-image img {
    transform: scale(1.1);
}

.speaker-info {
    padding: 1.5rem;
}

.speaker-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.speaker-title {
    color: var(--primary-pink);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.speaker-institution {
    color: var(--primary-teal);
    font-weight: 500;
    margin-bottom: 1rem;
}

.speaker-bio p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Schedule Section */
.schedule-day {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    height: 100%;
}

.day-title {
    color: var(--primary-teal);
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-lavender);
}

.schedule-timeline {
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--primary-pink);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-pink);
}

.timeline-time {
    font-weight: 600;
    color: var(--primary-teal);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-content h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Venue Section */
.venue-info h3 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-weight: 600;
}

.venue-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.venue-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
}

.feature-item i {
    color: var(--primary-pink);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.venue-address h4 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
    font-weight: 600;
}

.venue-address p {
    color: #555;
    margin: 0;
}

/* Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 200px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(233, 30, 99, 0.9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h5 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--primary-pink);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -31px;
    left: 87px;
    background: var(--primary-pink);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #666;
    font-size: 0.9rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--primary-pink);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.contact-info {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-info i {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
    display: block;
}

.contact-info h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info p {
    color: #666;
    margin: 0;
}

/* Footer */
footer {
    background: var(--text-dark) !important;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-medium);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fertygyaan-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .brand-ferty9 {
        font-size: 1.3rem;
    }
    
    .brand-fertygyaan {
        font-size: 1.1rem;
    }
    
    .event-date,
    .event-location {
        font-size: 1rem;
    }
    
    .venue-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .fertygyaan-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .event-date,
    .event-location {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date i,
    .event-location i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse Animation for Stats */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.counter {
    animation: pulse 2s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.speaker-card:nth-child(odd) {
    animation: float 4s ease-in-out infinite;
}

.speaker-card:nth-child(even) {
    animation: float 4s ease-in-out infinite reverse;
}

/* Gradient Text Animation */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.fertygyaan-title {
    background: linear-gradient(-45deg, var(--primary-pink), var(--primary-teal), var(--primary-pink), var(--primary-teal));
    background-size: 400% 400%;
    animation: gradient 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Timeline Animation */
.timeline-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.4s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pricing Card Hover Effects */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

/* Button Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    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:active::before {
    width: 300px;
    height: 300px;
}
/* Section Title Styling */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Organizing Team Section */
.team-member-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    cursor: pointer;
}

.team-member-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--primary-pink);
    border-radius: 50%; /* Ensure circular images */
    margin-bottom: 1rem;
}

.team-member-card h5 {
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.team-member-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .team-member-card img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .team-member-card {
        padding: 1rem;
    }
}