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

html,
body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    padding: 1rem;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 100px;
    transition: height 0.3s ease;
}

nav {
    flex-grow: 1;
    margin-left: 2rem;
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

header.scrolled {
    background: rgb(211, 94, 17);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
}

header.scrolled nav a {
    color: white;
}

header.scrolled nav a {
    color: #000000;
}

nav .cta-button:hover {
    background: var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

:root {
    --primary-color: #FF6B01;
    --secondary-color: #FFFFFF;
    --accent-color: #FF8533;
    --text-color: #333333;
    --background-color: #f8f9fa;
    --border-radius: 8px;
    --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cta-button {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background: var(--secondary-color);
    color: white;
}

#hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('../images/Hero-Banner/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

#hero::before {
    display: none;
}

.hero-content {
    width: 100%;
    padding-bottom: 5rem;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-content .cta-button {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

#leadership {
    padding: 4rem 2rem;
    background: #001B3D;
    color: white;
}

#leadership h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.leadership-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.leader-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    width: 300px;
    padding: 0;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 2px solid white;
}

.leader-card:hover {
    transform: translateY(-10px);
}

.leader-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    border: none;
}

.leader-info {
    padding: 1.5rem;
    background: white;
    text-align: center;
}

.leader-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.leader-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.leader-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.leader-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    background: #f5f5f5;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .leadership-container {
        gap: 1.5rem;
    }

    .leader-card {
        width: 280px;
    }

    .leader-card img {
        height: 300px;
    }
}

#join {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
        url('images/crowd-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 2rem;
    color: white;
    text-align: left;
}

#join h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    max-width: 800px;
    margin-left: 4rem;
}

#join p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 0 3rem 4rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.join-buttons {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    margin-top: 2rem;
    margin-left: 4rem;
}

.join-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.join-btn i {
    font-size: 1.4rem;
}

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

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

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

.join-btn.primary:hover {
    background: var(--primary-color);
    color: white;}

.join-btn.secondary:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    #join {
        padding: 4rem 1.5rem;
    }

    #join h2 {
        font-size: 2.5rem;
    }

    #join p {
        margin-left: 2rem;
        font-size: 1.1rem;
    }

    .join-buttons {
        margin-left: 2rem;
        flex-direction: column;
    }

    .join-btn {
        width: 100%;
        justify-content: center;
    }
}

footer {
    background: #f5f5f5;
    padding: 4rem 2rem 2rem;
    color: #333;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.gandhi-quote {
    font-size: 1.8rem;
    font-weight: 600;
    color: #001B3D;
    text-align: left;
    margin-bottom: 2rem;
    max-width: 800px;
    line-height: 1.4;
}

.quote-author {
    font-size: 1.2rem;
    color: #666;
    margin-top: 0.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.contact-info {
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.footer-section h3 {
    color: #001B3D;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #666;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background-color: #f8f8f8;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.footer-bottom p {
    color: #666;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer-bottom {
        padding: 1rem;
        flex-direction: column-reverse;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown>a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    min-width: 250px;
    padding: 0.5rem 0;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #333;
    transition: all 0.2s ease;
    white-space: nowrap;
    width: 100%;
    text-align: left;
}

.dropdown-menu a:hover {
    background: var(--primary-color);
    color: white;
    padding-left: 2rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown .fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-left: 0.3rem;
}

.dropdown:hover .fa-chevron-down {
    transform: rotate(-180deg);
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.dropdown-menu a:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
    border-radius: 0;
}

@media (min-width: 769px) {
    header.transparent {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
}

nav a,
.cta-button {
    display: flex;
    align-items: center;
    height: 100%;
}

nav .cta-button {
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav .cta-button:hover {
    background: #68403e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: popupFade 0.3s ease;
}

@keyframes popupFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.register-form input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.popup-overlay.active {
    display: flex;
}

.popup-content .register-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.popup-content .register-form input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.popup-content .register-form .cta-button {
    width: 50%;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.popup-content .register-form .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: var(--secondary-color);
}

.popup-content h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-content .cta-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.hero-content .cta-button {
    font-size: 1.2rem;
    padding: 1rem 6rem;
    border-radius: 50px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-content .cta-button:hover {
    transform: translateY(-3px);
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-content .cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
        order: 3;
    }

    nav {
        position: absolute;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 31, 63, 0.95);
        transition: 0.3s ease;
        backdrop-filter: blur(10px);
    }

    nav.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* Hamburger animation */
    .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);
    }

    header {
        padding: 0.5rem 1rem;
    }

    .logo img {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .achievements-container {
        padding: 1rem 0;
    }

    .achievement-slide {
        min-width: 280px;
        min-height: auto;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
    }

    .state-filters {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
}

#kaam-ki-rajneeti {
    padding: 4rem 2rem;
    background: url("../images/Journey/Journey-banner.png");
    text-align: center;
    color: white;
}

#kaam-ki-rajneeti h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.achievement-slide {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.achievement-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.achievement-slide:hover {
    transform: translateY(-5px);
}

.achievement-slide:hover .achievement-image img {
    transform: scale(1.1);
}

.achievement-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.achievement-slide h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.achievement-points ul {
    text-align: left;
    list-style: none;
    color: #e0e0e0;
}

.achievement-points li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.achievement-points li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.state-btn {
    padding: 0.8rem 2rem;
    margin: 0 0.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    background: transparent;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.state-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.state-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    #kaam-ki-rajneeti {
        padding: 3rem 1rem;
    }

    .achievement-slide {
        padding: 1.5rem;
    }

    .state-btn {
        padding: 0.6rem 1.5rem;
        margin: 0.5rem;
    }
}

