/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #004e89;
    --accent-color: #f7931e;
    --success-color: #4caf50;
    --danger-color: #f44336;
    --dark-color: #1a1a2e;
    --light-color: #f5f5f5;
    --white-color: #ffffff;
    --text-color: #333333;
    --border-color: #e0e0e0;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ==================== LAUNCH SCREEN STYLES ==================== */

.launch-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.launch-screen.launching {
    animation: launchOut 1.5s ease-in-out forwards;
}

@keyframes launchOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.launch-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0f00 0%, #2d1810 50%, #1a0f00 100%);
    overflow: hidden;
}

.launch-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 153, 51, 0.05) 49%, rgba(255, 153, 51, 0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 153, 51, 0.05) 49%, rgba(255, 153, 51, 0.05) 51%, transparent 52%);
    background-size: 40px 40px;
}

.launch-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 153, 51, 0.15) 0%, transparent 70%);
    animation: pulseGradient 4s ease-in-out infinite;
}

@keyframes pulseGradient {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

.launch-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 153, 51, 0.4) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 215, 0, 0.3) 1px, transparent 1px);
    background-size: 60px 60px, 90px 90px;
    background-position: 0 0, 45px 45px;
    animation: particleFloat 25s linear infinite;
}

@keyframes particleFloat {
    0% {
        background-position: 0 0, 45px 45px;
    }
    100% {
        background-position: 60px 60px, 105px 105px;
    }
}

/* Lotus Pattern Background */
.launch-lotus-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path d="M100 50 Q120 70, 100 90 Q80 70, 100 50 M100 110 Q120 130, 100 150 Q80 130, 100 110 M50 100 Q70 120, 90 100 Q70 80, 50 100 M110 100 Q130 120, 150 100 Q130 80, 110 100" fill="%23FF9933" opacity="0.3"/></svg>');
    background-size: 150px 150px;
    animation: lotusRotate 40s linear infinite;
}

@keyframes lotusRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.launch-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: 50px 40px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 235, 0.95) 100%),
        repeating-linear-gradient(
            45deg,
            rgba(255, 153, 51, 0.03) 0px,
            rgba(255, 153, 51, 0.03) 10px,
            transparent 10px,
            transparent 20px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 215, 0, 0.03) 0px,
            rgba(255, 215, 0, 0.03) 10px,
            transparent 10px,
            transparent 20px
        );
    border-radius: 30px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5), 
        0 0 100px rgba(255, 153, 51, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 3px solid rgba(255, 153, 51, 0.4);
    animation: slideUp 1s ease-out;
    overflow: hidden;
}

.launch-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 153, 51, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.12) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

.launch-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: 
        radial-gradient(circle at 30% 80%, rgba(19, 136, 8, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 90%, rgba(255, 153, 51, 0.12) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BJP Logo in Launch Screen */
.launch-logo-container {
    margin-bottom: 25px;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.launch-bjp-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(255, 153, 51, 0.4));
}

/* Inauguration Header */
.inauguration-header {
    margin-bottom: 20px;
}

.inauguration-title {
    font-size: 22px;
    font-weight: 700;
    color: #FF9933;
    font-family: 'Martel', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Minister Info */
.minister-info {
    margin-bottom: 25px;
}

.minister-title {
    font-size: 16px;
    color: #666;
    font-family: 'Martel', serif;
    margin-bottom: 8px;
    letter-spacing: 2px;
    font-weight: 600;
}

.minister-name {
    font-size: 34px;
    font-weight: 700;
    background: linear-gradient(135deg, #FF9933, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Martel', serif;
    margin-bottom: 12px;
    line-height: 1.4;
    padding: 3px 0;
}

.minister-designation {
    font-size: 19px;
    color: #138808;
    font-weight: 600;
    font-family: 'Martel', serif;
    margin-bottom: 5px;
}

.minister-designation-sub {
    font-size: 16px;
    color: #666;
    font-family: 'Martel', serif;
    margin-bottom: 12px;
}

.inauguration-text {
    font-size: 18px;
    color: #FF6B35;
    font-weight: 700;
    font-family: 'Martel', serif;
    margin-top: 12px;
    letter-spacing: 1px;
}

/* Divider */
.launch-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 35px 0;
}

.divider-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FF9933, transparent);
}

