/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf8f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #d4691a, #e67e22);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.logo span {
    color: #fff3e0;
    font-size: 0.9rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #fff3e0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff3e0;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff3e0, #ffeaa7);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text > p:first-of-type {
    font-size: 1.5rem;
    color: #d4691a;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #d4691a;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #d4691a, #e67e22);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 105, 26, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 105, 26, 0.4);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.about-text > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.point i {
    color: #d4691a;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.point h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.point p {
    color: #666;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff3e0, #ffeaa7);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.hindi-text {
    color: #d4691a;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.project-content > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-features {
    list-style: none;
    margin-bottom: 2rem;
}

.project-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.project-features i {
    color: #d4691a;
    font-size: 0.9rem;
}

.project-impact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fff3e0, #ffeaa7);
    border-radius: 10px;
}

.impact-number {
    font-size: 2rem;
    font-weight: 700;
    color: #d4691a;
}

.impact-text {
    color: #8b4513;
    font-weight: 500;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.product-category {
    background: linear-gradient(135deg, #fff3e0, #ffeaa7);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-category:hover {
    transform: translateY(-5px);
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.product-content > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(212, 105, 26, 0.1);
    color: #d4691a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #8b4513, #d4691a);
    color: white;
}

.contact .section-header h2,
.contact .section-header p {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ffeaa7;
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #fff3e0;
    line-height: 1.6;
}

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

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

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.submit-btn {
    background: linear-gradient(135deg, #ffeaa7, #fff3e0);
    color: #8b4513;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 234, 167, 0.3);
}

/* Footer */
.footer {
    background: #2c1810;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffeaa7;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff3e0;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: #ffeaa7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Empowerment Slider Styles */
.empowerment-slider-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff3e0, #ffeaa7);
}

.empowerment-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.slider-container {
    position: relative;
    width: 100%;
}

.slide {
    display: none;
    background: white;
    min-height: 500px;
}

.slide.active {
    display: block;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 500px;
}

.slide-image {
    height: 500px;
    overflow: hidden;
}

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

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

.slide-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.slide-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.slide-text .hindi-text {
    font-size: 1.3rem;
    color: #d4691a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.slide-text .location {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.slide-text blockquote {
    font-size: 1.1rem;
    color: #8b4513;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid #d4691a;
    background: rgba(212, 105, 26, 0.05);
    padding: 1rem;
    border-radius: 8px;
}

.slide-text .translation {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.achievement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.achievement-tags .tag {
    background: linear-gradient(135deg, #d4691a, #e67e22);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.prev-btn, .next-btn {
    background: linear-gradient(135deg, #d4691a, #e67e22);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 105, 26, 0.3);
}

.prev-btn:hover, .next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 105, 26, 0.4);
}

.slide-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 105, 26, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #d4691a;
    transform: scale(1.2);
}

/* Culture Slider Styles */
.culture-slider-section {
    padding: 80px 0;
    background: white;
}

.culture-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.culture-slide-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.culture-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.culture-slide.active {
    opacity: 1;
}

.culture-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.culture-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.culture-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 3rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.culture-slide:hover .culture-overlay {
    transform: translateY(0);
}

.culture-overlay h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffeaa7;
    margin-bottom: 0.5rem;
}

.culture-overlay h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.culture-overlay p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.culture-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.culture-prev, .culture-next {
    background: rgba(255, 255, 255, 0.9);
    color: #8b4513;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.culture-prev:hover, .culture-next:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.culture-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
}

.culture-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.culture-dot.active {
    background: #ffeaa7;
    border-color: white;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #d4691a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .projects,
    .about,
    .products,
    .contact,
    .empowerment-slider-section,
    .culture-slider-section {
        padding: 60px 0;
    }

    .slide-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .slide-image {
        height: 300px;
        order: 1;
    }

    .slide-text {
        padding: 2rem;
        order: 2;
    }

    .slide-text h3 {
        font-size: 1.8rem;
    }

    .slide-text .hindi-text {
        font-size: 1.1rem;
    }

    .slide-text blockquote {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .achievement-tags {
        justify-content: center;
    }

    .achievement-tags .tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .slider-controls {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .prev-btn, .next-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .culture-slide-container {
        height: 500px;
    }

    .culture-overlay {
        padding: 2rem;
        position: static;
        background: rgba(0, 0, 0, 0.8);
        transform: none;
    }

    .culture-overlay h3 {
        font-size: 1.8rem;
    }

    .culture-overlay h4 {
        font-size: 1.2rem;
    }

    .culture-overlay p {
        font-size: 0.95rem;
    }

    .culture-nav {
        padding: 0 1rem;
    }

    .culture-prev, .culture-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .culture-dots {
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        padding: 0.8rem;
    }

    .stat h3 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .project-content,
    .product-content {
        padding: 1.5rem;
    }

    .slide-text h3 {
        font-size: 1.6rem;
    }

    .slide-text .hindi-text {
        font-size: 1rem;
    }

    .slide-text blockquote {
        font-size: 0.9rem;
        padding: 0.6rem;
    }

    .slide-text {
        padding: 1.5rem;
    }

    .slide-image {
        height: 250px;
    }

    .achievement-tags .tag {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .slider-controls {
        padding: 0.8rem;
    }

    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .culture-slide-container {
        height: 400px;
    }

    .culture-overlay {
        padding: 1.5rem;
    }

    .culture-overlay h3 {
        font-size: 1.6rem;
    }

    .culture-overlay h4 {
        font-size: 1.1rem;
    }

    .culture-overlay p {
        font-size: 0.85rem;
    }

    .culture-prev, .culture-next {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .culture-nav {
        padding: 0 0.5rem;
    }

    .culture-dots {
        gap: 0.6rem;
    }

    .culture-dot {
        width: 12px;
        height: 12px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .slide-text {
        padding: 1rem;
    }

    .slide-text h3 {
        font-size: 1.4rem;
    }

    .slide-text .hindi-text {
        font-size: 0.9rem;
    }

    .slide-text blockquote {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .achievement-tags .tag {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }

    .culture-overlay {
        padding: 1rem;
    }

    .culture-overlay h3 {
        font-size: 1.4rem;
    }

    .culture-overlay h4 {
        font-size: 1rem;
    }

    .culture-overlay p {
        font-size: 0.8rem;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .slide-content {
        grid-template-columns: 1fr 1fr;
        min-height: 400px;
    }

    .slide-image {
        height: 400px;
        order: 1;
    }

    .slide-text {
        order: 2;
        padding: 1.5rem;
    }

    .culture-slide-container {
        height: 400px;
    }

    .culture-overlay {
        padding: 1.5rem;
    }
}