* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

.golden-text {
    color: #cfa94c;
}

.triangle-container {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.triangle {
    display: inline-block;
    font-size: 1.1em;
    color: #cfa94c;
    transform: translateY(-1px);
    font-weight: 900;
    text-shadow: 0 0 1px #cfa94c;
    margin: 0;
    padding: 0;
}

.meera {
    margin: 0;
    padding: 0;
}

.banner {
    width: 100%;
    background-color: #000;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
}

.banner-logo {
    display: block;
    height: auto;
    width: auto;
}

/* Desktop styles */
@media (min-width: 769px) {
    .banner {
        min-height: 200px;
    }
    
    .banner-logo.left {
        max-height: 160px;
        max-width: 45%;
    }
    
    .banner-logo.right {
        max-height: 120px;
        max-width: 45%;
    }
}

/* Mobile styles for banner */
@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        padding: 40px 20px;
        align-items: center;
        gap: 30px;
        height: auto;
        min-height: 350px;
    }

    .banner-logo.left {
        height: auto;
        width: 85%;
        max-width: 280px;
        max-height: none;
        margin: 0;
    }

    .banner-logo.right {
        display: block;
        height: auto;
        width: 70%;
        max-width: 240px;
        max-height: none;
        margin: 0 0 10px 0;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .triangle-container {
        gap: 0;
    }

    .triangle {
        font-size: 1.2em;
        font-weight: 900;
        -webkit-text-stroke: 0.5px #cfa94c;
        text-shadow: 1px 1px 1px rgba(207, 169, 76, 0.5);
        margin: 0;
        padding: 0;
    }

    /* Mobile styles */
    @media (max-width: 768px) {
        .triangle {
            margin-right: -4px;
        }
    }
}
}

/* Ensure navigation stays below banner */
.navbar {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    background: #fff;
}


.navbar {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;
    padding: 1rem 0; /* Removed horizontal padding */
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    /*margin-top: 2rem;*/ /* Restored margin to 2rem */
}

.social-media-section {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 60px; /* Space above footer */
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px; /* More space between icons */
}

.social-icon {
    color: #333;
    font-size: 2rem; /* Larger icons */
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #cfa94c; /* Custom gold color */
    transform: scale(1.1); /* Slight grow effect on hover */
}

.nav-links {
    display: flex;
    list-style: none;
    justify-content: center; /* Center the list items */
    padding: 0;
    margin: 15px;
}

.nav-links li {
    margin: 0 2rem; /* Equal margin on both sides instead of just left */
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.2rem; /* Increased font size */
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #cfa94c; /* Custom gold color */
}

.social-nav {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
}

.social-nav a {
    font-size: 1.2rem;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid #eee;
}

/* Remove the old social media section styles since we're not using them anymore */
.social-media-section {
    display: none;
}

.hero {
    text-align: center;
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    letter-spacing: 1px;
}

.hero .tagline {
    font-size: 1.5rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #cfa94c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid #cfa94c;
    color: #cfa94c;
}

.intro-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 4rem 2rem;
    background-color: white;
}

.feature {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #cfa94c;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* About Section Styles */
.about-section {
    padding: 6rem 2rem;
    background-color: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content-centered {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.expertise-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-item {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
}

.expertise-item i {
    font-size: 2rem;
    color: #cfa94c;
    margin-bottom: 1rem;
}

.expertise-item h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.expertise-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}



/* Manifesto Section Styles */
.manifesto-section {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

.manifesto-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #cfa94c;
    margin: 1rem auto;
}

.manifesto-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.manifesto-quote {
    font-size: 1.8rem;
    color: #cfa94c;
    font-style: italic;
    line-height: 1.4;
    position: relative;
    padding: 0 2rem;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.manifesto-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.manifesto-item:hover {
    transform: translateY(-5px);
}

.manifesto-item h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.manifesto-item h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #cfa94c;
}

.manifesto-item p {
    color: #666;
    line-height: 1.6;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    position: relative;
}

.value-title {
    color: #cfa94c;
    font-weight: 500;
    display: block;
    margin-bottom: 0.3rem;
}

/* Services Section Styles */
.services-section {
    padding: 6rem 2rem;
    background-color: #fff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-item {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
    color: #cfa94c;
    font-size: 2.5rem;
    text-align: center;
}

.service-item h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #666;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.service-features li::before {
    content: "•";
    color: #cfa94c;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: #f9f9f9;
    border-radius: 12px;
}

.services-cta p {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Impact Section Styles */
.impact-section {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

.impact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.impact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.impact-item {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(207, 169, 76, 0.1);
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.impact-icon {
    margin-bottom: 1.5rem;
    color: #cfa94c;
    font-size: 2.5rem;
    text-align: center;
}

.impact-item h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.impact-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-features li {
    color: #666;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.impact-features li::before {
    content: "✓";
    color: #cfa94c;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.impact-statement {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(207, 169, 76, 0.1);
}

.impact-statement p {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive adjustments for impact section */
@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 3rem 2rem;
    padding-bottom: 8rem; /* Add extra padding at the bottom */
    background-color: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #cfa94c;
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto;
    width: 100%;
}

.contact-method {
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-icon {
    color: #cfa94c;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-method a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #cfa94c;
}

.consultation-block {
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 12px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.consultation-block h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.consultation-block p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-form {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 12px;
}

.contact-form h3 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #cfa94c;
}

.submit-button {
    background: #cfa94c;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #b89339;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .social-nav {
        margin-top: 1rem;
    }

    /* Hero Section */
    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* Features */
    .intro-features {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .feature {
        max-width: 100%;
    }

    /* Manifesto/Philosophy Grid */
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .manifesto-quote {
        font-size: 1.4rem;
        padding: 0 1rem;
    }

    /* About Section */
    .expertise-blocks {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        padding: 1.5rem;
    }

    /* Impact Section */
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-item {
        padding: 1.5rem;
    }

    /* Contact Section */
    .contact-methods-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .consultation-block {
        padding: 1.5rem;
    }

    .contact-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    /* Section Padding */
    .services-section,
    .about-section,
    .manifesto-section,
    .impact-section {
        padding: 3rem 1rem;
    }

    /* General Text */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    p {
        font-size: 1rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .banner {
        height: 150px;
    }

    .banner-logo.left {
        margin-left: 20px;
    }

    .banner-logo.right {
        right: 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-container {
        padding: 1rem;
    }
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: #fff;
    position: relative; /* Changed from fixed to relative */
    width: 100%;
}