.divider-icon {
    color: #FFD700;
    font-size: 24px;
    animation: starSpin 4s linear infinite;
}

@keyframes starSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Candidate Info */
.candidate-info {
    margin-bottom: 35px;
}

.candidate-name {
    font-size: 28px;
    font-weight: 700;
    color: #004e89;
    font-family: 'Martel', serif;
    margin-bottom: 8px;
    line-height: 1.3;
}

.candidate-designation {
    font-size: 16px;
    color: #FF6B35;
    font-weight: 600;
    font-family: 'Martel', serif;
    margin-bottom: 5px;
}

.candidate-ward {
    font-size: 14px;
    color: #666;
    font-family: 'Martel', serif;
    margin-bottom: 10px;
}

.website-inauguration {
    font-size: 17px;
    color: #138808;
    font-weight: 700;
    font-family: 'Martel', serif;
    margin-top: 12px;
    letter-spacing: 0.5px;
}

/* Launch Button */
.launch-button {
    position: relative;
    background: linear-gradient(135deg, #FF9933, #FF6B35);
    color: white;
    border: none;
    padding: 16px 45px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Martel', serif;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(255, 153, 51, 0.4);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.launch-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.launch-button:hover::before {
    left: 100%;
}

.launch-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 153, 51, 0.6);
}

.launch-button:active {
    transform: translateY(-2px) scale(1.02);
}

.launch-button-icon {
    font-size: 22px;
    animation: rocketBounce 1s ease-in-out infinite;
}

@keyframes rocketBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Launch Footer */
.launch-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.launch-blessing {
    font-size: 14px;
    color: #138808;
    font-family: 'Martel', serif;
    font-weight: 600;
    margin-bottom: 6px;
}

.launch-date {
    font-size: 16px;
    color: #FF9933;
    font-weight: 700;
    font-family: 'Martel', serif;
}

/* Celebration Confetti */
.celebration-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100000;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -10px;
    animation: confettiFall 3s linear forwards;
}

