/* ----- CSS Variables & Settings ----- */
:root {
    --primary: #F57C00;
    --primary-light: #FF9800;
    --primary-dark: #E65100;
    --secondary: #FFFFFF;
    --accent: #1A1A1A;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #F7F7F7;
    --bg-white: #FFFFFF;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px rgba(245, 124, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: vartext-main;
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography (Hindi & English Support) */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 2rem;
}

.center-line {
    margin: 0 auto 2rem auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

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

.center {
    text-align: center;
}

/* ----- Reusable Components ----- */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 124, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

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

.btn-primary.large, .btn-secondary.large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
}

/* ----- Navbar ----- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

#navbar.solid {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.nav-title {
    display: flex;
    flex-direction: column;
}

.nav-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.nav-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

#navbar.solid .nav-name { color: var(--accent); }
#navbar.solid .nav-subtitle { color: var(--text-muted); }
#navbar.solid .nav-links a { color: var(--accent); }
#navbar.solid .nav-links a:hover { color: var(--primary); }

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Toggle Switch */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}
#navbar.solid .lang-toggle {
    background: var(--bg-light);
}

.lang-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    transition: var(--transition);
}
#navbar.solid .lang-label { color: var(--text-muted); }

.lang-label.active {
    color: var(--primary) !important;
}

.toggle-track {
    width: 36px;
    height: 20px;
    background: var(--primary);
    border-radius: 10px;
    position: relative;
}

.toggle-knob {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.lang-toggle.en-active .toggle-knob {
    transform: translateX(16px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
#navbar.solid .mobile-menu-btn { color: var(--accent); }

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: var(--shadow-medium);
    transform: translateY(-150%);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px;
    border-radius: var(--radius-sm);
}

.mobile-menu a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

/* ----- Hero Section ----- */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 24px 60px 24px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(245,124,0,0.5) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
    z-index: 1;
}

.hero-text {
    flex: 1;
    color: white;
}

.hero-text h1 {
       padding-top: 40px;
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-text .subtitle {
    font-size: 1.5rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-text .statement {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-text .description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.highlight-quote {
    background: rgba(255,255,255,0.1);
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    font-size: 1.2rem;
    font-style: italic;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 0.8;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
    border: 8px solid rgba(255,255,255,0.1);
}

.image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.3;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
    opacity: 0.8;
    transition: var(--transition);
}

.scroll-indicator:hover { opacity: 1; color: var(--primary); }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* ----- About Section ----- */
.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image-container {
    flex: 1;
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.quote-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    padding: 24px;
    max-width: 250px;
    background: white;
    border-left: 4px solid var(--primary);
}

.quote-card p {
    font-weight: 600;
    color: var(--accent);
    font-size: 1.1rem;
    line-height: 1.4;
}

.about-text-container {
    flex: 1.2;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-weight: 500;
}

.premium-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.list-item:hover {
    background: white;
    box-shadow: var(--shadow-soft);
    transform: translateX(10px);
}

.icon-accent {
    color: var(--primary);
    width: 24px;
    height: 24px;
}

/* ----- Vision Section ----- */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vision-card {
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.vision-card:hover::before { transform: scaleX(1); }

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

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px auto;
    background: rgba(245, 124, 0, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.vision-card:hover .icon-box {
    background: var(--primary);
    color: white;
}

.vision-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.vision-card p {
    color: var(--text-muted);
}

/* ----- Achievements Timeline ----- */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 60px auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--primary-light);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item:nth-child(odd) { left: 0; }
.timeline-item:nth-child(even) { left: 50%; }

.timeline-dot {
    width: 20px;
    height: 20px;
    position: absolute;
    background-color: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    top: 24px;
    right: -10px;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot { left: -10px; }

.timeline-content {
    padding: 20px;
    border-left: 4px solid var(--primary);
}
.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--primary);
}

.timeline-content h4 {
    margin: 0;
    color: var(--text-main);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    padding: 30px;
    text-align: center;
    border-bottom: 4px solid var(--primary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Yatra One', cursive;
}

.stat-label {
    font-weight: 600;
    color: var(--accent);
}

.quote-banner {
    margin-top: 60px;
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--accent), #333);
    color: white;
}
.quote-banner p {
    font-size: 1.5rem;
    font-style: italic;
    margin: 0;
}

/* ----- Contact Section ----- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-wrapper {
    padding: 40px;
}

.contact-form-wrapper h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--accent);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255,255,255,0.9);
}

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

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    padding: 40px;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.contact-details {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(245, 124, 0, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.contact-item p {
    font-weight: 500;
    color: var(--accent);
    margin: 0;
}

.map-container {
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 10px;
}

.map-container iframe {
    border-radius: var(--radius-md);
}

/* ----- Footer ----- */
.footer {
    background-color: var(--accent);
    color: white;
    padding: 80px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.footer-left h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer-left p {
    color: rgba(255,255,255,0.7);
}

.footer-center {
    display: flex;
    justify-content: center;
}

.party-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.footer-right {
    text-align: right;
}

.footer-right .motto {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

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

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

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

/* ----- Scroll To Top ----- */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-medium);
}

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

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ----- Animations & Scroll Reveals ----- */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}
.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ----- Responsive Design ----- */
@media (max-width: 992px) {
    .split-layout {
        flex-direction: column;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-text h1 { font-size: 3rem; }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn-primary {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item:nth-child(even) { left: 0%; }
    .timeline-item:nth-child(even) .timeline-content {
        border-left: 4px solid var(--primary);
        border-right: none;
    }
    .timeline-dot { left: 22px !important; right: auto; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 2.2rem; }
    .hero-text .statement { font-size: 1.5rem; }
    .hero-buttons { flex-direction: column; }
    .section { padding: 60px 0; }
    .quote-card { position: relative; bottom: 0; right: 0; margin-top: -30px; max-width: 100%; }
}


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

.social-links a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#333;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.social-links a:hover{
    background:#f57c00;
    transform:translateY(-4px);
}

.social-links a{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#333;
    border-radius:50%;
    color:#fff;
}

.social-links svg{
    width:22px;
    height:22px;
    stroke:#fff;
    stroke-width:2;
}