/* Base Styles and Variables */
:root {
    --color-primary: #36724C;
    --color-primary-light: #5B9671;
    --color-primary-dark: #285A3B;
    --color-background: #E9F1EA;
    --color-white: #FFFFFF;
    --color-text: #1A1A1A;
    --color-text-light: #4A4A4A;
    --color-border: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --section-spacing: 120px;
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

/* Typography and Spacing Updates */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

h1 {
    font-size: 3.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

section {
    position: relative;
    overflow: hidden;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
   
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #333;
}

/* Navigation Styles */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: 15px;
    position: relative;
    z-index: 1000;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: #2ecc71;
}

/* Dropdown Styles */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    color: var(--color-text-light);
    padding: 0.75rem 1.5rem;
    display: block;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    color: var(--color-primary);
    background-color: rgba(54, 114, 76, 0.05);
    padding-left: 2rem;
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        padding-left: 1.5rem;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.5rem 0;
    }

    .dropdown-menu a:hover,
    .dropdown-menu a.active {
        background-color: transparent;
        padding-left: 0.5rem;
    }
}

/* CTA Button Styles */
.header-cta .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.solid {
    background: #2ecc71;
    color: white;
    border: none;
}

.btn.solid:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 1rem;
    }

    .header-cta {
        margin-left: 1rem;
    }
}

/* Hamburger Icon */
.hamburger-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.hamburger-icon::before {
    top: -8px;
}

.hamburger-icon::after {
    bottom: -8px;
}

.nav-toggle.active .hamburger-icon {
    background: transparent;
}

.nav-toggle.active .hamburger-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Hero Section */
.hero-section {
    padding: 7rem 4rem;
    background-color: var(--color-background);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 0 2rem;
    max-width:100%;
    margin: 0 auto;
    width: 100%;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    width: 1200px;
    margin-bottom: 1rem;
}

.hero-text {
    max-width: 1000px;
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--color-text-light);
    font-weight: 600;
    letter-spacing: -0.03em;
    display: inline;
}

.hero-subtitle {
    margin-top: 2rem;
    text-align: left;
}

.hero-subtitle h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.hero-subtitle p {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin: 0;
    letter-spacing: -0.01em;
}

.video-wrapper {
    display: inline-block;
    vertical-align: middle;
    margin-left: 1rem;
    position: relative;
    top: -0.5rem;
}

.video-thumbnail {
    position: relative;
    border-radius: 38px;
    overflow: hidden;
    width: 120px;
    height: 70px;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-main-image {
    width: 100%;
    aspect-ratio: 21/9;
    border-radius: 38px 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: opacity 0.6s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-primary-dark);
}

.hero-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-primary-dark);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.btn.solid {
    background-color: var(--color-primary);
    color: white;
    border: none;
}

.btn.outline {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    margin-top: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-button.primary:hover {
    background-color: var(--color-primary-dark);
}

.cta-button.secondary:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
}


/* Intro Section */
.intro {
    padding: var(--section-spacing) 0;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Form Section */
.contact-form-section {
    padding: var(--section-spacing) 0;
    background: var(--color-primary);
    color: var(--color-white);
}

.form-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding-right: 2rem;
}

.form-content h2 {
    color: var(--color-white);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.form-content .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color:var(--color-text-light);
}

.form-group select {
    color: var(--color-text-light);
}

.form-group select option {
    color: var(--color-text);
}