@keyframes confettiFall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Launch Screen */
@media (max-width: 768px) {
    .launch-content {
        padding: 35px 25px;
        margin: 20px;
        max-width: 90%;
    }

    .launch-bjp-logo {
        width: 80px;
        height: 80px;
    }

    .inauguration-title {
        font-size: 18px;
    }

    .minister-title {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .minister-name {
        font-size: 26px;
        line-height: 1.4;
        padding: 3px 0;
    }

    .minister-designation {
        font-size: 16px;
    }

    .minister-designation-sub {
        font-size: 14px;
    }

    .inauguration-text {
        font-size: 15px;
    }

    .launch-divider {
        margin: 25px 0;
    }

    .divider-line {
        width: 80px;
        height: 2px;
    }

    .divider-icon {
        font-size: 18px;
    }

    .candidate-name {
        font-size: 22px;
    }

    .candidate-designation {
        font-size: 14px;
    }

    .candidate-ward {
        font-size: 13px;
    }

    .website-inauguration {
        font-size: 15px;
    }

    .launch-button {
        padding: 15px 35px;
        font-size: 18px;
        gap: 10px;
    }

    .launch-button-icon {
        font-size: 20px;
    }

    .launch-footer {
        margin-top: 20px;
        padding-top: 18px;
    }

    .launch-blessing {
        font-size: 13px;
    }

    .launch-date {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .launch-content {
        padding: 25px 18px;
        margin: 15px;
        border-radius: 20px;
        max-width: 95%;
    }

    .launch-bjp-logo {
        width: 65px;
        height: 65px;
    }

    .launch-logo-container {
        margin-bottom: 20px;
    }

    .inauguration-header {
        margin-bottom: 15px;
    }

    .inauguration-title {
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    .minister-title {
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }

    .minister-name {
        font-size: 22px;
        line-height: 1.5;
        padding: 3px 0;
        margin-bottom: 10px;
    }

    .minister-designation {
        font-size: 14px;
    }

    .minister-designation-sub {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .inauguration-text {
        font-size: 14px;
        margin-top: 10px;
    }

    .minister-info {
        margin-bottom: 20px;
    }

    .launch-divider {
        margin: 20px 0;
        gap: 10px;
    }

    .divider-line {
        width: 50px;
        height: 2px;
    }

    .divider-icon {
        font-size: 16px;
    }

    .candidate-info {
        margin-bottom: 25px;
    }

    .candidate-name {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 6px;
    }

    .candidate-designation {
        font-size: 13px;
    }

    .candidate-ward {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .website-inauguration {
        font-size: 14px;
        margin-top: 10px;
    }

    .launch-button {
        padding: 13px 28px;
        font-size: 16px;
        gap: 8px;
    }

    .launch-button-icon {
        font-size: 18px;
    }

    .launch-footer {
        margin-top: 18px;
        padding-top: 15px;
    }

    .launch-blessing {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .launch-date {
        font-size: 14px;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white-color);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.bjp-logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-left: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.bjp-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.nav-text {
    flex: 1;
}

.nav-text h3 {
    font-size: 18px;
    color: var(--secondary-color);
    font-family: 'Martel', serif;
    margin: 0;
    line-height: 1.3;
}

.nav-text p {
    font-size: 12px;
    color: var(--text-color);
    margin: 0;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

.nav-cta {
    display: flex;
    gap: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white-color);
}

.btn-secondary:hover {
    background: #003d6b;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 16px;
}

/* Hero Section - Professional UI/UX Design */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FF9933 0%, #138808 50%, #000080 100%);
    margin-top: 90px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 153, 51, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(19, 136, 8, 0.2) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.3)"/></svg>') repeat;
    animation: float 20s linear infinite;
    opacity: 0.4;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    color: var(--white-color);
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    margin-bottom: 25px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
}

.badge-icon {
    font-size: 20px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #FFD700;
}

/* Hero Name Section */
.hero-name {
    margin: 0 0 40px 0;
    text-align: left;
    padding: 5px 0;
}

.hero-name h2 {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Martel', serif;
    background: linear-gradient(135deg, #FF9933, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 12px 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
    padding: 2px 0;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    font-family: 'Martel', serif;
    margin: 0 0 5px 0;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Highlights */
.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    padding: 10px 0;
}

.highlight-item i {
    color: #FFD700;
    font-size: 18px;
    width: 25px;
}

/* Hero Description */
.hero-description {
    font-size: 17px;
    line-height: 1.8;
    margin: 25px 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Martel', serif;
}

.btn-primary {
    background: linear-gradient(135deg, #FF9933, #FF6B35);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 153, 51, 0.6);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #FFD700;
    font-family: 'Martel', serif;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Image Section */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(60px);
}

.image-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.decoration-1 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

.decoration-2 {
    width: 320px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 15s linear infinite reverse;
}

.decoration-3 {
    width: 480px;
    height: 480px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 25s linear infinite;
    opacity: 0.5;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.image-frame {
    position: relative;
    width: 400px;
    height: 400px;
    z-index: 5;
}

.frame-border {
    position: absolute;
    inset: -15px;
    background: linear-gradient(135deg, #FF9933, #FFD700, #138808);
    border-radius: 50%;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* BJP Logo Overlay at Bottom */
.bjp-logo-overlay {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #FF9933;
    z-index: 10;
}

.bjp-logo-overlay img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border: none;
    border-radius: 0;
    box-shadow: none;
    animation: none !important;
    transition: none !important;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 12px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    font-size: 14px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatUpDown 3s ease-in-out infinite;
    z-index: 10;
}

.floating-card i {
    font-size: 20px;
    color: #FF9933;
}

/* Evenly distributed around circle - Perfect 360° spacing (36° between each) */
.card-1 {
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.card-2 {
    top: 0%;
    right: 20%;
    animation-delay: 0.3s;
}

.card-3 {
    top: 15%;
    right: -8%;
    animation-delay: 0.6s;
}

.card-4 {
    top: 42%;
    right: -12%;
    animation-delay: 0.9s;
}

.card-5 {
    bottom: 15%;
    right: -8%;
    animation-delay: 1.2s;
}

.card-6 {
    bottom: 0%;
    right: 20%;
    animation-delay: 1.5s;
}

.card-7 {
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.8s;
}

.card-8 {
    bottom: 0%;
    left: 20%;
    animation-delay: 2.1s;
}

.card-9 {
    bottom: 15%;
    left: -8%;
    animation-delay: 2.4s;
}

.card-10 {
    top: 42%;
    left: -12%;
    animation-delay: 2.7s;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.image-frame {
    position: relative;
    width: 400px;
    height: 400px;
    background: var(--white-color);
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 50%;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white-color);
    font-size: 30px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-right {
    animation: slideRight 1s ease-out;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: center;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto 20px;
    border-radius: 2px;
    display: block;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Vision & Mission */
.vision-mission {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.vm-card {
    background: var(--white-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
    color: var(--white-color);
}

.vm-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.vm-card p {
    line-height: 1.8;
    color: var(--text-color);
}

/* Focus Areas */
.focus-areas {
    background: var(--white-color);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.focus-card {
    background: var(--light-color);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.focus-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    background: var(--white-color);
    box-shadow: var(--shadow);
}

.focus-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #003d6b);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--white-color);
    transition: var(--transition);
}

.focus-card:hover .focus-icon {
    transform: scale(1.1) rotate(5deg);
}

.focus-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.focus-card p {
    font-size: 14px;
    color: var(--text-color);
}

/* About Section */
.about-section {
    background: var(--light-color);
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 50px;
}

.about-image {
    position: sticky;
    top: 100px;
}

.about-img-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.4);
    font-weight: 600;
    font-size: 14px;
}

.about-badge i {
    font-size: 18px;
}

.about-text {
    padding: 0;
}

.about-text .section-title {
    text-align: left;
}

.about-text .title-underline {
    margin: 0 0 20px 0;
}

.about-text h3 {
    font-size: 32px;
    color: var(--secondary-color);
    margin: 20px 0;
    font-family: 'Martel', serif;
}

.about-intro {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 30px;
    font-style: italic;
}

.about-party-affiliation {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.15), rgba(255, 255, 255, 0.95), rgba(19, 136, 8, 0.15));
    padding: 18px 22px;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.3);
    border: 2px solid rgba(255, 153, 51, 0.3);
    position: relative;
    overflow: hidden;
}

.about-party-affiliation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #FF9933, #FFFFFF, #138808);
}

.party-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    padding: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.party-info {
    flex: 1;
}

.party-info p {
    margin: 0;
    font-size: 18px;
    color: #000;
    font-weight: 700;
    font-family: 'Martel', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.leadership-positions {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.08), rgba(19, 136, 8, 0.08));
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 5px solid #FF9933;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
}

.leadership-positions::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FF9933, transparent);
}

.leadership-positions h4 {
    margin-top: 0 !important;
}

.position-list {
    list-style: none;
    margin: 15px 0;
}

.position-list li {
    padding: 15px 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-color);
    font-family: 'Martel', serif;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.position-list li:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.position-list li i {
    color: #FF9933;
    font-size: 22px;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.about-details {
    margin-top: 20px;
}

.about-details h4 {
    font-size: 22px;
    color: var(--secondary-color);
    margin: 30px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Martel', serif;
    font-weight: 700;
}

.about-details h4 i {
    color: var(--primary-color);
    font-size: 24px;
}

.about-details p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: justify;
}

.achievement-list {
    list-style: none;
    margin: 15px 0;
}

.achievement-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    line-height: 1.6;
}

.achievement-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

/* Projects Section */
.projects-section {
    background: var(--white-color);
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--border-color);
    background: var(--white-color);
    color: var(--text-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    background-color: #f5f5f5;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white-color);
}

.project-badge.ongoing {
    background: var(--accent-color);
}

.project-badge.completed {
    background: var(--success-color);
}

.project-badge.event {
    background: var(--secondary-color);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.project-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-content p {
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
}

.project-progress {
    margin-top: 15px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 50px;
    transition: width 1s ease;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 600;
}

.project-meta i {
    color: var(--success-color);
}

/* Ward Section */
.ward-section {
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
}

.ward-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.ward-info-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.ward-info-card h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 15px;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: var(--secondary-color);
    min-width: 150px;
}

.ward-facilities h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.facility-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.facility-item {
    background: var(--white-color);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.facility-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.facility-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 22px;
    flex-shrink: 0;
}

.facility-info h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.facility-info p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.facility-contact {
    font-weight: 600;
    color: var(--primary-color);
}

.map-container {
    background: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.map-container h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-placeholder iframe {
    border-radius: 10px;
    width: 100%;
}

.map-note {
    margin-top: 15px;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Contact Section */
.contact-section {
    background: var(--white-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: linear-gradient(135deg, var(--secondary-color), #003d6b);
    color: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-card p {
    line-height: 1.8;
}

.contact-card a {
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--accent-color);
}

.contact-form-wrapper {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
}

.contact-form-wrapper h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

/* Forms */
.contact-form,
.complaint-form,
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--white-color);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #999;
    transition: var(--transition);
    pointer-events: none;
    background: var(--white-color);
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 12px;
    color: var(--primary-color);
}

.file-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--secondary-color);
    color: var(--white-color);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.file-label:hover {
    background: #003d6b;
}

.form-group input[type="file"] {
    display: none;
}

/* Complaint Section */
.complaint-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.complaint-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Get Involved Section */
.involve-section {
    background: var(--light-color);
}

.involve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.involve-card {
    background: var(--white-color);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.involve-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.involve-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    color: var(--white-color);
}

.involve-card h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.involve-card p {
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-color);
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--secondary-color), #003d6b);
    color: var(--white-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-card i {
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-col a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 5px 0;
    opacity: 0.8;
}

.footer-bottom i {
    color: var(--danger-color);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    overflow: auto;
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white-color);
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideRight 0.3s;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--danger-color);
}

.modal-content h2 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

/* Ward/Prabhag Section */
.ward-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}

.ward-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.ward-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: fadeInLeft 1s ease-out;
}

.ward-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.ward-image:hover img {
    transform: scale(1.05);
}

.ward-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #FF9933, #FF6B35);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.4);
}

