/* Global Styles */
:root {
    --primary-color: #2e7d32;
    --primary-light: #60ad5e;
    --primary-dark: #005005;
    --secondary-color: #ff8f00;
    --secondary-light: #ffc046;
    --secondary-dark: #c56000;
    --accent-color: #aeea00;
    --accent-light: #e4ff54;
    --accent-dark: #79b700;
    --dark-color: #1a1a2e;
    --light-color: #ffffff;
    --gray-color: #f8f9fa;
    --gray-dark: #e9ecef;
    --text-color: #333333;
    --text-light: #6c757d;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    --gradient-dark: linear-gradient(135deg, var(--dark-color), #2d3748);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: var(--transition);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.loader svg {
    width: 100%;
    height: 100%;
}

.loader svg circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes dash {
    0% {
        stroke-dashoffset: 200;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -200;
    }
}

.loader-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

/* Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 1001;
}

.progress-bar {
    height: 4px;
    background: var(--primary-color);
    width: 0%;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

section:nth-child(even) {
    background-color: var(--gray-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.underline {
    height: 4px;
    width: 70px;
    background: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

.underline::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    width: 15px;
    height: 4px;
    background: var(--secondary-color);
    animation: slide 2s infinite;
}

@keyframes slide {
    0% {
        left: -15px;
    }
    50% {
        left: 70px;
    }
    100% {
        left: -15px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-color);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.5);
    transform: translateY(-2px);
    color: var(--light-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

header.sticky {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--dark-color);
    font-weight: 700;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-btn {
    background: var(--gradient-primary);
    color: var(--light-color) !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.nav-btn:hover {
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.5);
    transform: translateY(-2px);
}

.nav-btn::after {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1913&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--light-color);
    padding-top: 80px;
    position: relative;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

/* Glitch effect */
.glitch {
    position: relative;
    color: white;
    font-weight: 700;
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
    }
    4.16666667% {
        clip: rect(91px, 9999px, 100px, 0);
    }
    8.33333333% {
        clip: rect(74px, 9999px, 30px, 0);
    }
    12.5% {
        clip: rect(23px, 9999px, 23px, 0);
    }
    16.66666667% {
        clip: rect(68px, 9999px, 54px, 0);
    }
    20.83333333% {
        clip: rect(26px, 9999px, 93px, 0);
    }
    25% {
        clip: rect(33px, 9999px, 40px, 0);
    }
    29.16666667% {
        clip: rect(10px, 9999px, 86px, 0);
    }
    33.33333333% {
        clip: rect(82px, 9999px, 73px, 0);
    }
    37.5% {
        clip: rect(3px, 9999px, 27px, 0);
    }
    41.66666667% {
        clip: rect(93px, 9999px, 61px, 0);
    }
    45.83333333% {
        clip: rect(92px, 9999px, 81px, 0);
    }
    50% {
        clip: rect(13px, 9999px, 56px, 0);
    }
    54.16666667% {
        clip: rect(2px, 9999px, 23px, 0);
    }
    58.33333333% {
        clip: rect(89px, 9999px, 11px, 0);
    }
    62.5% {
        clip:  0);
    }
    58.33333333% {
        clip: rect(89px, 9999px, 11px, 0);
    }
    62.5% {
        clip: rect(97px, 9999px, 58px, 0);
    }
    66.66666667% {
        clip: rect(10px, 9999px, 10px, 0);
    }
    70.83333333% {
        clip: rect(31px, 9999px, 37px, 0);
    }
    75% {
        clip: rect(99px, 9999px, 99px, 0);
    }
    79.16666667% {
        clip: rect(2px, 9999px, 35px, 0);
    }
    83.33333333% {
        clip: rect(48px, 9999px, 44px, 0);
    }
    87.5% {
        clip: rect(31px, 9999px, 88px, 0);
    }
    91.66666667% {
        clip: rect(54px, 9999px, 62px, 0);
    }
    95.83333333% {
        clip: rect(22px, 9999px, 35px, 0);
    }
    100% {
        clip: rect(91px, 9999px, 5px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 65px, 0);
    }
    25% {
        clip: rect(37px, 9999px, 79px, 0);
    }
    50% {
        clip: rect(12px, 9999px, 26px, 0);
    }
    75% {
        clip: rect(63px, 9999px, 24px, 0);
    }
    100% {
        clip: rect(34px, 9999px, 86px, 0);
    }
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.tagline {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tagline span {
    margin: 0 5px;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    padding: 0 10px;
}

.tagline span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}

.tagline span:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.event-details {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.event-details i {
    margin-right: 5px;
    color: var(--accent-color);
}

.countdown {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.countdown div {
    margin: 0 15px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.countdown div:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.countdown span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.countdown p {
    margin-bottom: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    margin-top: 30px;
}

.cta-buttons .btn {
    margin: 0 10px;
}

/* Scroll Down Animation */
.scroll-down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-down a {
    display: block;
    width: 30px;
    height: 50px;
    position: relative;
}

.scroll-down span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    animation: scrollDown 2s infinite;
    opacity: 0;
    box-sizing: border-box;
}

.scroll-down span:nth-of-type(1) {
    animation-delay: 0s;
}

.scroll-down span:nth-of-type(2) {
    top: 16px;
    animation-delay: 0.15s;
}

.scroll-down span:nth-of-type(3) {
    top: 32px;
    animation-delay: 0.3s;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.2), rgba(174, 234, 0, 0.2));
    z-index: 1;
}

.image-container img {
    transition: transform 0.5s;
}

.image-container:hover img {
    transform: scale(1.05);
}

