.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--clr-white);
    z-index: 1000;
    box-shadow: 0px 12px 16px -4px #00000014;
    padding-top: 12px;
    padding-bottom: 12px;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img,.logo a img  {
    max-height: 45px;
    width: auto;
    display: block;
}


/* Main Navigation */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--clr-black);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4FC151;
}

/* Header CTA & Phone Section */
.header-cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-phone {
    text-decoration: none;
    color: var(--clr-black);
    white-space: nowrap;
}

.header-cta .primary-btn {
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hamburger-icon {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #4FC151;
    position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #4FC151;
    left: 0;
}

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

.hamburger-icon::after {
    top: 6px;
}

/* ==========================================================================
   HERO SECTION STYLES
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    /* Standard relative path: images agar parent ya same folder me ho */
    background-image: url('../images/hero_banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero1 {
    background-image: url('../images/8.png');
}

.hero2 {
    background-image: url('../images/6.png');
}

.hero3 {
    background-image: url('../images/6.png');
}

.hero4 {
    background-image: url('../images/6.png');
}

.hero5 {
    background-image: url('../images/6.png');
}

.hero6 {
    background-image: url('../images/6.png');
}

/* Background Overlay for readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero .page-width {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 52%;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 22px;
    margin-bottom: 12px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: #4FC151;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 193, 81, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(79, 193, 81, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(79, 193, 81, 0);
    }
}

span.tag-text {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 1.2;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-description {
    color: #E0E0E0;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.hero-buttons .button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-align: center;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: var(--clr-white);
    color: var(--clr-black);
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
}

/* ==========================================================================
   STATS SECTION STYLES
   ========================================================================== */
.stats-section {
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.stat-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}
.stat-item h3 {
    color: var(--clr-white);
}
.stat-item p {
    color: #D5D5D599;
}
/* ==========================================================================
   WHY CHOOSE US SECTION STYLES
   ========================================================================== */
.why-choose-us {
    width: 100%;
}

/* Header Section */
.section-header {
    max-width: 100%;
    margin-bottom: 48px;
}

.section-header .capsule {
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header .verdana-h2 {
    margin-bottom: 16px;
    color: var(--clr-black);
}

.section-header .header-desc {
    color: #000;
    opacity: 0.7;
}

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

.feature-card {
    background: var(--clr-white);
    border: 1px solid #CECECEB2;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-left: 4px solid #4FC151;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.06);
}


.card-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

/* Card Heading & Description */
.feature-card .verdana-h3 {
    color: var(--clr-black);
    margin-bottom: 12px;
}

.feature-card .arial-h4 {
    color: #696969;
    margin-top: 8px;
}

/* ==========================================================================
   SERVICES SECTION STYLES
   ========================================================================== */
.services-header {
    max-width: 680px;
    margin-bottom: 48px;
}

.services-header .capsule {
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 16px;
    font-weight: 700;
}

.services-header .verdana-h2 {
    margin-bottom: 16px;
    color: var(--clr-black);
}

.services-header .header-desc {
    color: #555555;
}

/* 3-Column Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Service Base Card Setup */
.service-card {
    position: relative;
    height: 448px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

/* Individual Background Images Path */
.service-card.card-1 {
    background-image: url('../imagess/Desktop/domestic_solar.png');
}

.service-card.card-2 {
    background-image: url('../images/our-2.png');
}

.service-card.card-3 {
    background-image: url('../images/our-3.png');
}

/* Dark Overlay for Text Visibility */
.card-overlay {
    position: absolute;
    inset: 0;
       background: linear-gradient(180deg, rgba(4, 24, 19, 0) 51.52%, rgba(4, 24, 19, 0.384) 75.29%, rgba(4, 24, 19, 0.8) 95.34%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--clr-white);
}

.card-top .white-capsule {
    display: inline-block;
    text-transform: uppercase;
}

/* Card Bottom Text Content */
.card-bottom .verdana-h3 {
    color: var(--clr-white);
    margin-bottom: 10px;
}

.card-bottom .arial-h3 {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

/* Arrow Link Styling */
.card-link {
    color: var(--clr-white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 12px;
}

/* ==========================================================================
   WHY SOLAR SECTION STYLES
   ========================================================================== */
.why-solar-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

/* Left Image Styling */
.why-solar-image {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.why-solar-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Aspect ratio drop kiye bina pure div me fit karega */
    display: block;
    border-radius: 24px
}

/* Right Header Styling */
.why-solar-header {
    margin-bottom: 32px;
}

.why-solar-header .capsule {
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 16px;
    font-weight: 700;
}

.why-solar-header .verdana-h2 {
    color: var(--clr-black);
    margin-bottom: 16px;
}

.why-solar-header .header-desc {
    color: #555555;
}

/* List Items Setup */
.reasons-list {
    display: flex;
    flex-direction: column;
}
.reason-item.active {
    opacity: 1;
}
.reason-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    padding-top: 0;
    opacity: 40%;
}

/* Number 01, 02 (40px, Green Color, Arial Bold) */
.reason-number {
    font-family: 'Arial-bold';
    font-size: 40px;
    line-height: 1;
    color: #4FC151;
    min-width: 50px;
}

.reason-body {
    flex: 1;
    border-bottom: 1px solid #4FC151;
    padding-bottom: 16px;
}

section.why-solar-section.second .reason-body .verdana-h4{
    font-family: 'Verdana-reg';
        font-weight: 400;

}
section.why-solar-section.second .reason-body{
        border-bottom: 1px solid #E4E4E4;
}
/* Default Muted/Unselected Heading Style */
.reason-item .verdana-h3 {
    color: #9CA3AF;
    /* Dim Gray for collapsed items */
    font-size: 20px;
}

/* Expanded/Active State for 01 Item */
.reason-item.active .verdana-h3 {
    color: var(--clr-black);
    /* Dark Black for active title */
    margin-bottom: 8px;
}

.reason-item.active .arial-h3 {
    color: #555555;
}

/* ==========================================================================
   HOW IT WORKS SECTION STYLES
   ========================================================================== */

/* Center Header Setup */
.how-it-works-header {
    text-align: center;
    max-width: 802px;
    margin: 0 auto 64px auto;
}

.how-it-works-header .capsule {
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.how-it-works-header .verdana-h2 {
    color: var(--clr-black);
    margin-bottom: 16px;
    max-width: 802px;
}

.how-it-works-header .header-desc {
    color: #666666;
    max-width: 680px;
    margin: 0 auto;
}

/* Timeline Base Container */
.steps-container {
    position: relative;
    width: 100%;
}

/* Connecting Light Green Line */
.timeline-line {
    position: absolute;
    top: 22px;
    /* Centers with 44px height circles */
    left: 4%;
    right: 4%;
    height: 1.5px;
    background-color: #B2E3B3;
    z-index: 1;
}

/* 6 Column Layout */
.steps-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

/* Step Item Setup */
.step-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Numbered Black Circle */
.step-circle {
    width: 44px;
    height: 44px;
    background-color: var(--clr-black);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial-bold';
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 0 0 6px #F3F5F2;
    /* Matches color-schema2 background */
}

/* Titles and Paragraphs */
.step-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 8px;
}

.step-title {
    color: var(--clr-black);
    font-size: 16px;
    /* Specific sizing for step titles */
    font-weight: 700;
    line-height: 130%;
}

.step-desc {
    font-family: 'Arial-reg';
    font-size: 13px;
    /* 13px required content font */
    line-height: 140%;
    color: #777777;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.projects-header .capsule {
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 16px;
    font-weight: 700;
}

.projects-bento-grid {
    display: grid;
    grid-template-columns: 28% 39% 29%;
    grid-template-rows: 456px 305px;
    gap: 24px;
}

.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.025);
}

.project-card.item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.project-card.item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.project-card.item-3 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    height: 305px;
}

.project-card.item-4 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.project-card.item-5 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    width: calc(50% - 10px);
    justify-self: start;
}

