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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #011585;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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


/* New Masthead (replaces old hero) */
.masthead { position: relative; color: #fff; overflow: hidden; padding: 0 !important; min-height: 70vh; }
.masthead .container { position: relative; z-index: 3; padding-top: 220px; padding-bottom: 100px; }
.masthead__content { max-width: 760px; }
.masthead__bg { position: absolute; top: -120px; bottom: -120px; left: 50%; width: 100vw; transform: translate(-50%, -20px); background: url('/assets/images/hero.jpg'); background-size: cover; background-position: center top; background-repeat: no-repeat; z-index: 0; will-change: transform; }
.masthead__gradient { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(1,21,133,0.6) 0%, rgba(0,26,92,0.1) 100%); z-index: 1; }
.masthead__svg { position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>'); background-repeat: repeat; background-size: auto; background-position: left top; opacity: .8; z-index: 2; }
.green-energy-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: url('/assets/images/green-energy.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}



/* Rebuilt Hero (full-bleed bg + boxed content) */


.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.ge-hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: #011585;
    color: white;
}

.btn-primary:hover {
    background: #001a5c;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #011585;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 16px;
    color: #011585;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

/* About Section */
.about {
    background: #f8f9fa;
}

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

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
}



.about-image img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
}

/* Experience Section (mirrors About) */
.experience {
    background: #f8f9fa;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-text h2 {
    margin-bottom: 20px;
}

.experience-text p {
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
}

.experience-image img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e6e6e6;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #011585;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 30px;
    color: white;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

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

/* removed unused Process Section */

/* removed unused Progress Section */

/* Combined Process + Progress wrapper */
.progress-wrap {
    position: relative;
    color: white;
    background: none;
    overflow: hidden;
}

/* Center the green energy hero content vertically and increase height */
.progress-wrap .container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: static; /* allow background to position relative to .progress-wrap */
    overflow: visible; /* prevent clipping of full-width background */
}

.progress-text {
    position: relative;
    z-index: 2;
    color: #fff;
}

.progress-wrap .hero-overlay { z-index: 1; }

.progress-text { max-width: 760px; }

/* removed unused CTA Section */

/* removed unused Why Choose Us */

/* removed unused Stats Section */

/* removed unused Calculator Section */

/* removed unused Blog Section */

/* Contact Section */
.contact {
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item h4 {
    font-size: 24px;
    font-weight: 700;
    color: #011585;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-detail i {
    width: 50px;
    height: 50px;
    background: #011585;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-detail h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-detail p {
    color: #666;
    font-size: 14px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #011585;
}

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

/* removed unused Footer styles (footer handled separately) */

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
}

.fab-button {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: #011585;
    color: white;
    border: 1px solid #e6e6e6;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.fab-button:hover {
    background: #001a5c;
    transform: scale(1.1);
}

.fab-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 30px;
    border: 1px solid #e6e6e6;
    padding: 20px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    border-radius: 20px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.fab-item:last-child {
    margin-bottom: 0;
}

.fab-item:hover {
    background: #f8f9fa;
    color: #011585;
    transform: translateX(5px);
}

.fab-item i {
    width: 20px;
    text-align: center;
    color: #011585;
}

.fab-item span {
    font-weight: 500;
    font-size: 14px;
}

.services-btn {
    margin-top: 20px;
}

/* Clients Carousel */
.clients {
    background: #f8f9fa;
}

.clients-carousel {
    overflow: hidden;
    position: relative;
}

.clients-carousel .carousel-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    will-change: transform;
}

.client-logo img {
    max-width: 240px;
    max-height: 80px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.client-logo:hover img {
    opacity: 1;
    filter: grayscale(0%);
}


/* Testimonials Section */
.testimonials {
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 32px;
}

.testimonial {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial-logo {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #e6e6e6;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.testimonial-logo img {
    max-width: 180px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.testimonial:hover .testimonial-logo img {
    opacity: 1;
    filter: grayscale(0%);
}

.testimonial-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    color: #333;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: #011585;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-info strong {
    display: block;
    color: #333;
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author-info div {
    font-size: 14px;
    color: #666;
}

/* Testimonial Modal */
.testimonial-read-more {
    margin-top: 16px;
    padding: 8px 16px;
    background: #011585;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.testimonial-read-more:hover {
    background: #001a5c;
}

.testimonial-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.testimonial-modal-content {
    background: white;
    border-radius: 10px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid #e6e6e6;
}

.testimonial-modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e6e6e6;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-modal-avatar {
    width: 80px;
    height: 80px;
    background: #011585;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-modal-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-modal-info p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.testimonial-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.testimonial-modal-close:hover {
    color: #011585;
}

.testimonial-modal-body {
    padding: 30px;
}

.testimonial-modal-company {
    margin-bottom: 24px;
}

.testimonial-modal-company h4 {
    font-size: 18px;
    font-weight: 600;
    color: #011585;
    margin-bottom: 12px;
}

.testimonial-modal-company p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.testimonial-modal-quote {
    background: #f8f9fa;
    border-left: 4px solid #011585;
    padding: 20px;
    border-radius: 5px;
    margin-top: 24px;
}

.testimonial-modal-quote p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* Case Studies Page */
.case-studies-hero {
    background: #f8f9fa;
    padding: 200px 0 60px;
    border-bottom: 1px solid #e6e6e6;
    margin-top: 0;
}

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

.case-studies-header .section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #011585;
    font-weight: 600;
    margin-bottom: 12px;
}

.case-studies-header .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
}

.case-studies-header .hero-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.case-studies-content {
    padding: 60px 0;
    background: #fff;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.case-study-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
}

.case-study-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #e6e6e6;
    background: #f8f9fa;
}

