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

:root {
    --primary-color: #ff9933;
    --secondary-color: #333333;
    --dark-color: #555555;
    --light-color: #f9f9f9;
    --accent-color: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: #ffffff;
}

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

/* Navigation Bar */
.navbar {
    background-color: #ffffff;
    color: #333333;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
}

.logo-art {
    color: #d2691e;
}

.logo-bharat {
    color: #228b22;
}

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

.nav-links a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff9933;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    background-color: #fafafa;
    color: #333333;
    padding: 100px 20px;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 218, 185, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(144, 238, 144, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.icon-outer {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #ff9933;
    z-index: 1;
}

.icon-inner {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #228b22;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.palette-icon {
    width: 50px;
    height: 50px;
}

.hero-heading {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.heading-line1 {
    display: block;
    color: #333333;
    font-weight: 400;
}

.heading-line2 {
    display: block;
    margin-top: 0.5rem;
}

.heading-indian {
    color: #d2691e;
    font-weight: 600;
}

.heading-artistry {
    color: #228b22;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #555555;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-button {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button.primary {
    background-color: #ff9933;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.cta-button.primary:hover {
    background-color: #e8821f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

.cta-button.secondary {
    background-color: white;
    color: #ff9933;
    border: 2px solid #ff9933;
}

.cta-button.secondary:hover {
    background-color: #fff5eb;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-icon {
        width: 100px;
        height: 100px;
    }
    .icon-outer {
        width: 100px;
        height: 100px;
    }
    .icon-inner {
        width: 75px;
        height: 75px;
        top: 12.5px;
        left: 12.5px;
    }
}

/* Featured Artists Section */
.featured-artists {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.section-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.artists-icon {
    width: 60px;
    height: 60px;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.artist-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.artist-image {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #ff9933;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8cc 100%);
    position: relative;
    overflow: hidden;
}

.image-placeholder.real-image {
    border: none;
    background: none;
    padding: 0;
}

.image-placeholder.real-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.image-placeholder span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #d2691e;
    text-align: center;
    line-height: 1.3;
}

.image-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid #228b22;
    transform: rotate(-45deg);
}

.artist-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 0.75rem;
}

.specialization-tag {
    display: inline-block;
    background-color: #d2691e;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.artist-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #555555;
    font-size: 0.95rem;
}

.location-icon {
    width: 18px;
    height: 18px;
}

.artist-description {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.artist-achievement {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #228b22;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
}

.award-icon {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: 1fr;
    }
    .section-heading {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Art Gallery Section */
.art-gallery {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.gallery-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 1rem;
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 25px;
    background-color: #f0f0f0;
    color: #555555;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: #ff9933;
    color: white;
}

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

.art-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.art-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.art-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

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

.art-content {
    padding: 1.5rem;
}

.art-category {
    display: inline-block;
    background-color: #d2691e;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.art-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 0.5rem;
}

.art-artist {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.art-description {
    font-size: 0.9rem;
    color: #888888;
    line-height: 1.6;
}

.gallery-view-more {
    margin-top: 3rem;
    text-align: center;
}

.view-more-btn {
    background-color: #ff9933;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
    font-family: inherit;
}

.view-more-btn:hover {
    background-color: #e8821f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
}

@media (max-width: 768px) {
    .gallery-heading {
        font-size: 2rem;
    }
    .gallery-subtitle {
        font-size: 1rem;
    }
    .gallery-filters {
        gap: 0.5rem;
    }
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* About Art Nirbhar Bharat Section */
.about-section {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem;
}

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

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.icon-outer-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ff9933;
    z-index: 1;
}

.icon-inner-circle {
    position: absolute;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #228b22;
    top: 12.5px;
    left: 12.5px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-svg {
    width: 40px;
    height: 40px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-heading {
        font-size: 2rem;
    }
    .about-description {
        font-size: 1rem;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .feature-icon {
        width: 80px;
        height: 80px;
    }
    .icon-outer-ring {
        width: 80px;
        height: 80px;
    }
    .icon-inner-circle {
        width: 60px;
        height: 60px;
        top: 10px;
        left: 10px;
    }
    .feature-svg {
        width: 30px;
        height: 30px;
    }
}

/* Introduction Section */
.introduction {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.introduction h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    text-align: center;
}

.introduction p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--dark-color);
}

.vision-highlight {
    background-color: white;
    padding: 20px;
    border-left: 5px solid #ff9933;
    font-style: italic;
    border-radius: 5px;
    margin-top: 2rem;
}

/* Initiatives Section */
.initiatives {
    padding: 80px 20px;
    background-color: white;
}

.initiatives h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    text-align: center;
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.initiative-card {
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #ff9933;
}

.initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.initiative-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.initiative-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.initiative-card .subtitle {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.initiative-card p {
    color: var(--dark-color);
    line-height: 1.7;
}

/* Rhythmshala Gallery Section */
.rhythmshala-gallery {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.gallery-section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 1rem;
}

.gallery-section-subtitle {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.rhythm-image-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f5f5f5;
    min-height: 300px;
}

.rhythm-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.rhythm-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
    transition: transform 0.3s ease;
}

.rhythm-image-card:hover .rhythm-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.rhythm-image-card:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .gallery-section-heading {
        font-size: 2rem;
    }
    .gallery-section-subtitle {
        font-size: 1rem;
    }
    .rhythmshala-images {
        grid-template-columns: 1fr;
    }
    .rhythm-image-card {
        min-height: 250px;
    }
    .rhythm-image {
        min-height: 250px;
    }
}

/* Founder Section */
.founder {
    padding: 80px 20px;
    background-color: var(--light-color);
}

.founder h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    text-align: center;
}

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

.placeholder-image {
    background: linear-gradient(135deg, #ff9933 0%, #ff9933 100%);
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.founder-text h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.founder-text h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.founder-text ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

.founder-text li {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.founder-text p {
    color: var(--dark-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
    }
    .placeholder-image {
        height: 250px;
    }
}

/* Join the Movement Section */
.join-movement {
    padding: 80px 20px;
    background-color: white;
}

.join-content-card {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fffaf5;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.join-text-content {
    text-align: left;
}

.join-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 1.5rem;
}

.join-description {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.join-statistics {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-artists {
    color: #d2691e;
}

.stat-artworks {
    color: #228b22;
}

.stat-label {
    font-size: 1rem;
    color: #555555;
    font-weight: 500;
}

.join-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.image-placeholder-dark {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.image-placeholder-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        );
}

@media (max-width: 968px) {
    .join-content-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    .join-text-content {
        text-align: center;
    }
    .join-statistics {
        justify-content: center;
    }
    .join-image-placeholder {
        min-height: 300px;
    }
    .image-placeholder-dark {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .join-heading {
        font-size: 2rem;
    }
    .join-description {
        font-size: 1rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .join-statistics {
        gap: 2rem;
    }
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff9933;
    box-shadow: 0 0 5px rgba(255, 153, 51, 0.3);
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #ffffff;
    padding: 3rem 20px 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff9933;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-subheading,
.footer-heading {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 5px;
    background-color: #f5f5f5;
    color: #333333;
    font-size: 0.95rem;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: #999999;
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    background-color: #ff9933;
    color: white;
    font-weight: bold;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: #e8821f;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff9933;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    color: #ff9933;
}

.copyright {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.copyright p {
    margin: 0.25rem 0;
}

.footer-tagline {
    font-style: italic;
    margin-top: 0.5rem !important;
    opacity: 0.9;
}

.heart {
    color: #ff0000;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 20px 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .copyright {
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .introduction h2,
    .initiatives h2,
    .founder h2,
    .contact h2 {
        font-size: 2rem;
    }

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

    .nav-links {
        gap: 1rem;
    }
}