.achievements-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 10px;
    width: 100%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.achievements-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-slide {
    flex: 0 0 calc(33.333% - 24px);
    min-width: 300px;
    min-height: 450px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.nav-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

#bjp-leaders-speak {
    padding: 4rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('images/banner/ManoharLalKhattar-Banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
    position: relative;
}

.video-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

@media (max-width: 768px) {
    .video-slider {
        margin: 0;
        padding: 1rem;
        width: 100%;
    }

    .video-container {
        width: 100%;
        overflow: hidden;
    }

    .video-slide {
        width: 100% !important;
        min-width: 100% !important;
        margin: 0 !important;
        padding: 0 1rem;
    }

    iframe {
        width: 100%;
        height: 200px;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.9);
        color: var(--primary-color);
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }


    .video-info {
        padding: 1rem 0;
    }

    .video-info h3 {
        font-size: 1.1rem;
    }

    .video-info p {
        font-size: 0.9rem;
    }
}

.video-container {
    display: flex;
    gap: 2rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 1.5rem 0;
    position: relative;
    justify-content: flex-start;
    margin-left: 0;
}

.video-slide {
    flex: 0 0 calc(50% - 1rem);
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transform: scale(0.95);
    display: flex;
    flex-direction: column;
}

.video-slide:hover {
    transform: translateY(-10px) scale(1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: #FF8C00;
    background: rgba(255, 140, 0, 0.1);
}

.video-slide iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px 20px 0 0;
    border: none;
}

.video-info {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
}

.video-info h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.video-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    margin-top: auto;
}

.social-share a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-share a:hover {
    background: #FF8C00;
    transform: translateY(-3px);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #000;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-nav:hover {
    background: #FF8C00;
    color: #000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
    border-color: #FF8C00;
}

.slider-nav i {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .slider-nav {
        width: 40px;
        height: 40px;
        background: var(--secondary-color);
        color: #000;
        border: 2px solid white;
    }

    .prev-btn {
        left: -5px;
    }

    .next-btn {
        right: -5px;
    }

    .slider-nav i {
        font-size: 1.2rem;
    }
}

.view-more-btn:hover {
    background: #FF8C00;
    color: white;
    transform: translateY(-2px);
}

.view-more-container {
    margin-top: 2rem;
    text-align: center;
}

.view-more-btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.view-more-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 1, 0.4);
}

.view-more-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--primary-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.view-more-btn:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .view-more-btn {
        padding: 0.7rem 2rem;
        font-size: 1rem;
    }
}

.statistics-section {
    background: url('../images/Map/map-bg.avif');
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.statistics-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    color: #29253f;
    font-size: 50px;
    font-weight: 900;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 15px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    padding: 1.5rem;
    border: 3px solid #FF9933;
    border-radius: 8px;
    transition: transform 0.3s ease;
    background-color: transparent;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #29253f;
}

@media (max-width: 768px) {
    .statistics-section h2 {
        font-size: 1.8rem;
    }

    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0.5rem;
    }

    .stat-box {
        min-width: unset;
        padding: 1rem;
        margin: 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

#our-journey {
    background: url("../images/Journey/Journey-banner.png");
    padding: 4rem 2rem;
    color: white;
}

#our-journey h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.journey-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.journey-text {
    flex: 1;
    background: #ff7300;
    padding: 2rem;
    border-radius: 20px;
    color: #000;
}

.journey-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #001F3F;
}

.journey-points {
    list-style: none;
}

.journey-points li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.journey-points li::before {
    content: '•';
    color: #001F3F;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.journey-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .journey-content {
        flex-direction: column-reverse;
        gap: 1rem;
        margin: 1rem 0;
    }

    .journey-text {
        padding: 1.5rem;
        text-align: center;
        width: 100%;
    }

    .journey-text ul {
        text-align: left;
        padding-left: 1.5rem;
    }

    .journey-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .journey-image img {
        width: 100%;
        height: auto;
    }
}