.ward-badge i {
    font-size: 20px;
}

.ward-text h3 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: 'Martel', serif;
}

.ward-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.ward-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ward-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.ward-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.ward-feature i {
    font-size: 32px;
    color: #FF9933;
    min-width: 40px;
}

.ward-feature h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-family: 'Martel', serif;
}

.ward-feature p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Family Support Section */
.family-support-section {
    padding: 80px 0;
    background: white;
}

.family-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.family-text h3 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: 'Martel', serif;
}

.family-role {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1), rgba(255, 107, 53, 0.1));
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 2px solid #FF9933;
}

.family-role i {
    color: #FFD700;
    font-size: 18px;
}

.family-role span {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    font-family: 'Martel', serif;
}

.family-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.family-description strong {
    color: var(--secondary-color);
    font-family: 'Martel', serif;
}

.family-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.family-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border-left: 4px solid #FF9933;
}

.family-highlight i {
    font-size: 28px;
    color: #FF9933;
    min-width: 35px;
}

.family-highlight h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-family: 'Martel', serif;
}

.family-highlight p {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
}

.family-quote {
    position: relative;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.05), rgba(255, 107, 53, 0.05));
    border-left: 5px solid #FF9933;
    border-radius: 10px;
    margin-top: 30px;
}

.family-quote i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: #FFD700;
    opacity: 0.3;
}