.stats-container {
    margin-top: 40px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 500px;
    width: 100%;
    scale: 0.9;
}

.stat-item {
    background-color: var(--light-color);
    padding: 15px 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3px;
    font-weight: 700;
}

/* Institute Section */
.institute {
    position: relative;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') no-repeat center center/cover;
    background-attachment: fixed;
    opacity: 0.05;
}

.institute-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.institute-image {
    flex: 1;
}

.institute-text {
    flex: 1;
}

.text-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 1;
}

.text-card p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.achievement {
    display: flex;
    align-items: center;
    background-color: var(--gray-color);
    padding: 15px;
    border-radius: 10px;
    flex: 1;
    min-width: 200px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.achievement:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.achievement-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.achievement-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.achievement-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Jodhpur Section */
.jodhpur-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.jodhpur-text {
    flex: 1;
}

.jodhpur-gallery {
    flex: 1;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    cursor: pointer;
}

.gallery-item:first-child {
    grid-column: span 2;
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Committee Section */
.key-committee {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.conveners {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.committee-card {
    width: 280px;
    height: 350px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.committee-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.card-front {
    background-color: var(--light-color);
}

.card-back {
    background: var(--gradient-primary);
    color: var(--light-color);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.card-back h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-back .member-role {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.card-back p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    scale: 0.9;
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Committee Tabs */
.committee-tabs {
    margin-top: 50px;
}

.tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    padding: 10px 20px;
    background-color: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    color: var(--text-light);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.tab-pane {
    display: none;
    padding: 30px;
}

.tab-pane.active {
    display: block;
}

.committee-list ul {
    columns: 2;
    column-gap: 40px;
}

.committee-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
    break-inside: avoid;
}

.committee-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Tracks Section */
.tracks-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.track-card {
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    z-index: -1;
}

.track-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.track-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    color: var(--light-color);
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.3);
}

.track-card h3 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding: 0 20px;
}

.track-card ul {
    padding: 0 30px 30px;
}

.track-card li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.track-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Dates Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 30px;
    left: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -6px;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.2);
}

.timeline-item:nth-child(even)::before {
    right: auto;
    left: -6px;
}

.timeline-date {
    position: absolute;
    top: 0;
    right: -150px;
    width: 120px;
    padding: 20px;
    background: var(--gradient-primary);
    color: var(--light-color);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.timeline-item:nth-child(even) .timeline-date {
    right: auto;
    left: -150px;
}

.timeline-date span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}

.timeline-date p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.timeline-content {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    position: relative;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    margin-bottom: 0;
}

/* Call for Papers Section */
.call-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}
.presentation-container {
    display: flex;
    justify-content: space-around; /* Ensures even spacing */
    align-items: flex-start;
    flex-wrap: wrap; /* Makes it responsive */
    gap: 40px; /* Adds space between sections */
}

.presentation-modes,
.award-categories {
    margin-bottom: 50px;
}

.presentation-modes h3,
.award-categories h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.modes,
.awards {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.mode,
.award {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--card-shadow);
    width: 200px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mode:hover,
.award:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mode-icon,
.award-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--light-color);
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.3);
}

.mode p,
.award h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.award p {
    color: var(--text-light);
}

.submission-cta {
    text-align: center;
}

/* Registration Section */
.registration-fees {
    max-width: 600px;
    margin: 0 auto 50px;
}

.registration-fees h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.fees-table {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.fee-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.fee-row:last-child {
    border-bottom: none;
}

.fee-category,
.fee-amount {
    padding: 20px;
    flex: 1;
}

.fee-category {
    background-color: var(--gray-color);
    font-weight: 600;
}

.fee-amount {
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
}

.registration-form {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    margin-bottom: 50px;
}

.registration-form h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.payment-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--card-shadow);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--light-color);
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.3);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--light-color);
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.3);
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-item p {
    margin-bottom: 5px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

/* Footer */
footer {
    background: var(--gradient-dark);
    color: var(--light-color);
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 300px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-logo p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.5);
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .timeline-date {
        right: -120px;
    }
    
    .timeline-item:nth-child(even) .timeline-date {
        left: -120px;
    }
}

@media (max-width: 992px) {
    .about-content,
    .institute-content,
    .jodhpur-content {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .countdown div {
        min-width: 60px;
        margin: 0 10px;
    }
    
    .countdown span {
        font-size: 1.5rem;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
        padding-left: 80px;
    }
    
    .timeline-item::before {
        left: 34px;
        right: auto;
    }
    
    .timeline-item:nth-child(even)::before {
        left: 34px;
    }
    
    .timeline-date {
        position: relative;
        width: auto;
        left: 0 !important;
        right: 0 !important;
        top: -20px;
        margin-bottom: 15px;
        display: inline-block;
    }
    
    .committee-list ul {
        columns: 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--light-color);
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown div {
        margin: 5px;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }
    .hero-content{
        scale: 0.75;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .registration-form {
        padding: 20px;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:first-child {
        grid-column: span 1;
    }
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    flex: 0 0 300px;
    height: 500px;
    margin: 0 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.carousel-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.carousel-content {
    padding: 20px;
    background-color: white;
}

.carousel-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.carousel-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* For smaller screens */
@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 250px;
        height: 350px;
        margin: 0 10px;
    }
    .carousel-description{
        display: hidden;
    }

}

.bank-details table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }
  
.bank-details table td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
  }
  
.bank-details table tr:nth-child(even) {
    background-color: #dddddd;
  }
.bank-details table tr td:nth-child(odd){
    font-weight: bolder;    
}