.timeline {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
}

.timeline-years {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

.timeline-years span {
    font-size: 1rem;
    font-weight: 500;
    color: #FFD700;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}

.timeline-years span::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #FFD700;
    border-radius: 50%;
}

.timeline-years span:hover {
    color: #fff;
}

.timeline-years span.active {
    color: #fff;
    font-weight: bold;
}

.journey-details {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journey-details.active {
    display: block;
    opacity: 1;
}

.journey-details h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.journey-details ul {
    list-style: none;
    padding: 0;
}

.journey-details li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #fff;
}

.journey-details li::before {
    content: '•';
    color: #FFD700;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .journey-details {
        padding: 1.5rem;
    }
}

#latest-from-bjp {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

#latest-from-bjp h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.social-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
}

.tab-btn.active {
    background: #FFD700;
    color: #001F3F;
}

.social-feeds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.social-column {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.social-column:hover {
    transform: translateY(-5px);
}

.social-header {
    padding: 1rem;
    text-align: center;
    font-size: 1.5rem;
    background: #001F3F;
    color: #FFD700;
}

.follow-btn {
    display: block;
    text-align: center;
    padding: 1rem;
    background: #FFD700;
    color: #001F3F;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.follow-btn:hover {
    background: #001F3F;
    color: #FFD700;
}

@media (max-width: 768px) {
    .social-feeds {
        grid-template-columns: 1fr;
    }

    #latest-from-bjp {
        padding: 2rem 1rem;
    }

    #latest-from-bjp h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
    }

    .nav-menu.active {
        display: block;
    }

    .hamburger {
        display: block;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
    }
}

.achievements-slider.states-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.states-achievements .achievement-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.states-achievements .achievement-card:hover {
    transform: translateY(-5px);
}

.states-achievements .achievement-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.states-achievements .achievement-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.states-achievements .achievement-card p {
    color: white;
    font-size: 0.9rem;
    line-height: 1.6;
}

.achievements-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.achievements-slider {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 10px;
}

.achievements-slider::-webkit-scrollbar {
    display: none;
}

.achievement-slide {
    flex: 0 0 calc(33.333% - 24px);
    min-width: 300px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.achievement-header {
    flex-shrink: 0;
}

.achievement-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.achievement-slide h3 {
    color: #FF9933;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Scrollable Content Section */
.achievement-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.achievement-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Custom Scrollbar */
.achievement-content::-webkit-scrollbar {
    width: 4px;
}

.achievement-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.achievement-content::-webkit-scrollbar-thumb {
    background: rgba(255, 153, 51, 0.3);
    border-radius: 4px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .achievement-slide {
        flex: 0 0 calc(50% - 16px);
        height: 550px;
    }
}

@media (max-width: 768px) {
    .achievement-slide {
        flex: 0 0 100%;
        min-width: 100%;
        min-height: auto;
        padding: 1rem;
    }

    .achievement-points {
        padding: 0.5rem;
    }

    .achievement-points ul {
        padding-left: 1.2rem;
        margin: 0;
    }

    .achievement-points li {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .achievement-image {
        height: 180px;
    }

    .achievement-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .achievement-slide h3 {
        font-size: 1.2rem;
        margin: 1rem 0;
    }

    .achievements-container {
        padding: 0 1rem;
    }

    .achievements-slider {
        margin: 0;
        padding: 1rem 0;
    }
}


.achievements-slider.states-achievements {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.achievements-slider.states-achievements.active {
    display: grid;
    opacity: 1;
}


.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 153, 51, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 153, 51, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF9933;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 153, 51, 0.3);
    transform: translateY(-50%) scale(1.1);
}


.state-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.state-btn {
    padding: 0.8rem 2rem;
    border: 2px solid rgba(255, 153, 51, 0.3);
    border-radius: 30px;
    background: rgba(255, 153, 51, 0.1);
    backdrop-filter: blur(5px);
    color: #FF9933;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.state-btn.active,
.state-btn:hover {
    background: rgba(255, 153, 51, 0.9);
    color: white;
    border-color: transparent;
}


@media (max-width: 1200px) {
    .achievements-slider {
        grid-auto-columns: calc(50% - 16px);
    }
}

@media (max-width: 768px) {
    .achievements-slider {
        grid-auto-columns: calc(100% - 32px);
        gap: 16px;
    }

    .achievement-slide {
        min-width: 250px;
    }

    .state-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}


.st0 {
    fill: #E6E7E8;
}

.st1 {
    fill: #D1D3D4;
}


.st1:hover {
    fill: #a0a0a0;
    cursor: pointer;
}

#Layer_1 {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    display: block;
}

.st0 {
    fill: #E6E7E8;
}

.st1 {
    fill: #D1D3D4;
    transition: fill 0.3s ease;
}

.st1:hover {
    fill: #FF9933;
    cursor: pointer;
}

[data-title]:hover:after {
    content: attr(data-title);
    position: absolute;
    background: #001F3F;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 100;
}

#india-map {
    padding: 2rem;
    background: #f5f5f5;
    position: relative;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

#india_map {
    width: 100%;
    height: auto;
    display: block;
}

/* State Styles */
.state,
.ut {
    fill: #E6E7E8;
    stroke: #fff;
    stroke-width: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    vector-effect: non-scaling-stroke;
}

/* BJP Ruled States - Update with current BJP ruled states */
#IN-WB,
#IN-TR,
#IN-TN,
#IN-TG,
#IN-LD,
#IN-KL,
#IN-KA,
#IN-JK,
#IN-JH,
#IN-HP,
#IN-DN,
#IN-DL,
#IN-PY,
#IN-PB,
#IN-DD,
#IN-CH,
#IN-AR,
#IN-AN,
#IN-UP,
#IN-GJ,
#IN-MP,
#IN-UT,
#IN-AS,
#IN-MH,
#IN-HR,
#IN-RJ,
#IN-GA,
#IN-CT,
#IN-MN,
#IN-OR,
#IN-BR,
#IN-AP,
#IN-SK,
#IN-NL,
#IN-ML,
#IN-MZ {
    fill: #f36424;
}