.family-quote p {
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0 0 15px 30px;
}

.family-quote cite {
    display: block;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: 'Martel', serif;
}

.family-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.family-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.family-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.family-img-wrapper:hover img {
    transform: scale(1.05);
}

.family-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    font-family: 'Martel', serif;
}

.family-badge i {
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: var(--white-color);
        width: 100%;
        padding: 20px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        gap: 10px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .bjp-logo {
        width: 45px;
        height: 45px;
    }

    .nav-text h3 {
        font-size: 16px;
    }

    .nav-text p {
        font-size: 11px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
        transform: translateX(0);
        margin: 0 auto;
    }

    .hero-badge {
        justify-content: center;
        font-size: 12px;
    }

    .badge-text {
        font-size: 12px;
    }

    .tagline-line {
        font-size: 32px;
        margin: 5px 0;
    }

    .tagline-underline {
        margin: 15px auto;
    }

    .hero-name {
        margin: 0 0 35px 0;
        padding: 5px 0;
    }

    .hero-name h2 {
        font-size: 38px;
        line-height: 1.4;
        padding: 2px 0;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-highlights {
        align-items: center;
    }

    .highlight-item {
        justify-content: center;
        font-size: 14px;
    }

    .hero-description {
        font-size: 15px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .stat-divider {
        width: 80%;
        height: 1px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .image-frame {
        width: 300px;
        height: 300px;
    }

    .decoration-1 {
        width: 300px;
        height: 300px;
    }

    .decoration-2 {
        width: 240px;
        height: 240px;
    }

    .decoration-3 {
        width: 360px;
        height: 360px;
    }

    .bjp-logo-overlay {
        width: 70px;
        height: 70px;
        bottom: -8px;
    }

    .bjp-logo-overlay img {
        width: 50px;
        height: 50px;
    }

    .image-badge {
        font-size: 11px;
        padding: 8px 15px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator p {
        font-size: 10px;
    }

    .hero-position {
        font-size: 15px;
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .image-frame {
        width: 300px;
        height: 300px;
    }

    .about-content,
    .ward-content,
    .family-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        position: relative;
        top: 0;
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-text {
        order: 2;
    }

    .about-text h3 {
        font-size: 28px;
        text-align: center;
    }

    .about-party-affiliation {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 16px 18px;
        gap: 18px;
    }

    .party-logo {
        width: 90px;
        height: 90px;
    }

    .party-info p {
        font-size: 18px;
    }

    .about-details h4 {
        font-size: 20px;
    }

    .about-details p {
        font-size: 15px;
    }

    .ward-content {
        gap: 40px;
    }

    .ward-image {
        order: 1;
    }

    .ward-text {
        order: 2;
        text-align: center;
    }

    .ward-text h3 {
        font-size: 28px;
    }

    .ward-badge {
        left: 50%;
        transform: translateX(-50%);
    }

    .family-content {
        gap: 40px;
    }

    .family-text {
        order: 2;
        text-align: center;
    }

    .family-image {
        order: 1;
    }

    .family-text h3 {
        font-size: 30px;
    }

    .family-role {
        justify-content: center;
    }

    .family-quote {
        text-align: left;
    }

    .section-title {
        font-size: 32px;
    }

    .about-party-affiliation {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .party-logo {
        width: 80px;
        height: 80px;
    }

    .party-info p {
        font-size: 18px;
    }

    .position-list li {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
        padding: 40px 0 60px;
    }

    .hero-content {
        gap: 30px;
    }

    .tagline-line {
        font-size: 28px;
    }

    .hero-name {
        margin: 0 0 30px 0;
        padding: 5px 0;
    }

    .hero-name h2 {
        font-size: 34px;
        line-height: 1.4;
        padding: 2px 0;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .highlight-item {
        font-size: 13px;
    }

    .highlight-item i {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .stat-number {
        font-size: 24px;
    }

    .image-frame {
        width: 250px;
        height: 250px;
    }

    .bjp-logo-overlay {
        width: 60px;
        height: 60px;
        bottom: -5px;
        border: 3px solid #FF9933;
    }

    .bjp-logo-overlay img {
        width: 42px;
        height: 42px;
    }

    .decoration-1 {
        width: 250px;
        height: 250px;
    }

    .decoration-2 {
        width: 200px;
        height: 200px;
    }

    .decoration-3 {
        width: 300px;
        height: 300px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-positions {
        padding: 20px 15px;
    }

    .hero-position {
        font-size: 14px;
        gap: 10px;
    }

    .btn-lg {
        padding: 12px 25px;
        font-size: 14px;
    }

    .focus-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 28px;
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-text .title-underline {
        margin: 0 auto 20px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .about-party-affiliation {
        padding: 15px 18px;
        gap: 12px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .party-logo {
        width: 75px;
        height: 75px;
    }

    .party-info p {
        font-size: 16px;
    }

    .position-list li {
        font-size: 14px;
        padding: 12px 8px;
    }

    .about-text h3 {
        font-size: 26px;
    }

    .about-details h4 {
        font-size: 18px;
        justify-content: center;
    }

    .about-details p {
        font-size: 14px;
    }

    .party-info p {
        font-size: 16px;
    }

    .position-list li {
        font-size: 14px;
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        width: 50px;
        height: 50px;
    }

    .bjp-logo {
        width: 38px;
        height: 38px;
    }

    .nav-text h3 {
        font-size: 13px;
    }

    .nav-text p {
        font-size: 9px;
    }

    .hero {
        padding: 30px 0 40px;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 11px;
    }

    .badge-icon {
        font-size: 16px;
    }

    .badge-text {
        font-size: 11px;
    }

    .tagline-line {
        font-size: 24px;
        margin: 4px 0;
    }

    .tagline-underline {
        width: 80px;
        height: 3px;
    }

    .hero-name {
        margin: 0 0 25px 0;
        text-align: center;
        padding: 5px 0;
    }

    .hero-name h2 {
        font-size: 28px;
        line-height: 1.4;
        padding: 2px 0;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .highlight-item {
        font-size: 12px;
        padding: 8px 0;
    }

    .highlight-item i {
        font-size: 14px;
        width: 20px;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .hero-stats {
        padding: 15px;
        gap: 15px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 11px;
    }

    .image-frame {
        width: 220px;
        height: 220px;
        padding: 15px;
    }

    .bjp-logo-overlay {
        width: 55px;
        height: 55px;
        bottom: -3px;
        border: 3px solid #FF9933;
    }

    .bjp-logo-overlay img {
        width: 38px;
        height: 38px;
    }

    .decoration-1 {
        width: 220px;
        height: 220px;
    }

    .decoration-2 {
        width: 176px;
        height: 176px;
    }

    .decoration-3 {
        width: 264px;
        height: 264px;
    }

    .frame-border {
        inset: -10px;
    }

    .image-badge {
        font-size: 10px;
        padding: 6px 12px;
        bottom: 5px;
    }

    .image-badge i {
        font-size: 12px;
    }

    .scroll-indicator {
        bottom: 15px;
    }

    .mouse {
        width: 22px;
        height: 34px;
    }

    .wheel {
        width: 3px;
        height: 6px;
    }

    .hero-positions {
        padding: 15px;
    }

    .hero-position {
        font-size: 13px;
        gap: 8px;
    }

    .hero-position i {
        font-size: 16px;
        width: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .party-logo {
        width: 60px;
        height: 60px;
    }

    .party-info p {
        font-size: 14px;
    }

    .position-list li {
        font-size: 13px;
        padding: 10px 8px;
        gap: 10px;
    }

    .position-list li i {
        font-size: 18px;
        width: 25px;
    }

    .about-party-affiliation {
        padding: 12px 15px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .party-logo {
        width: 70px;
        height: 70px;
    }

    .party-info p {
        font-size: 14px;
    }

    .about-text h3 {
        font-size: 22px;
        text-align: center;
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-text .title-underline {
        margin: 0 auto 20px;
    }

    .about-details h4 {
        font-size: 16px;
    }

    .about-details p {
        font-size: 13px;
        text-align: left;
    }

    .position-list li i {
        font-size: 18px;
        width: 25px;
    }

    .about-party-affiliation {
        padding: 15px;
    }
}