.form-group select:required:invalid {
    color: var(--color-text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn.solid {
    background: var(--color-white);
    color: var(--color-primary);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 24px;
    margin-top: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form .btn.solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.form-images {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame {
    position: absolute;
    width: 320px;
    height: 400px;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-frame.top {
    top: 30%;
    left: 0;
    transform: translateY(-70%);
    z-index: 2;
}

.image-frame.bottom {
    bottom: 50%;
    right: 0;
    transform: translateY(70%);
    z-index: 1;
}

@media (max-width: 1024px) {
    .form-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-content {
        padding-right: 0;
    }

    .form-images {
        min-height: 450px;
        margin: 0 auto;
        max-width: 600px;
    }

    .image-frame {
        width: 280px;
        height: 280px;
    }

    .image-frame.top {
        right: 50%;
        transform: translateY(-70%) translateX(80%);
    }

    .image-frame.bottom {
        left: 50%;
        transform: translateY(70%) translateX(-80%);
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-content h2 {
        font-size: 2.5rem;
    }

    .form-images {
        min-height: 400px;
        margin-top: 5rem;
    }

    .image-frame {
        width: 240px;
        height: 300px;
    }

    .image-frame.top {
        transform: translateY(-70%) translateX(-30%);
    }

    .image-frame.bottom {
        transform: translateY(70%) translateX(-70%);
    }
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    text-align: center;
    background:var(--color-background);
    color: white;
}

.final-cta h2 {
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--color-background);
    color: var(--color-light);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 0 0 300px;
}

.footer-brand .footer-logo {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--color-light);
    opacity: 0.8;
    line-height: 1.6;
}

.footer-newsletter {
    flex: 0 0 400px;
}

.footer-newsletter h4 {
    margin-bottom: 1rem;
    color: var(--color-light);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-primary);
}

.newsletter-form input::placeholder {
    color: var(--color-primary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--color-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

.footer-col ul li a {
    color: var(--color-light);
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-light);
    opacity: 0.8;
}

.contact-info li i {
    width: 16px;
    opacity: 0.5;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-light);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal p {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.footer-credit {
    text-align: right;
}

.footer-credit p {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.footer-credit a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--color-primary-light);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-credit {
        text-align: center;
    }
}

/* Sunpipe Benefits Layout */
.sunpipe-benefits h3 {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.sunpipe-benefits .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.8s ease forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-fade-in-delay-1 {
    animation-delay: 0.2s;
}

.hero-fade-in-delay-2 {
    animation-delay: 0.4s;
}

.hero-fade-in-delay-3 {
    animation-delay: 0.6s;
}

.hero-text h1 {
    animation: slideUp 0.8s ease forwards;
}

.video-thumbnail {
    animation: scaleIn 1s ease forwards;
}

.mission-content {
    animation: fadeIn 1s ease forwards;
}

.stats-content {
    animation: slideUp 0.8s ease forwards;
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --container-width: 90%;
    }

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

    .hero-text {
        max-width: 100%;
    }

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

@media (max-width: 768px) {
    .site-header {
        position: relative;
    }

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

    .btn {
        padding: 0.6rem 1.2rem;
    }

    .mission-content .cta-buttons {
        flex-direction: column;
    }

    .stats-content {
        gap: 1.5rem;
    }

    .video-thumbnail {
        margin: 1rem -1rem;
        border-radius: 38px;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

@media (max-width: 1024px) {
    .hero-section {
        padding-top: calc(var(--header-height) + 1rem);
        text-align: center;
    }

    .hero-content {
        gap: 2rem;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-top {
        width: 100%;
        max-width: 800px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .hero-text {
        margin: 0 auto;
        max-width: 100%;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        display: block;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
    }

    .video-wrapper {
        display: block;
        margin: 1.5rem auto;
    }

    .video-thumbnail {
        width: 140px;
        height: 80px;
        margin: 0 auto;
        
    }

    .hero-main-image {
        aspect-ratio: 16/9;
        max-width: 800px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 1rem;
    }

    .hero-content {
        gap: 1.5rem;
        padding: 1rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-subtitle h2 {
        font-size: 1.8rem;
    }

    .hero-subtitle p {
        font-size: 1.1rem;
    }

    .video-thumbnail {
        width: 120px;
        height: 70px;
    }
    .hero-main-image {
        aspect-ratio: 16/9;
        border-radius: 24px;
    }
    .service-details{
        justify-content: center;
    }
     .features-grid,
    .services .features-grid {
        grid-template-columns: repeat(1, 1fr);
        justify-self: center;
    }
    .social-links{
        display: grid;
    }
    .form-content,.form-content-wrapper{
        justify-items: center;
        text-align: center;
    }
    .footer-top,.footer-bottom{
        text-align: center;
        justify-items: center;
        display: grid;
    }
    .footer-links{
        display: grid;
        justify-items: center;
        text-align: center;
    }
    .footer-newsletter{
        justify-self: center;
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.leaf-loader {
    font-size: 40px;
    color: #4CAF50;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* About Page Styles */
.about-hero {
    background-color: var(--color-background);
    padding-top: calc(var(--header-height) + 4rem);
    text-align: center;
}

.about-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 24px;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.about-card {
    background: linear-gradient(145deg, var(--color-white), var(--color-background));
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(54, 114, 76, 0.1);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(54, 114, 76, 0.15);
}

.about-card h3 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.about-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.about-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.values-list {
    margin-top: 1.5rem;
    list-style: none;
    text-align: center;
    padding: 0;
}

.values-list li {
    position: relative;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Split Layout Styles */
.split-layout {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(54, 114, 76, 0.15);
    aspect-ratio: 4/3;
    margin: 0 auto;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-hero-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(54, 114, 76, 0.2), transparent);
    pointer-events: none;
}
.about-image-wrapper{
    height: 500px;
    width: 500px;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 2rem;
    }

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

    .about-image-wrapper {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .about-card {
        max-width: 100%;
    }

    .about-intro,
    .about-description {
        padding: 0 1rem;
    }

    .about-image-wrapper {
        width: 90%;
        margin: 0 auto;
    }

    .split-layout {
        padding: 0 1rem;
    }
}

/* Service Page Styles */
.service-hero {
    padding-top: calc(var(--header-height) + 4rem);
    background: var(--color-background);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.service-hero-content {
    padding: 4rem 0;
}

.service-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-hero-text h1 {
    margin-bottom: 1.5rem;
}

.service-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.service-hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details {
    padding: var(--section-spacing) 0;
    background: var(--color-white);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.benefits-list {
    margin-top: 3rem;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.benefits-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: var(--color-background);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .service-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-features {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about-section {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/about.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.9;
    z-index: 1;
}

.about-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(54, 114, 76, 0.92), rgba(40, 90, 59, 0.92));
}

.about-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.about-content h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
}

.about-content .btn {
    margin-top: 1rem;
    position: relative;
}

.about-content .btn.outline {
    color: var(--color-white);
    border-color: var(--color-white);
}

.about-content .btn.outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}
.coming-soon{
    padding-top: 6rem;
}
.coming-soon h1{
    color: var(--color-primary-light);
    font-weight: 400;
}
@media (max-width: 768px) {
    .about-section {
        min-height: 500px;
    }
    
    .about-background {
        background-attachment: scroll;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

/* Mobile Navigation Styles */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: 15px;
    position: relative;
    z-index: 1000;
}

.hamburger-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.hamburger-icon::before {
    top: -8px;
}

.hamburger-icon::after {
    bottom: -8px;
}

.nav-toggle.active .hamburger-icon {
    background: transparent;
}

.nav-toggle.active .hamburger-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

@media (max-width: 1024px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
        z-index: 999;
    }

    .nav-links.active {
        display: block;
    }

    .nav-links li {
        display: block;
        margin: 10px 20px;
    }

    .nav-links a {
        display: block;
        padding: 10px 0;
    }

    .has-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
    }
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(rgba(54, 114, 76, 0.92), rgba(40, 90, 59, 0.92)), url('../assets/blog/blog-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: calc(var(--header-height) + 4rem) 0 4rem;
    color: var(--color-white);
    text-align: center;
    position: relative;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.blog-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--color-white);
}

.blog-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.blog-posts {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-post {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.post-image {
    position: relative;
    height: 250px;
}

.blog-post.featured .post-image {
    height: 100%;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.post-content {
    padding: 30px;
}

.blog-post.featured .post-content {
    padding: 40px;
}

.post-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.post-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.post-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.post-excerpt {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pagination a, .pagination span {
    padding: 8px 15px;
    border-radius: 5px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: #eee;
}

.pagination a.active {
    background: var(--primary-color);
    color: #fff;
}

.newsletter-section {
    background: linear-gradient(rgba(54, 114, 76, 0.92), rgba(40, 90, 59, 0.92)), url('../assets/blog/newsletter-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: var(--color-white);
    text-align: center;
    position: relative;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.newsletter-content p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border-radius: 24px;
    font-size: 1rem;
    background: transparent;
    color: var(--color-primary);
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--color-primary);
}

.newsletter-form button {
    padding: 15px 30px;
    white-space: nowrap;
    background: var(--color-white);
    color: var(--color-primary);
    border: none;
    border-radius: 24px;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .blog-post.featured {
        grid-template-columns: 1fr;
    }
    
    .blog-post.featured .post-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: calc(var(--header-height) + 2rem) 0 2rem;
    }
    
    .about-hero {
        padding-top: 1rem;
    }
    
    .service-hero {
       padding: 1rem;
    }
    
    .contact-hero {
        padding: calc(var(--header-height) + 2rem) 0 2rem;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: calc(var(--header-height) + 4rem) 0 4rem;
    background: var(--color-background);
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: var(--color-text);
}

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

.contact-form-wrapper {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-info-card p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.contact-info-card a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--color-primary);
}

.chat-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--color-background);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.faq-header p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
}

.faq-item.active h3::after {
    content: '-';
}

.faq-item p {
    color: var(--color-text-light);
    margin: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active p {
    height: auto;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-form-wrapper {
        background: var(--color-background);
        box-shadow: none;
        padding: 2rem 1rem;
    }

    .contact-info-wrapper {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        border-radius: 28px;
        padding: 1rem;
    }
}

/* Contact Form Styles */
.form-success-message {
    background: var(--color-primary);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
}

.form-success-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-success-message h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.form-success-message p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.error-message {
    color: #ff3b30;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff3b30;
}

.form-group input.error + .error-message,
.form-group select.error + .error-message,
.form-group textarea.error + .error-message {
    display: block;
}

.button-loader {
    margin-left: 0.5rem;
}

/* Contact Info Card Icons */
.contact-info-card h3 i {
    margin-right: 0.5rem;
    color: var(--color-primary);
}

.chat-btn i {
    margin-right: 0.5rem;
}

/* FAQ Accessibility */
.faq-item {
    outline: none;
}

.faq-item:focus {
    box-shadow: 0 0 0 3px rgba(54, 114, 76, 0.3);
}

.faq-item[aria-expanded="true"] h3::after {
    content: '-';
}

.faq-item[aria-expanded="true"] p {
    height: auto;
    margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-success-message {
        padding: 1.5rem;
    }

    .form-success-message i {
        font-size: 2.5rem;
    }
}

/* Service Cards Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.feature {
    background: transparent;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.feature h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.feature-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin: 2rem auto 0;
        justify-items: center;
        padding: 0 1rem;
    }

    .feature {
        padding: 1.5rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature h3,
    .feature p {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .services h2,
    .services .section-subtitle {
        text-align: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Services Section */
.services {
    background-color: var(--color-background);
    padding: 5rem 0;
    text-align: center;
}

.feature {
    background: transparent;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Media queries */
@media (max-width: 768px) {
    .services {
        background-color: transparent;
        padding: 2rem 0;
    }

    .feature {
        background: var(--color-background);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin: 2rem auto 0;
        justify-items: center;
        padding: 0 1rem;
    }
}

.service-hero-image .video-wrapper {
    position: relative;
    width: 854px;
    height: 480px;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
}

.service-hero-image .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
}

/* Specific styles for renewable energy page */
.renewable-energy .service-hero {
    padding-bottom: 2rem;
}

.renewable-energy .service-hero .split-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.renewable-energy .service-hero .service-hero-image {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.renewable-energy .service-hero .service-hero-text {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    justify-items: center;
}

.renewable-energy .service-hero .service-features {
    justify-content: center;
    margin: 1rem auto 0;
    max-width: 800px;
}

/* HIMAWARI Section */
.himawari-section,
.esg-section {
    padding: 6rem 0;
    background: var(--color-background);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text);
    opacity: 0.8;
}

.features-grid,
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card,
.solution-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover,
.solution-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.feature-card h3,
.solution-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.feature-card p,
.solution-card p {
    color: var(--color-text);
    line-height: 1.6;
}

.applications-grid {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.applications-grid h3 {
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.application-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
}

.application-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text);
}

.application-list li i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

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

    .applications-grid {
        padding: 2rem;
    }

    .application-list {
        grid-template-columns: 1fr;
    }
}

/* Responsive styles for renewable energy page */
@media (max-width: 1024px) {
    .renewable-energy .service-hero {
        padding: 4rem 1rem 2rem;
    }

    .renewable-energy .service-hero .split-layout {
        gap: 2rem;
    }

    .renewable-energy .service-hero .service-hero-text {
        padding: 0 1rem;
    }

    .renewable-energy .service-hero .video-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .renewable-energy .service-hero .service-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .himawari-section,
    .esg-section {
        padding: 4rem 1rem;
    }

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

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

@media (max-width: 768px) {
    .renewable-energy .service-hero {
        padding: 2rem 1rem;
        min-height: auto;
    }

    /* HIMAWARI and ESG sections mobile scroll */
    .himawari-section .features-grid,
    .esg-section .solutions-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 1rem;
        padding: 0.5rem 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        margin-bottom: 2rem;
    }

    .himawari-section .features-grid::-webkit-scrollbar,
    .esg-section .solutions-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .himawari-section .feature-card,
    .esg-section .solution-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        margin-bottom: 0.5rem;
        height: auto;
        min-height: 300px;
        display: flex;
        flex-direction: column;
    }

    .esg-section .solution-card {
        min-height: 250px;
    }

    .card-icon {
        margin-bottom: 1rem;
    }

    .feature-card h3,
    .solution-card h3 {
        margin-bottom: 0.75rem;
    }

    /* Add scroll indicator */
    .features-grid::after,
    .solutions-grid::after {
        content: '';
        padding-right: 1rem;
    }

    .renewable-energy .service-hero {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .renewable-energy .service-hero h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .renewable-energy .service-hero .service-intro {
        font-size: 1rem;
        line-height: 1.6;
    }

    .renewable-energy .service-hero .service-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .renewable-energy .service-hero .feature-item {
        justify-content: center;
    }

    .renewable-energy .service-hero .video-wrapper {
        border-radius: 12px;
    }

    .himawari-section,
    .esg-section {
        padding: 3rem 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .features-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card,
    .solution-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .card-icon i {
        font-size: 1.2rem;
    }

    .feature-card h3,
    .solution-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p,
    .solution-card p {
        font-size: 0.95rem;
    }

    .applications-grid {
        padding: 1.5rem;
    }

    .applications-grid h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .application-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .application-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .renewable-energy .service-hero {
        padding: 60px 0;
    }
    
    .renewable-energy .service-hero h1 {
        font-size: 2rem;
    }
    
    .renewable-energy .service-hero .service-label {
        font-size: 0.9rem;
    }
    
    .feature-card,
    .solution-card {
        padding: 1.5rem;
    }
    
    .applications-grid {
        padding: 1.5rem;
    }
}

/* Logo Slider Section */
.logo-slider {
    padding: 60px 0;
    background-color: var(--color-white);
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.logo-slider .container {
    overflow: hidden;
    position: relative;
    padding: 0;
    max-width: 100%;
}

.logo-slider h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-text);
    font-size: 2rem;
    padding: 0 2rem;
}

.logo-track {
    display: flex;
    animation: slideLeft 15s linear infinite;
    width: max-content;
}

.logo-slide {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.logo-slide:hover {
    transform: translateY(-5px);
}

.logo-slide img {
    max-width: 120px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-slide:hover img {
    filter: grayscale(0%);
}

.logo-slide span {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 500;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .logo-slider {
        padding: 40px 0;
    }

    .logo-slider h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .logo-slide {
        flex: 0 0 160px;
        padding: 15px;
    }

    .logo-slide img {
        max-width: 100px;
        height: 50px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