/* Hover Effects */
.state:hover,
.ut:hover {
    filter: brightness(90%);
    transform: scale(1.02);
    transform-origin: center;
}

/* BJP Ruled States Hover */
#IN-WB:hover,
#IN-TR:hover,
#IN-TN:hover,
#IN-TG:hover,
#IN-LD:hover,
#IN-KL:hover,
#IN-KA:hover,
#IN-JK:hover,
#IN-JH:hover,
#IN-HP:hover,
#IN-DN:hover,
#IN-DL:hover,
#IN-PY:hover,
#IN-PB:hover,
#IN-DD:hover,
#IN-CH:hover,
#IN-AR:hover,
#IN-AN:hover,
#IN-UP:hover,
#IN-GJ:hover,
#IN-MP:hover,
#IN-UT:hover,
#IN-AS:hover,
#IN-MH:hover,
#IN-HR:hover,
#IN-RJ:hover,
#IN-GA:hover,
#IN-CT:hover,
#IN-MN:hover,
#IN-OR:hover,
#IN-BR:hover,
#IN-AP:hover,
#IN-SK:hover,
#IN-NL:hover,
#IN-ML:hover,
#IN-MZ:hover  {
    fill: #68403e;
    filter: drop-shadow(0 0 5px rgba(255, 153, 51, 0.5));
}

.map-tooltip {
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    pointer-events: none;
    z-index: 1000;
    display: none;
}


.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}

.legend-item span {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 4px;
}

/* Legend Colors */
.bjp-ruled {
    background-color: #f36424;
}

.alliance-ruled {
    background-color: #f36424;
}

.opposition-ruled {
    background-color: wheat;
}


@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }

    nav {
        width: 100%;
        margin: 1rem 0 0 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .leadership-container {
        padding: 0 1rem;
    }

    .leader-card {
        margin: 0 auto;
    }

    .social-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .tab-btn {
        width: calc(50% - 0.5rem);
        text-align: center;
    }

    .timeline-years {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .achievements-container {
        padding: 1rem;
    }

    .state-filters {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .state-btn {
        width: calc(50% - 0.5rem);
        text-align: center;
    }

    #india-map {
        padding: 1rem;
    }

    .map-legend {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 1rem auto;
        width: fit-content;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }


    nav.active ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }


    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-color);
        padding: 60px 20px 20px;
        transition: all 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }


    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 0.75rem;
        color: white;
        font-size: 1rem;
    }

    .dropdown-menu {
        width: 100%;
        margin-top: 0.25rem;
        padding: 0.25rem 0;
        background: rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu a {
        padding: 0.5rem !important;
        font-size: 0.9rem;
    }

    .dropdown i {
        margin-left: 0.25rem;
    }
}

.map-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#india-map {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

#india-map svg {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    svg {
        transform: scale(0.6);
        margin-left: -40%;
    }

    .map-legend {
        transform: scale(0.9);
        margin: 1rem auto;
        width: fit-content;
    }
}

/* Mobile Hero Section */
@media (max-width: 768px) {
    #hero {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
            url('../images/Hero-Banner/hero-bg-mobile.jpg');
        background-size: cover;
        background-position: center;
        height: 100vh;
    }

    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 80%;
        padding: 0.8rem;
        font-size: 1rem;
    }
}