.case-study-title {
    font-size: 28px;
    font-weight: 700;
    color: #011585;
    margin-bottom: 8px;
}

.case-study-location {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.case-study-body {
    padding: 30px;
}

.case-study-intro {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 30px;
}

.case-study-challenge,
.case-study-solution,
.case-study-result {
    margin-bottom: 30px;
}

.case-study-challenge h3,
.case-study-solution h3,
.case-study-result h3 {
    font-size: 20px;
    font-weight: 600;
    color: #011585;
    margin-bottom: 12px;
}

.case-study-challenge p,
.case-study-solution p,
.case-study-result p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
}

.case-study-result {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #011585;
}

.case-studies-cta {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e6e6e6;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Complaints Page */
.complaints-hero {
    background: #f8f9fa;
    padding: 200px 0 60px;
    border-bottom: 1px solid #e6e6e6;
    margin-top: 0;
}

.complaints-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.complaints-header .section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #011585;
    font-weight: 600;
    margin-bottom: 12px;
}

.complaints-header .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
}

.complaints-header .hero-description {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.complaints-content {
    padding: 80px 0;
    background: #fff;
}

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

.complaints-intro p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

.complaints-section {
    max-width: 900px;
    margin: 0 auto 50px;
}

.complaints-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #011585;
    margin-bottom: 20px;
}

.complaints-section > p {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 40px;
    margin-top: 30px;
}

.contact-card-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
}

.contact-card-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #011585;
    margin-bottom: 8px;
}

.contact-card-role {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    margin: 0;
}

.contact-card-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-item i {
    font-size: 20px;
    color: #011585;
    margin-top: 2px;
    min-width: 24px;
}

.contact-detail-item strong {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 4px;
}

.contact-detail-item a {
    color: #011585;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-detail-item a:hover {
    color: #001a5c;
    text-decoration: underline;
}

.contact-detail-item div {
    flex: 1;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.contact-card-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

.complaints-cta {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e6e6e6;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-logo {
        min-height: 80px;
        padding: 20px 20px 12px;
    }
    
    .testimonial-logo img {
        max-width: 140px;
        max-height: 50px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .testimonial-modal-content {
        max-width: 100%;
        margin: 10px;
    }
    
    .testimonial-modal-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .testimonial-modal-body {
        padding: 20px;
    }
    
    .testimonial-modal-close {
        top: 10px;
        right: 10px;
    }
    
    .case-studies-hero {
        padding: 180px 0 40px;
    }
    
    .case-studies-header .section-title {
        font-size: 32px;
    }
    
    .case-studies-header .hero-description {
        font-size: 16px;
    }
    
    .case-studies-content {
        padding: 40px 0;
    }
    
    .case-studies-grid {
        gap: 30px;
    }
    
    .case-study-header {
        padding: 24px 24px 16px;
    }
    
    .case-study-title {
        font-size: 24px;
    }
    
    .case-study-body {
        padding: 24px;
    }
    
    .case-study-intro {
        font-size: 16px;
    }
    
    .case-study-challenge h3,
    .case-study-solution h3,
    .case-study-result h3 {
        font-size: 18px;
    }
    
    .case-studies-cta {
        padding: 40px 0;
    }
    
    .cta-content .section-title {
        font-size: 28px;
    }
    
    .complaints-hero {
        padding: 180px 0 40px;
    }
    
    .complaints-header .section-title {
        font-size: 32px;
    }
    
    .complaints-header .hero-description {
        font-size: 16px;
    }
    
    .complaints-content {
        padding: 40px 0;
    }
    
    .complaints-intro {
        margin-bottom: 40px;
    }
    
    .complaints-intro p {
        font-size: 16px;
    }
    
    .complaints-section {
        margin-bottom: 40px;
    }
    
    .complaints-section-title {
        font-size: 26px;
    }
    
    .complaints-section > p {
        font-size: 16px;
    }
    
    .contact-card {
        padding: 30px 24px;
    }
    
    .contact-card-header h3 {
        font-size: 20px;
    }
    
    .contact-detail-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-detail-item i {
        margin-top: 0;
    }
    
    .complaints-cta {
        padding: 40px 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .service-card,
    .feature-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
}
