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

:root {
    --primary-color: #111146;
    --secondary-color: #1E3A5F;
    --dark-blue: #0A2540;
    --text-dark: #1E3A5F;
    --stat-label: #F47521;
    --text-light: #FFFFFF;
    --bg-light: #F5F5F5;
    --border-color: #E0E0E0;
}

@font-face {
    font-family: 'Loos';
    /* Choose any name you like */
    src: url('./assets/fonts/fonnts.com-Loos_Normal_Regular.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    /* Helps manage how the font loads and displays */
}

@font-face {
    font-family: 'Loos_wide';
    /* Choose any name you like */
    src: url('./assets/fonts/fonnts.com-Loos_Wide_Regular.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    /* Helps manage how the font loads and displays */
}

@font-face {
    font-family: 'Loos_light';
    /* Choose any name you like */
    src: url('./assets/fonts/fonnts.com-Loos_Normal_Light.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    /* Helps manage how the font loads and displays */
}

para_title {
    font-size: 52px;
    font-weight: 600;
}

body {
    font-family: 'Loos';
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 120px;
}

/* Navigation */
.navbar {
    max-width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    width: 100%;
    max-width: 1280px;
    background: rgba(225, 225, 225, 0.6);
    backdrop-filter: blur(10px);
    margin: 0 auto;
    padding: 8px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

#menu_icon {}

.menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    width: 240px;

}

.menu-btn span:not(:last-child) {
    display: block;
    width: 3px;
    height: 3px;
    background: var(--text-light);
    border-radius: 50%;
}
a{
    text-decoration: none;
}
/* Menu Dropdown */
.menu-dropdown {
    position: fixed;
    top: 90px;
    right: calc((100vw - 1280px) / 2);
    max-width: 300px;
    width: 280px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
    animation: slideDown 0.3s ease;
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.menu-close {
    display: none;
}

.menu-item {
    padding: 15px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.menu-item:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateX(5px);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .menu-dropdown {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        max-width: 100%;
        width: 100%;
        height: 100vh;
        border-radius: 0;
        padding: 80px 40px 40px;
        background: rgba(17, 17, 70, 0.98);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

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

    .menu-close {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
        background: transparent;
        border: none;
        color: white;
        font-size: 40px;
        cursor: pointer;
        width: 50px;
        height: 50px;
        padding: 0;
        line-height: 1;
        transition: transform 0.3s ease;
    }

    .menu-close:hover {
        transform: rotate(90deg);
    }

    .menu-item {
        font-size: 32px;
        color: white;
        text-align: center;
        padding: 20px 40px;
        width: 100%;
        max-width: 500px;
    }

    .menu-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        transform: scale(1.05);
    }
}

@media (max-width: 1440px) and (min-width: 769px) {
    .menu-dropdown {
        right: 2.5vw;
    }
}


#helios_logo_footer {
    height: 146px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('./assets/banner.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: top;
    justify-content: start;
    color: var(--primary-color);
    margin-top: 0px;
}

/*
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 95, 0.7);
}
*/
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    padding: 70px 160px;
    text-align: left;
}

.hero-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 70vw;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 890px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 18px 40px;
    border-radius: 8px;
    font-family: 'Loos';
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    color: white;
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.image_caption {
    width: 100%;
    padding: 10px 28px;
    font-size: 20px;
    text-align: left;
}

.section-label {
    display: inline-block;
    color: var(--stat-label);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: 'Loos_wide';
}

.section-title {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-title.white {
    color: var(--text-light);
}

.section-text {
    font-family: 'Loos_light';
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.section-text.large {
    font-size: 20px;
    max-width: 782px;
    margin-left: auto;
}

.section-text.white {
    color: var(--text-light);
}

.section-header {
    display: block;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px;
}

.section-header .section-title {
    flex: 1;

}

/* Grid Layouts */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.section-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.section-grid.reverse .section-image {
    order: 2;
}

.section-grid.reverse .section-content {
    order: 1;
}

.section-content {
    display: flex;
    flex-direction: column;
}

/* Image Placeholders */
.image-placeholder {
    max-width: 100%;
    height: 500px;
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 18px;
    text-align: center;

}

.map {
    max-height: 750px;
    width: 110%;
}

.section-image {
    max-width: 100%;
}

.image-placeholder>img {
    max-width: 100%;
    max-height: 250px;
}

.image-placeholder.landscape {
    height: 400px;
}

.image-placeholder.wide {
    height: 300px;
    margin-top: 40px;
}

/* Why We Exist Section */
.why-we-exist {
    background: var(--bg-light);
}

#exist_image {
    height: 400px;
    width: 100%;
    background: url('./assets/Rectangle.webp');
}

/* Sustainable Scale Section */
.sustainable-scale {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 120px 0;
    max-height: 850px;
}

.sustainable-scale>.container {
    display: grid;
    grid-template-columns: 58% 42%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

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

.stat-label {
    font-family: 'Loos_wide';
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--stat-label);
    margin-bottom: 6px;
}

.stat-value {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Empowering India Section */
.empowering-india {
    padding: 120px 0;
}

.empowering-india>.container>.section-grid>.section-image>.image-placeholder {
    background: url('./assets/windmills.webp');
    height: 560px;
}

.empowering-grid {
    grid-template-columns: 1.8fr 1fr;
}

/* Our Approach Section */
.our-approach {
    background: var(--bg-light);
    padding: 120px 0;
}

.our-approach>.container>.image-placeholder {
    background: url('./assets/nature.webp');
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.approach-grid>.section-text {
    padding-top: 60px;
}

/* Vision to Reality Section */
.vision-to-reality {
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-number {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: var(--stat-label);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-transform: uppercase;
}

.feature-text {
    font-size: 16px;
    font-family: Loos_light;
    line-height: 1.6;
    color: white;
}

/* Green Blueprint Section */
.green-blueprint {
    padding: 120px 0;
}

.green-blueprint>.container>.section-grid {
    grid-template-columns: 1.1fr 1fr;
}

#fields {
    background: url('./assets/fields.webp');
    background-size: cover;
    height: 610px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.impact-card {
    background: #F4F4F4;
    padding: 20px;
    border-radius: 0;
    font-family: 'Loos_wide';
}

.impact-value {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--stat-label);
    margin-bottom: 15px;
}

.impact-label {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    text-transform: uppercase;
}

/* Partnerships Section */
.partnerships {
    padding: 120px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    place-items: center;
    gap: 40px;
    margin-top: 60px;
}

.partner-logo {
    max-height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

/* Value Creation Section */
.value-creation {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 120px 0;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--bg-light);
}

.contact-form {
    max-width: 1600px;
    margin-top: 60px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-group input {
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--text-light);
}

textarea {
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--text-light);

}
#brief_msg > .form-group{
    grid-column: span 2;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
}

.form-checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 16px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Footer */
.footer {
    background: var(--primary-color);
    background-image: url('./assets/footer_pattern.png');
    background-size: 100%;
    background-repeat: no-repeat;
    color: var(--text-light);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    height: 600px;
    font-family: "Loos_wide";
}

.footer-content {
    display: block;
    position: relative;
    z-index: 1;
}

.footer_grid {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: auto;
}

.copyright_text {
    font-family: 'Loos_light';
    margin-top: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo .logo-text {
    color: var(--text-light);
    font-family: 'Loos';
    font-size: 58px;
    line-height: 54px;
}

.company-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.footer-title{
    margin-bottom: 10px;
}

.address {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 500px;
}
.partnerships > .container > .section-grid{
    grid-template-columns: 0.5fr 1fr;
}
.footer-logo-text {
        font-size: 58px;
        line-height: 52px;
    }


/* Responsive Design */
@media (max-width: 1440px) {
    .container {
        padding: 0 70px;
    }

    .nav-container {
        padding: 8px 18px;
        max-width: 95vw;
    }

    .hero-content {
        padding: 0 70px;
    }
    .section-text {
        font-size: 14px;
    }
    .section-title {
        font-size: 40px;
    }
    .section-label {
        font-size: 18px;
    }
    .stat-label{
        font-size: 24px;
    }
    .stat-value{
        font-size: 18px;
    }
    .image_caption{
        font-size: 16px;
        padding:22px 28px;
    }
    .map{
        margin-top: 90px;
    }
    .btn{
        padding: 12px 30px;
    }
    .hero-title{
        font-size: 54px;
    }
    .hero-subtitle{
        font-size: 20px;
    }
    .feature-title{
        font-size: 18px;
    }
    .feature-text{
        font-size: 13px;
    }
    .impact-value{
        font-size: 40px;
    }
    .impact-label{
        font-size: 12px;
    }
    .form-group label{
        font-size: 12px;
    }
    .features-grid{
        gap: 20px;
    }
    #fields{
        max-height: 560px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .nav-container {
        padding: 0 40px;
        padding: 8px 18px;
        max-width: 95vw;
    }

    .hero-content {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 42px;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .section-grid.reverse .section-image {
        order: 1;
    }

    .section-grid.reverse .section-content {
        order: 2;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-header {
        flex-direction: column;
    }

    .section-text.large {
        margin-left: 0;
    }
}

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

    .nav-container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero {
        height: auto;
        min-height: 600px;
        padding: 80px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-text {
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .partnerships > .container > .section-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 8px 18px;
        max-width: 95vw;
    }

    .menu-btn {
        padding: 10px 16px;
        font-size: 14px;
        width: 140px;
    }

    .btn-secondary {
        background: white;
        transform: translateY(-2px);
        color: var(--primary-color);
    }

    .hero {
        padding-top: 110px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .sustainable-scale {
        max-height: 2000px;
    }

    .sustainable-scale>.container {
        grid-template-columns: 1fr;
        grid-gap: 50px;
    }

    .map {
        width: 100%;
    }

    .image-placeholder {
        height: 530px;
    }

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

    .approach-grid>.section-text {
        padding-top: 0;
    }

    .green-blueprint>.container>.section-grid {
        grid-template-columns: 1fr;
    }

    #fields {
        height: 200px;
    }

    #windmills {
        height: 200px;
        background-size: cover;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
    .partnerships > .container > .section-grid{
        grid-template-columns: 1fr;
    }

    #helios_logo_footer {
        height: 90px;
    }

    .footer-logo-text {
        height: 90px;
        width: 100%;
        font-size: 30px;
    }

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