.project-card.item-6 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    width: calc(50% - 10px);
    /* Floats do not position CSS Grid items; align this card to the
       right so it fills the second half of the middle-bottom cell. */
    justify-self: end;
}

.project-card.item-7 {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    height: 456px;
    margin-top: 325px;
}

/* Caption for Bottom-Left Card */
.project-card .card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
    color: var(--clr-white);
}

.project-card .card-caption .verdana-h5 {
    color: var(--clr-white);
    margin-bottom: 2px;
}

.project-card .card-caption .arial-h4 {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   COVERAGE MAP SECTION STYLES
   ========================================================================== */

.coverage-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

/* Left Side Content */
.coverage-content {
    max-width:50%;
    width:100%;
}

.coverage-content .capsule {
    display: inline-block;
    margin-bottom: 16px;
}

.coverage-content .verdana-h2 {
    color: var(--clr-white);
    margin-bottom: 20px;
}

.coverage-content .desc-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

/* Map Color Dot Legend */
.coverage-legend {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-white);
    font-weight: 700;
        letter-spacing: 1px;

}

.legend-item .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.legend-item .dot.green {
    background-color: #4FC151;
}

.legend-item .dot.blue {
    background-color: #2F80ED;
}

.legend-item .dot.orange {
    background-color: #F2994A;
}
.coverage-map-wrapper {
    width:100%;
    max-width: 50%;
    height: 536px;
    background-color: var(--clr-white);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.insta-card img {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    object-fit: cover;
}

.insta-card {
    margin: 0 8px;
}

.insta-feed-grid {
    display: flex;
    gap: 20px;
}

/* ==========================================================================
   TESTIMONIALS / CLIENT STORIES SECTION STYLES
   ========================================================================== */

/* Header Setup */
.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.testimonials-header .capsule {
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.testimonials-header .verdana-h2 {
    color: var(--clr-black);
    margin-bottom: 12px;
}

.testimonials-header .header-subheading {
    font-weight: 700;
    opacity: 70%;
}

/* 3 Column Cards Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

/* Testimonial Card */
.testimonial-card {
    background-color: var(--clr-white);
    border: 1px solid #EAEAEA;
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 4px 6px -2px #00000008;

box-shadow: 0px 12px 16px -4px #00000014;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
}

/* Star Rating */
.star-rating {
    color: #FFC107;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Testimonial Quote Text */
.testimonial-text {
    color: #333333;
    margin-bottom: 32px;
    flex-grow: 1;
}

/* Profile Section */
.profile-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Custom Profile Avatar Box (56px x 56px, #F0EDE2 BG) */
.profile-avatar {
    width: 56px;
    height: 56px;
    background-color: #F0EDE2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.profile-avatar img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.profile-name {
    color: var(--clr-black);
}

.profile-location {
    color: #777777;
}

/* Navigation Buttons */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #E0E0E0;
    background-color: var(--clr-white);
    color: var(--clr-black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    border-color: var(--clr-black);
    background-color: var(--clr-black);
    color: var(--clr-white);
}
.why-solar-section.company-exp .reason-item{
    opacity: 1;
}
/* ==========================================================================
   FOOTER SECTION STYLES
   ========================================================================== */

/* Main Footer Grid Layout */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
}

/* Column 1: Newsletter & Branding */
.footer-brand-col {
    max-width: 500px;
}

.footer-logo img {
    max-width: 160px;
    height: auto;
    margin-bottom: 24px;
    display: block;
}

/* Footer Subscription Title (Verdana-bold 20px / 130% from Figma) */
.footer-title {
    font-family: 'Verdana-bold';
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
    color: var(--clr-white);
    margin-bottom: 16px;
}

/* Email Form Box */
.newsletter-form {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.email-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--clr-white);
    outline: none;
    transition: border-color 0.2s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.email-input:focus {
    border-color: #4FC151;
}

.subscribe-btn {
    background: var(--clr-white);
    color: #4FC151;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-family: 'Arial-bold';
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: #4FC151;
    color: var(--clr-white);
}

.terms-text {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.terms-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

/* Social Media Icons */
.social-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-links a {
    color: var(--clr-white);
    font-size: 18px;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: #4FC151;
}

/* Columns 2, 3, 4 Common Styles */
.col-heading {
    color: var(--clr-white);
    margin-bottom: 20px;
}

.contact-heading {
    margin-top: 28px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--clr-white);
}

.address-text {
    color: rgba(255, 255, 255, 0.8);
}

.underline-link {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.legal-links a {
    color: var(--clr-white);
}


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

.faq-header .capsule {
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.faq-header .verdana-h2 {
    color: #000000;
    margin-bottom: 24px;
}

.faq-subheading {
    color: #666666;
}


.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* FAQ Box (Exact 32px 32px Padding & Border Styling) */
.faq-card {
    border: 1px solid #4FC151;
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-grid {
    column-gap: 64px;
}

.faq-card:hover {
    box-shadow: 0px 4px 16px rgba(79, 193, 81, 0.15);
    transform: translateY(-2px);
}

.faq-title {
    color: #000000;
    margin: 0;
    flex: 1;
    padding-right: 16px;
}

.plus-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plus-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}


.logos-section {
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
}

.logos-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.logos-wrapper img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: transform 0.2s ease;
}

.logos-wrapper img:hover {
    transform: scale(1.05);
}


.cta-banner-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
        url('../imagess/Desktop/CTA.png') no-repeat center center / cover;
    text-align: center;
    overflow: hidden;
}

.cta-content {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-content .capsule {
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 24px;
}

.cta-heading {
    color: var(--clr-white);
    margin-bottom: 20px;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.social-links a img {
    width: 24px;
    height: 24px;
}
/* rcss */
.body__inner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    justify-content: center;
    margin-inline: auto;
}

.outline__text {
    font-family: sans-serif;
    -webkit-text-stroke: 1px black;
    -webkit-text-fill-color: white;
}

.marquee {
    width: 100%;
    pointer-events: none;
    overflow: hidden;
    padding: 18px 0;
}

.marquee__inner-wrap {
    height: 100%;
    width: 100%;
}

.marquee span {
    text-align: center;
    color: #fff;
    white-space: nowrap;
    padding: 1vh 1vw 0;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0%;
    vertical-align: middle;
    font-family: 'Verdana-reg';
}

.marquee__img {
    width: 10px;
    height: 10px;
    margin: 0 20px;
    border-radius: 100rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #FFFFFF4D;
}

.marquee__inner {
    height: 100%;
    width: fit-content;
    align-items: center;
    display: flex;
    position: relative;
    animation: marquee 50s linear infinite;
    will-change: transform;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

section.Domestic-desktop-why-choose .section-header {
    margin-bottom: 0;
}

.Main-container {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}

.tagss span {
    font-family: var(--body-font);
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0%;
    font-weight: bold;
    background: #4FC1511F;
    padding: 7px 18px;
    border-radius: 100px;
    color: #000000B2;
}

.tagss {
    display: flex;
    gap: 10px;
    padding-top: 24px;
}

.specification-list .verdana-h4 {
    font-family: 'Arial-bold';
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
}

.specification-body {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 13px;
}

.why-solar-content button.primary-btn {
    display: flex;
    gap: 13px;
}

.specification-list {
    padding-bottom: 20px;
}

.reverse-section .why-solar-image {
    order: 2;
}

section.why-solar-section {
    position: relative;
}

.why-solar-content {
    z-index: 2;
}

img.Position-image {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.reverse-section img.Position-image {
    left: 0;
}

section.why-choose-us.tx-center .section-header {
    max-width: 75%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 48px;
}

.tagss {
    flex-wrap: wrap;
}

.features-grid-2 {
    display: grid;
    grid-template-columns: calc(50% - 10px) calc(50% - 10px);
    padding-top: 80px;
    gap: 20px;
}

.Commercial_Solar .Main-container {
    align-items: start;
}

.Commercial_Solar .Right_content,
.Commercial_Solar h2.verdana-h2 {
    padding-top: 40px;
}

.services-header-Commercial {
    margin-bottom: 48px;
}

.Main_flex_h {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
}

.services-header-Commercial span.capsule.arial-h4 {
    border-radius: 22px;
}

.commercial_sec h3.verdana-h3 {
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    margin-bottom: 8px;
}

.commercial_sec .arial-h3 {
    font-size: 14px;
    margin-bottom: 0px;
}
.Commercial_Solar .feature-card {
    flex-direction: unset;
    gap: 12px;
}

.Domestic h2.verdana-h2,
section.Commercial h2.verdana-h2 {
    font-size: 40px;
    line-height: 110.00000000000001%;
}

.desktop {
    display: flex;
}

.mobile {
    display: none;
}

.faq-title {
    font-weight: 700;
}

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

section.developer-services .card-icon svg,
section.developer-services .card-icon {
    width: 44px;
    height: 44px;
}

section.developer-services .verdana-h5 {
    font-size: 20px;
}

section.developer-services .arial-h4 {
    font-size: 16px;
}

.Grid-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    row-gap: 60px;
}

.Grid-posts img {
    width: 100%;
}

.location-blogs {
    display: flex;
    gap: 5px;
    align-items: center;
}

.blogs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 20px 0 16px;
}

.Grid-posts h2.verdana-h2 {
    font-size: 24px;
    line-height: 110.00000000000001%;
    margin-bottom: 20px;
}

.Grid-posts p {
    font-size: 16px;
    line-height: 150%;
}

.Grid-posts .cta-content {
    align-items: start;
}

.location-blogs span {
    color: #000000B2;
}

.blogs-header span {
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
}

.blogs-caption span {
    color: #63C864;

}

.Blogs-categories button {
    width: 240px;
    height: 48px;
    border-radius: 14px;
    padding-top: 12px;
    padding-right: 16px;
    padding-bottom: 12px;
    padding-left: 16px;
    border: none;
    text-align: start;
    color: #000000B2;
    background: transparent;
}

.Blogs-categories {
    display: grid;
    margin-top: 24px;
}

.Blogs-categories button.active {
    background: #4FC1511F;
    color: #4FC151;
}

.Blogs-main-container {
    display: grid;
    grid-template-columns: 240px auto;
    gap: 64px;
}

.Blogs-main-container .Grid-posts h2.verdana-h2 {
    font-size: 20px;
    line-height: 110.00000000000001%;
    margin-bottom: 8px;
}

.Blogs-main-container .blogs-header span {
    font-size: 14px;
    text-transform: capitalize;
}

.Blogs-main-container .blogs-caption {
    background: #4FC1511F;
    padding: 0 10px;
    border-radius: 8px;
}

.Blogs-main-container .blogs-header {
    margin: 20px 0 16px;
    gap: 12px;
    justify-content: start;
}

.Grid-posts button {
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    color: #4FC151;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    margin-top: 24px;
    gap: 5px;
}

section.Sign_up .section-header {
    max-width: 75%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 48px;
}

.Blogs-main-container .location-blogs span {
    text-transform: lowercase;
}

.Blogs-main-container .Grid-posts .cta-content:nth-child(1) {
    max-width: 100%;
    width: 100%;
    grid-column: 1 / -1;
}

.Blogs-main-container .Grid-posts .cta-content:nth-child(1) img {
    height: 464px;
    object-fit: cover;
    border-radius: 24px;
}

.services-section.index a.card-link.button {
    border-bottom: 1px solid #E7E7E799;
    padding-bottom: 6px;
}

.services-section .card-link:hover {
    border-bottom: 1px solid #4FC151 !important;
}

button.slick-arrow {
    position: absolute;
    bottom: -85px;
}

button.nav-btn.prev-btn.slick-arrow {
    left: 46.5%;
}

button.nav-btn.next-btn.slick-arrow {
    right: 47%;
}

section.testimonials-section.py.color-schema3 {
    padding-bottom: 120px;
}

.testimonial-text {
    min-height: 150px;
}

.testimonials-grid .slick-list.draggable {
    padding-left: 0 !important;
}

.testimonials-grid.slick-initialized.slick-slider {
    padding-left: 64px;
}

.testimonial-card {

    margin-right: 32px;
}

@media (max-width:768px) {
    .Blogs-main-container {
        grid-template-columns: 100%;
        gap: 64px;
    }

    body .testimonials-grid {
        padding-left: 20px !important;
    }

    button.nav-btn.prev-btn.slick-arrow {
        left: 35%;
    }

    button.nav-btn.next-btn.slick-arrow {
        right: 39%;
    }

    .stat-item {
        padding: 0;
        width: 50%;
        flex: none;
        border-right: 1px solid #D5D5D54D;
    }

    .testimonial-card {
        margin-right: 20px;
    }

    .hero-tagline {

        padding-left: 0;
    }

    span.tag-text {
        font-size: 11px;

    }

    .stats-grid {
        gap: 20px 0;
        gap: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .email-input {
        flex: unset;
        width: 90%;
    }

    .insta-card img {
        height: 130px;
    }

    .insta-feed-grid {
        gap: 12px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .logos-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 12px;
    }

    .insta-card {
        width: 100px;
        height: 100px;
        border-radius: 16px;
        overflow: hidden;
        object-fit: cover;
        flex: none;
    }

    .Blogs-main-container .Grid-posts .cta-content:nth-child(1) img {
        height: auto;
    }

    .Blogs-categories button {
        width: 100%;
    }

    .Blogs-main-container h4.verdana-h5 {
        font-size: 18px;
    }

    section.Sign_up .section-header {
        max-width: 97%;
    }

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

    .Grid-posts {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
        row-gap: 24px;
    }

    .Grid-posts h2.verdana-h2 {
        font-size: 18px;
        line-height: 110.00000000000001%;
        margin-bottom: 8px;
    }

    .Grid-posts p {
        font-size: 12px;
        line-height: 150%;
    }

    .blogs-header span {
        font-size: 11px;
    }

    section.developer-services .verdana-h5 {
        font-size: 18px;
    }

    section.developer-services .arial-h4 {
        font-size: 14px;
    }

    .mobile {
        display: flex;
    }

    section.commercial_sec .service-card {
        flex: none;
        width: 76%;
        min-width: unset;
        justify-content: center;
        display: flex !important;
        height: 355px;
    }

    section.commercial_sec .services-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        scrollbar-width: none;
    }

    .desktop {
        display: none;
    }

    a.outline-green-btn.button.mobile {
        justify-content: center;
        gap: 15px;
        align-items: center;
        margin-top: 36px;
    }

    .Commercial .why-solar-image,
    .Domestic .why-solar-image {
        height: 400px;
    }

    .Domestic h2.verdana-h2,
    section.Commercial h2.verdana-h2 {
        font-size: 32px;
        line-height: 110.00000000000001%;
    }

    .why-solar-content button.primary-btn {
        width: 100%;
        justify-content: center;
    }

    .Commercial_Solar h2.verdana-h2 {
        margin-bottom: 36px;
    }

    .features-grid-2 {
        grid-template-columns: 100%;
        padding-top: 24px;
        gap: 20px;
    }

    .Commercial_Solar .Right_content,
    .Commercial_Solar h2.verdana-h2 {
        padding-top: 0;
    }

    .Main-container {
        grid-template-columns: auto;
    }

    img.Position-image {
        width: 100%;
    }

    .specification-list .verdana-h4,
    .Right_content p {
        font-size: 14px;
        line-height: 150%;
    }

    .tagss {
        gap: 10px;
        padding-top: 24px;
        flex-wrap: wrap;
    }

    .specification-body svg {
        width: 16px;
        height: 16px;
    }

    .specification-body {
        gap: 10px;
        padding-bottom: 5px;
    }

    .reverse-section .why-solar-image {
        order: unset;
    }

    section.why-choose-us.tx-center .section-header {
        max-width: 100%;
        width: 100%;
    }
}