/* poppins-latin-400-normal */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-display: swap;
    font-weight: 400;
    src: url(https://cdn.jsdelivr.net/fontsource/fonts/poppins@latest/latin-400-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/poppins@latest/latin-400-normal.woff) format('woff');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: bold;
}

.logo-icon {
    width: 30px;
    height: 30px;           
    background: url('../images/bjp_logo.png') center/cover no-repeat;
    border-radius: 5px;
    flex-shrink: 0;
}

.logo span {
    color: #FD853A;
    font-weight: 700;
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

nav ul {
    display: flex;
    list-style: none;
    gap: clamp(15px, 2vw, 30px);
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #000000;
    transition: color 0.3s;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: clamp(13px, 1.5vw, 16px);
    white-space: nowrap;
}

nav a:hover {
    color: #ff6b00;
}

.cta-btn {
    background: #FD6F00;
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #e55d00;
}

.mobile-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #ff6b00;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: block;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(40px, 8vw, 80px) 5%;
    gap: clamp(30px, 5vw, 60px);
    background: linear-gradient(135deg, #fff 60%, #f5f5f5 60%);
 
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: clamp(24px, 5vw, 42px);
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero h1 span {
    color: #ff6b00;
}

.hero p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: clamp(14px, 2vw, 16px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 400px;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    object-fit: cover;
}

/* Meet Section */
.meet-section {
    display: flex;
    align-items: center;
    gap: clamp(30px, 6vw, 60px);
    padding: clamp(40px, 8vw, 80px) 5%;
    background: #fff;
}

.meet-image {
    flex: 1;
    max-width: 450px;
}

.meet-image img {
    width: 100%;
    border-radius: 10px;
}

.meet-content {
    flex: 1;
}

.meet-content h2 {
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 20px;
}

.meet-content h2 span {
    color: #ff6b00;
}

.meet-content p {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.8;
    color: #666;
}

/* Initiatives Section */
.initiatives {
    padding: clamp(40px, 8vw, 80px) 5%;
    background: #f9f9f9;
}

.initiatives h2 {
    text-align: center;
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: clamp(30px, 5vw, 50px);
}

.initiatives h2 span {
    color: #ff6b00;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(20px, 3vw, 30px);
    margin-bottom: 30px;
}

.initiative-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.initiative-card:hover {
    transform: translateY(-5px);
}

.initiative-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.initiative-content {
    padding: clamp(15px, 3vw, 20px);
}

.initiative-content h3 {
    margin-bottom: 10px;
    font-size: clamp(18px, 2.5vw, 22px);
}

.initiative-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: clamp(14px, 1.8vw, 16px);
}

.read-more {
    color: #ff6b00;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.carousel-controls {
    text-align: center;
    margin-top: 20px;
}

.carousel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #ff6b00;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: #ff6b00;
    color: white;
}

/* Gallery Section */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.gallery-title {
    background: #ff6b00;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: bold;
    padding: clamp(40px, 8vw, 60px);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-image:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 60px);
    padding: clamp(40px, 8vw, 80px) 5%;
    background: #fff;
}

.contact-form h2 {
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 10px;
}

.contact-form p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: clamp(12px, 2vw, 15px);
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 1.8vw, 16px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: clamp(12px, 2vw, 15px);
    background: #ff6b00;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: clamp(14px, 1.8vw, 16px);
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    background: #e55d00;
}

.contact-info h3 {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 20px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 10px;
    color: #666;
    font-size: clamp(14px, 1.8vw, 16px);
}

.footer-social,
.contact-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-social .social-icon img,
.contact-social .social-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: 0.3s ease-in-out;
}

.footer-social .social-icon:hover img,
.contact-social .social-icon:hover img {
    transform: scale(1.1);
    opacity: 0.8;
    cursor: pointer;
}

/* Footer */
footer {
    background: #424242;
    color: white;
    padding: clamp(30px, 5vw, 40px) 5%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(25px, 4vw, 40px);
    margin-bottom: 20px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: #FFFFFF;
    font-size: clamp(16px, 2vw, 18px);
}

.footer-section p {
    font-size: clamp(13px, 1.6vw, 15px);
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: clamp(13px, 1.6vw, 15px);
}

.footer-section a:hover {
    color: #ff6b00;
}

.read-more-btn {
    display: inline-block;
    margin-top: 20px;   
    color: #FD6F00;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}



/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    header {
        padding: 15px 4%;
    }

    nav ul {
        gap: 15px;
    }

    .hero {
        padding: 50px 4%;
    }

    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 30px 5%;
        background: #fff;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        max-width: 300px;
    }

    .meet-section {
        flex-direction: column;
        text-align: center;
    }

    .meet-image {
        max-width: 100%;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery-title {
        order: -1;
    }

    .initiatives-grid {
        grid-template-columns: 1fr;
    }

    .initiative-card img {
        height: 200px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    header {
        padding: 12px 5%;
    }

    .logo {
        font-size: 16px;
    }

    .logo-icon {
        width: 25px;
        height: 25px;
    }

    .hero-image {
        max-width: 250px;
    }

    .initiative-card img {
        height: 180px;
    }

    .gallery-image {
        min-height: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-social .social-icon img,
    .contact-social .social-icon img {
        width: 20px;
        height: 20px;               
    }

    .footer-social {
        justify-content: left;
    }

    .contact-social {
        justify-content: center;
    }

    .contact-details {
        text-align: center;
    }
}


/* //About page css */
