 *{
  margin: 0;
  padding: 0;
 }
 
 html, body {
    overflow-x: hidden;
}

 
 /* Top Bar */
    .top-bar {
      background-color: #0a3d2e;
      color: #fff;
      font-size: 14px;
      padding: 5px 0;
    }

    /* Navbar */
    .navbar {
      background-color: #ffffff;
    }

    .navbar-nav .nav-link {
      color: #0a3d2e;
      font-weight: 600;
      padding: 15px;
    }

    .navbar-nav .nav-link:hover {
      color: #f4a300;
    }

    /* Hover Dropdown */
    .dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
    }

    .dropdown-menu {
      border-radius: 0;
      border: none;
      box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    }

    .dropdown-item:hover {
      background-color: #f4a300;
      color: #fff;
    }

/* HERO SECTION */
.hero-video {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

/* Dark overlay */
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.hero-content h1 {
  color: #f5c400;
  font-weight: 700;
  font-size: 42px;
}

.hero-content p {
  color: #fff;
  font-size: 18px;
  max-width: 700px;
}

/* LOCATION BADGE */
.location-badge {
  position: absolute;
  right: 40px;
  bottom: 40px;
  background: #fff;
  color: #0a4fa3;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  z-index: 3;
}


/* TOP SLOGAN BAR */
.slogan-bar {
  background: linear-gradient(90deg, #c9e7b2, #a8db7a);
  padding: 18px 0;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #5a6f4c;
}

/* NOTICE BAR */
.notice-bar {
  background: #f4faec;
  padding: 10px 0;
  border-bottom: 1px solid #dbeac7;
}

.notice-label {
  background: #2e2e2e;
  color: #fff;
  padding: 6px 12px;
  font-size: 14px;
  margin-right: 10px;
}

.notice-text {
  color: #c9302c;
  font-weight: 500;
}
 /* TAB BAR */
    .tab-bar {
      background: #f5f5f5;
    }

    .tab-btn {
      text-align: center;
      padding: 18px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    .tab-btn.active {
      background: #a8db7a;
      color: #fff;
    }

    .tab-btn.inactive {
      background: #eaeaea;
      color: #333;
    }

    /* SECTION STYLES */
    .mission-section {
      background: #f2fbeb;
      padding: 60px 0;
    }

    .mission-title {
      font-weight: 700;
      letter-spacing: 1px;
    }

    .mission-divider {
      width: 60px;
      height: 3px;
      background: #6fbf4a;
      margin: 10px 0 20px;
    }

    .mission-text {
      color: #555;
      line-height: 1.8;
    }

    .mission-img img {
      max-width: 100%;
    }

    /* SVG WAVE */
    .mission-wave {
      margin-top: -1px;
    }

.section-box{
    background:#f8f9fa;
    border-radius:25px;
    padding:30px;
}

.counter-box{
    border-radius:20px;
    color:#fff;
    padding:30px;
    height:100%;
}

.orange-box{background:#ff7a00;}
.green-box{background:#1fbfa7;}

.big-number{
    font-size:60px;
    font-weight:800;
    line-height:1;
}

.right-img{
    width:100%;
    border-radius:25px;
    object-fit:cover;
}


/* Color Palette */
:root {
    --solar-green: #8bcf5a;
    --dark-grey: #333;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--solar-green);
    margin-top: 15px;
}

.system-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: none;
    height: 100%;
}

.system-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.system-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.system-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--solar-green);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.system-body h4 {
    color: var(--dark-grey);
    margin-bottom: 15px;
}

.system-body ul li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.system-body ul li i {
    color: var(--solar-green);
}

/* Button Styles */
.btn-green {
    background: var(--solar-green);
    color: white;
    border: 2px solid var(--solar-green);
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-green:hover {
    background: #79b84a; /* Slightly darker green */
    color: white;
}

.btn-outline-green {
    color: var(--solar-green);
    border: 2px solid var(--solar-green);
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-outline-green:hover {
    background: var(--solar-green);
    color: white;
}

/* Hover Effects */
.system-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.system-card:hover .system-img img {
    transform: scale(1.1);
}

/* Active Highlight */
.system-card.active {
    border: 2px solid var(--solar-green);
}


/* SECTION BACKGROUND */
.who-we-are {
  background: #fbfdf5;
  padding: 80px 0;
  top: -130px;
  position: relative;
  z-index: -1;
  padding-top: 10rem;
}

/* TITLE */
.who-title {
  color: #0b8f3f;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* DIVIDER */
.title-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 30px;
}

.title-divider::before,
.title-divider::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #f4c300;
}

.title-divider span {
  color: #0b8f3f;
  font-size: 14px;
}

/* TEXT */
.who-text {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  text-align: justify;
}

/* BUTTON */
.discover-btn {
  margin-top: 25px;
  padding: 10px 22px;
  border: 1.5px solid #333;
  background: transparent;
  font-weight: 500;
}

.discover-btn:hover {
  background: #0b8f3f;
  color: #fff;
  border-color: #0b8f3f;
}











/* IMAGE */
.who-img img {
  max-width: 100%;
}



.faq-section .accordion-item {
    border-radius: 12px !important;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.faq-section .accordion-button {
    padding: 22px;
    font-size: 1.1rem;
    color: #1a242f !important;
    background-color: #ffffff !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

/* Style when the question is expanded */
.faq-section .accordion-button:not(.collapsed) {
    color: #8bcf5a !important;
    background-color: #fff !important;
    border-bottom: 1px solid #f8f8f8;
}

/* Green indicator on the left for active questions */
.faq-section .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-left: 5px solid #8bcf5a !important;
}

.faq-section .accordion-body {
    padding: 25px;
    line-height: 1.8;
    background: #fff;
    color: #555;
    font-size: 0.95rem;
}

/* Customizing the arrow icon */
.faq-section .accordion-button::after {
    transition: 0.3s;
}

.cert-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease-in-out;
    border: 1px solid #eee;
    overflow: hidden;
}

.cert-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 207, 90, 0.1);
    color: #8bcf5a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: 0.4s;
}

.cert-img-box {
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.cert-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Isse certificate image cut nahi hogi */
    padding: 10px;
    transition: 0.5s;
}

.cert-body h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1e2a38;
    margin-bottom: 5px;
}

.cert-body p {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* --- Hover Effects --- */

.cert-card:hover {
    transform: translateY(-10px);
    border-color: #8bcf5a;
    box-shadow: 0 15px 35px rgba(139, 207, 90, 0.15) !important;
}

.cert-card:hover .cert-icon {
    background: #8bcf5a;
    color: #ffffff;
    transform: rotateY(180deg);
}

.cert-card:hover .cert-img-box img {
    transform: scale(1.05);
}

.cert-card:hover .cert-body h5 {
    color: #8bcf5a;
}


.blog-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fff;
}

.blog-img-position {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Date Badge on Image */
.blog-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #8bcf5a;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.read-link {
    color: #1e2a38;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 10px;
    transition: 0.3s;
}

/* --- Hover Effects --- */

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-card:hover .read-link {
    color: #8bcf5a;
}

.latest-blogs .btn:hover {
    background: #8bcf5a;
    color: #fff !important;
}

/* Responsive adjust */
@media (max-width: 768px) {
    .blog-img-position { height: 200px; }
    .display-6 { font-size: 1.8rem; }
}

.section-bg{
    background: #a7db7a0d;
}
/* Play Button Animation */
.play-icon {
    width: 80px;
    height: 80px;
    background: #8bcf5a;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 0 rgba(139, 207, 90, 0.7);
    animation: pulse-green 2s infinite;
}

.play-icon:hover {
    transform: scale(1.1);
    color: #fff;
    background: #79b84a;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(139, 207, 90, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(139, 207, 90, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(139, 207, 90, 0); }
}

.review-content {
    border-left: 6px solid #8bcf5a;
    transition: 0.3s;
}

.review-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Modal styling */
.modal-content {
    border-radius: 20px;
    overflow: hidden;
}


:root {
    --solar-green: #8bcf5a;
    --dark-navy: #1a242f;
}

.our-services {
    background-color: #ffffff;
}

.service-box {
    padding: 40px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #f8fdf4;
    color: var(--solar-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: 0.4s;
}

.service-content h4 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-navy);
}

.service-content p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    text-decoration: none;
    color: var(--dark-navy);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.read-more i {
    margin-left: 5px;
    transition: 0.3s;
}

/* Hover Effects */
.service-box:hover {
    background: var(--dark-navy);
    border-color: var(--dark-navy);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-box:hover .service-content h4,
.service-box:hover .service-content p,
.service-box:hover .read-more {
    color: #ffffff !important;
}

.service-box:hover .service-icon {
    background: var(--solar-green);
    color: #ffffff;
}

.service-box:hover .read-more i {
    margin-left: 10px;
    color: var(--solar-green);
}

.btn-service-all {
    border: 2px solid var(--solar-green);
    color: var(--solar-green);
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-service-all:hover {
    background: var(--solar-green);
    color: white;
}

.energy-box {
    position: relative;
    height: 320px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.energy-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Base Overlay (Hamesha dikhega, text visibility ke liye bottom gradient) */
.energy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease-in-out;
}

.content-wrap i {
    font-size: 40px;
    color: #ffffff;
    transition: all 0.4s ease;
}

.content-wrap h4 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0;
    transition: all 0.4s ease;
}

/* --- Hover Effects --- */

/* 1. Image Zoom */
.energy-box:hover img {
    transform: scale(1.1);
}

/* 2. Background changes to Light Green (#8bcf5a) */
.energy-box:hover .energy-overlay {
    background: rgba(139, 207, 90, 0.85); /* Smooth Transition to Green */
}

/* 3. Icon and Text slight lift on hover */
.energy-box:hover .content-wrap {
    transform: translateY(-5px);
}

/* Optional: Icon rotate effect */
.energy-box:hover i {
    transform: rotateY(180deg);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .energy-box { height: 260px; }
    .content-wrap i { font-size: 32px; }
    .content-wrap h4 { font-size: 1.2rem; }
}

:root {
    --solar-green: #8bcf5a;
    --dark-navy: #1e2a38;
}

.working-process {
    background-color: #fcfdfc;
    position: relative;
}

.process-card {
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    z-index: 1;
    position: relative;
}

/* Step Numbers Style */
.process-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 45px;
    height: 45px;
    background: var(--solar-green);
    color: white;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 4px solid #fcfdfc;
    box-shadow: 0 4px 10px rgba(139, 207, 90, 0.3);
    z-index: 2;
}

.process-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(139, 207, 90, 0.1);
    color: var(--solar-green);
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 20px;
    position: relative;
    transition: 0.4s;
}

.process-card h4 {
    color: var(--dark-navy);
    font-weight: 700;
    margin-bottom: 15px;
}

.process-card p {
    color: #6c757d;
    font-size: 14.5px;
    line-height: 1.6;
}

/* --- Hover Effects --- */

.process-card:hover {
    transform: translateY(-10px);
    background: var(--solar-green);
}

/* Hover karne par text white ho jayega */
.process-card:hover h4, 
.process-card:hover p {
    color: #ffffff;
}

/* Hover karne par icon box white ho jayega */
.process-card:hover .process-icon-wrap {
    background: #ffffff;
    color: var(--solar-green);
    transform: rotateY(180deg);
}

/* Hover karne par number color change hoga */
.process-card:hover .process-number {
    background: var(--dark-navy);
    color: #ffffff;
}

/* Dotted Line for Desktop (Step connection) */
@media (min-width: 992px) {
    .col-lg-3:not(:last-child) .process-card::after {
        content: "→";
        position: absolute;
        top: 50%;
        right: -25px;
        font-size: 24px;
        color: var(--solar-green);
        transform: translateY(-50%);
        font-weight: bold;
    }
}

/* Trust Section Main Styles */
.trust-section {
    background-color: #ffffff;
    overflow: hidden;
}

.trust-badge {
    font-weight: 700;
    text-uppercase: uppercase;
    color: #8bcf5a;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

/* Image & Experience Box Logic */
.trust-img-container {
    padding: 15px;
}

.img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.main-img {
    width: 100%;
    height: 500px;
    object-fit: cover; /* Image perfectly fit hogi */
    transition: transform 0.5s ease;
}

.img-wrapper:hover .main-img {
    transform: scale(1.05); /* Hover effect */
}

.exp-box {
    position: absolute;
    bottom: 30px;
    left: -10px;
    background: #ffffff;
    padding: 25px 35px;
    border-radius: 15px;
    border-left: 6px solid #8bcf5a;
    z-index: 5;
}

.exp-box h2 {
    color: #1e2a38;
}

/* Icons Styles */
.feature-icon-mini {
    width: 50px;
    height: 50px;
    background: rgba(139, 207, 90, 0.1);
    color: #8bcf5a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: 0.3s;
}

.trust-item:hover .feature-icon-mini {
    background: #8bcf5a;
    color: #ffffff;
    transform: rotateY(180deg);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .main-img {
        height: 350px;
    }
    .exp-box {
        left: 20px;
        bottom: 20px;
        padding: 15px 25px;
    }
    .trust-section {
        text-align: center;
    }
    .trust-item {
        text-align: left;
    }
}


    .contact-icon {
        width: 40px;
        height: 40px;
        background: rgba(139, 207, 90, 0.2);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #8bcf5a;
        font-size: 16px;
        flex-shrink: 0;
    }

    .social-btn {
        width: 35px;
        height: 35px;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
    }

    .social-btn:hover {
        background: #8bcf5a;
        border-color: #8bcf5a;
        color: #fff;
    }

    .custom-input {
        border: 1px solid #eee !important;
        border-radius: 10px !important;
        background: #fcfdfc !important;
    }

    .custom-input:focus {
        border-color: #8bcf5a !important;
        box-shadow: 0 0 0 0.25rem rgba(139, 207, 90, 0.1) !important;
    }

    .btn-lg:hover {
        background: #79b84a !important;
        transform: translateY(-2px);
        transition: 0.3s;
    }

    .map-box iframe {
        filter: grayscale(20%);
    }

    .map-box:hover iframe {
        filter: grayscale(0%);
    }

    @media (max-width: 991px) {
        .row.g-0 { border-radius: 20px !important; }
    }



.logo-slider {
    overflow: hidden;
    padding: 30px 0;
    background: white;
    white-space: nowrap;
    position: relative;
}

.logo-slide-track {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.slide {
    display: inline-block;
    padding: 0 40px;
}

.slide img {
    height: 60px; /* Logo ki height fix rakhein */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: 0.3s;
}

.slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* Half track move karega continuous loop ke liye */
}

.graph-card {
    transition: all 0.3s ease;
}

.graph-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
}

/* Progress Bar Customization */
.progress {
    overflow: visible; /* Numbers ko bahar dikhane ke liye */
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.progress-bar {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 10px;
    position: relative;
}

/* Striped Animation Speed */
.progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite;
}

/* Responsive Font Sizes */
@media (max-width: 768px) {
    .progress-bar {
        font-size: 11px;
    }
    .h5 {
        font-size: 1.1rem;
    }
}
.bank-partners {
    background-color: #ffffff;
}

.bank-item {
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 20px 10px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-name {
    font-weight: 700;
    color: #1e2a38;
    font-size: 0.95rem;
    text-transform: uppercase;
}

/* Hover Effect: Green Border and Scale */
.bank-item:hover {
    border-color: #8bcf5a;
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(139, 207, 90, 0.15);
}

.bank-item:hover .bank-name {
    color: #8bcf5a;
}

@media (max-width: 576px) {
    .bank-name {
        font-size: 0.8rem;
    }
}

/* Color Variable */
:root {
    --solar-green: #8bcf5a;
    --dark-blue: #1e2a38; /* For text contrast */
}

.why-choose-us {
    background-color: #fcfdfc; /* Very light greenish tint for background */
}

.why-card {
    padding: 45px 35px;
    background: #ffffff;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    height: 100%;
    z-index: 1;
}

.why-icon {
    width: 85px;
    height: 85px;
    background: rgba(139, 207, 90, 0.1); /* Very light green background */
    color: var(--solar-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin: 0 auto 30px;
    border-radius: 50%;
    transition: 0.5s;
}

.why-card h4 {
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--dark-blue);
    transition: 0.3s;
}

.why-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    transition: 0.3s;
}

/* Static Border Bottom */
.card-border-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background: var(--solar-green);
    transition: 0.5s;
}

/* Hover Effects */
.why-card:hover {
    transform: translateY(-12px);
    border-color: var(--solar-green);
}

.why-card:hover .card-border-bottom {
    width: 100%;
}

.why-card:hover .why-icon {
    background: var(--solar-green);
    color: #fff;
    transform: scale(1.1) rotate(10deg);
}

/* Active Card Styling (Highlighted by default) */
.why-card.active {
    border-bottom: 5px solid var(--solar-green);
    background: linear-gradient(180deg, #fff 0%, #f7fbf3 100%);
}

.why-card.active .why-icon {
    background: var(--solar-green);
    color: #fff;
}

/* Footer Base */
footer {
    width: 100%;
    background: #0b1d14;
    padding: 60px 0 20px;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

footer a {
    color: #cfd8d3;
    text-decoration: none;
    transition: 0.3s ease;
}

footer a:hover {
    color: #6fdc8c;
}

/* Headings */
.solar-white-head {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.ftr_title {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #e5e5e5;
}

.ftr_title img {
    width: 18px;
}

/* Footer Text */
.footer-white-content {
    font-size: 14px;
    line-height: 1.6;
    display: block;
    margin-bottom: 6px;
    color: #cfd8d3;
}

/* Lists */
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 15px;
}

/* Quick Links */
.footer_menu a {
    font-size: 14px;
    display: block;
    padding: 6px 0;
}

/* Address */
.address-div p {
    font-size: 14px;
    line-height: 1.7;
}

/* Social Media */
.footer-social-media ul {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social-media img {
    width: 32px;
    transition: 0.3s ease;
}

.footer-social-media img:hover {
    transform: scale(1.15);
}

/* Bottom Footer */
.ftr_btm {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    align-items: center;
}

.index-about-img img,
.kseb-div img {
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        text-align: center;
    }

    .footer_menu .row > div {
        margin-bottom: 5px;
    }

    .footer-social-media ul {
        justify-content: center;
        margin: 15px 0;
    }

    .solar-white-head {
        margin-top: 30px;
    }
}


/* Scroll Top */
.scroll-top {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: #222;
  color: #fff;
  text-align: center;
  line-height: 45px;
  font-size: 18px;
}



    /* Hero Section */
    .hero {
      background: url('https://images.unsplash.com/photo-1509391366360-2e959784a276') center/cover no-repeat;
      height: 350px;
      position: relative;
      color: #fff;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.4);
    }

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

    .section-icon {
      color: #0dcaf0;
      font-size: 22px;
      margin-bottom: 10px;
    }

    .about-img img {
      border-radius: 8px;
    }


    .hero-section {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('solar-panel-bg.jpg'); /* Apni image ka path yahan dalein */
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
        }
        .icon-box {
            font-size: 3rem;
            color: #ffc107; /* Solar Yellow color */
            margin-bottom: 15px;
        }
        .card {
            border: none;
            transition: transform 0.3s;
        }
        .card:hover {
            transform: translateY(-10px);
        }






/* ===== MAIN WRAPPER ===== */
.contact-wrapper {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px; /* Har element ke beech space */
}

/* ===== COMMON TRANSITION ===== */
.contact-btn, .action-icons a {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== CONTACT BUTTON & FORM SECTION ===== */
.contact-btn-container {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-btn {
  width: 56px;
  height: 180px;
  background: #7b68ee;
  border-radius: 14px 0 0 14px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -4px 0 15px rgba(123, 104, 238, 0.3);
}

.contact-btn .label {
  color: #fff;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 1px;
}

/* Form Styling */
.contact-form {
  position: absolute;
  top: 0;
  right: 100%;
  width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 15px 0 0 15px;
  box-shadow: -10px 5px 25px rgba(0,0,0,0.15);
  visibility: hidden;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s ease;
}

.contact-btn-container:hover .contact-form {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.contact-form input, .contact-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background: #7b68ee;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}

/* ===== ICONS SECTION (FIXED ANIMATION) ===== */
.action-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end; /* Icons ko right side chipka ke rakhega */
}

.action-icons a {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 30px 0 0 30px;
  overflow: hidden; /* Text ko hidden rakhne ke liye */
  position: relative;
  box-shadow: -4px 4px 10px rgba(0,0,0,0.1);
}

/* Icon individual styling */
.action-icons i {
  min-width: 56px; /* Icon hamesha center/visible rahega */
  text-align: center;
  font-size: 24px;
  color: white;
}

.action-icons span {
  color: white;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: 0.3s ease;
}

/* HOVER EFFECT: Only for the hovered icon */
.action-icons a:hover {
  width: 170px; /* Width expand hogi */
}

.action-icons a:hover span {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp { background: #25D366; }
.call { background: #0d6efd; }


        





/* ===============
Responsive code 
=============== */


    @media (max-width: 991px) {
      .top-bar .d-flex {
        flex-direction: column;
        gap: 10px;
      }
    }




/* Hover dropdown for desktop */
@media (min-width: 992px) {
  .hover-dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .location-badge {
    right: 15px;
    bottom: 15px;
    font-size: 14px;
    padding: 8px 14px;
  }
}

@media (max-width: 768px) {
  .side-wrapper
 {
    display: hidden;
  }

}


/* RESPONSIVE */
@media (max-width: 768px) {
  .who-title {
    font-size: 28px;
  }

  .who-text {
    text-align: left;
  }
}

@media (max-width: 991px) {
  .kseb-div img {
    float: none;
    display: block;
    margin: 20px auto 0;
  }

  .index-about-img img {
    display: block;
    margin: 0 auto 20px;
  }
}

@media (max-width: 576px) {
  .solar-white-head {
    font-size: 20px;
  }

  .footer-social-media ul {
    margin-top: 20px;
  }
}


.counter-section {
    background-color: #f8f9fa;
}

.counter-card {
    background: #ffffff;
    border-radius: 15px;
    border-bottom: 4px solid #f9d949; /* Solar Yellow accent */
    transition: transform 0.3s ease;
}

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

.counter-icon {
    font-size: 2.5rem;
    color: #002b5b; /* Navy Blue */
}

.counter-value {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 0;
}

.plus, .percent {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f9d949;
    vertical-align: top;
    margin-left: 2px;
}

.counter-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .counter-value { font-size: 1.8rem; }
    .counter-icon { font-size: 1.8rem; }
}



/* Check Icons styling */
.check-icon {
    width: 25px;
    height: 25px;
    background: #8bcf5a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}



/* Service Cards Base */
.service-card {
    border-radius: 20px;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    margin-top: 30px; /* Floating icon adjustment */
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Floating Icon Box */
.service-icon-float {
    width: 70px;
    height: 70px;
    background: #8bcf5a;
    color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: -55px auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(139, 207, 90, 0.3);
    transition: 0.4s;
}

/* Hover Animations */
.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-card:hover .service-icon-float {
    background: #1e2a38;
    transform: rotateY(180deg);
}

.service-card .btn:hover {
    background: #8bcf5a;
    border-color: #8bcf5a;
    color: #fff;
}

/* Typography & Lists */
.service-card h4 {
    color: #1e2a38;
}

.service-card ul li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .display-4 { font-size: 2.2rem; }
}




/* Image Wrapper & Floating Badge */
.portfolio-img-wrapper {
    position: relative;
    padding: 10px;
}

.portfolio-img-wrapper img {
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 8px solid #fff;
}

.floating-capacity {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: #1e2a38; /* Navy Blue */
    color: #8bcf5a; /* Solar Green */
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 5;
    border: 2px solid #8bcf5a;
}

/* Location Tag */
.location-tag {
    display: inline-block;
    background: rgba(139, 207, 90, 0.15);
    color: #1e2a38;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Typography */
.portfolio-content h3 {
    font-size: 2rem;
    color: #1e2a38;
}

/* Hover Effect on Image */
.portfolio-img-wrapper:hover img {
    transform: scale(1.03) rotate(1deg);
}

/* Animation for the whole row */
.unique-portfolio .row {
    transition: 0.4s;
    border-radius: 30px;
    padding: 20px;
}

.unique-portfolio .row:hover {
    background: #fcfdfc;
}

@media (max-width: 991px) {
    .floating-capacity {
        font-size: 0.9rem;
        padding: 8px 20px;
        bottom: 5px;
    }
    .portfolio-content h3 {
        font-size: 1.5rem;
    }
}



/* Multi-Step Form Styling */
.enquiry-container {
    max-width: 850px;
    margin: 40px auto;
    background: #fff;
    border-radius: 24px;
    border-top: 8px solid #8bcf5a; /* Solar Green */
    overflow: hidden;
}

.step-header {
    background: #fcfdfc;
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.step-label {
    font-weight: 800;
    color: #8bcf5a;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.progress-container {
    height: 8px;
    background: #eee;
    border-radius: 10px;
    margin-top: 12px;
}

.progress-fill {
    height: 100%;
    background: #8bcf5a;
    width: 50%;
    border-radius: 10px;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title {
    color: #1e2a38;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #8bcf5a;
}

.solar-input {
    padding: 14px !important;
    border-radius: 12px !important;
    border: 1px solid #e5e5e5 !important;
    background: #fafafa !important;
}

.solar-input:focus {
    border-color: #8bcf5a !important;
    box-shadow: 0 0 0 4px rgba(139, 207, 90, 0.1) !important;
    background: #fff !important;
}

.counter-text {
    font-size: 0.75rem;
    color: #888;
    margin-top: 4px;
    display: block;
}

.btn-next, .btn-submit {
    background: #8bcf5a !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    transition: 0.3s !important;
}

.btn-next:hover, .btn-submit:hover {
    background: #79b84a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 207, 90, 0.3);
}

.btn-prev {
    background: #f0f0f0 !important;
    color: #555 !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
}

.is-invalid {
    border-color: #ff4d4d !important;
}




/* Hero Section Styles */
.residential-hero {
    background: linear-gradient(rgba(30, 42, 56, 0.85), rgba(30, 42, 56, 0.95)), url('https://images.pexels.com/photos/356036/pexels-photo-356036.jpeg?auto=compress&cs=tinysrgb&w=1200');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.solar-btn-primary {
    background-color: #8bcf5a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s;
}

.solar-btn-primary:hover {
    background-color: #79b84a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 207, 90, 0.3);
    color: #fff;
}

/* Image Wrapper with Experience Card */
.hero-image-wrapper {
    position: relative;
}

.experience-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
    border-left: 5px solid #8bcf5a;
}

/* Benefit Cards */
.benefit-card {
    transition: 0.4s;
    border: 1px solid #eee;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #8bcf5a;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(139, 207, 90, 0.1);
    color: #8bcf5a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 24px;
}

/* Process Step Numbers */
.step-num {
    width: 50px;
    height: 50px;
    background: #1e2a38;
    color: #8bcf5a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .experience-card {
        left: 20px;
        bottom: 10px;
        padding: 10px 20px;
    }
    .display-3 {
        font-size: 2.5rem;
    }
}



/* Hero Styles */
.commercial-hero {
    background: linear-gradient(rgba(30, 42, 56, 0.9), rgba(30, 42, 56, 0.7)), url('https://images.pexels.com/photos/2850347/pexels-photo-2850347.jpeg?auto=compress&cs=tinysrgb&w=1200');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.solar-btn-primary {
    background-color: #8bcf5a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s;
}

.solar-btn-primary:hover {
    background-color: #79b84a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 207, 90, 0.3);
    color: #fff;
}

/* ROI Card Styling */
.roi-card {
    transition: 0.3s;
    background: #fff;
}

.roi-card:hover {
    border-color: #8bcf5a !important;
    background: #fcfdfc;
    transform: translateY(-5px);
}

.roi-card i {
    transition: 0.3s;
}

.roi-card:hover i {
    transform: scale(1.2);
}

/* Typography Adjustments */
.display-4 {
    letter-spacing: -1px;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .display-4 {
        font-size: 2.5rem;
    }
}




/* Hero Styles */
.amc-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.solar-btn-primary {
    background-color: #8bcf5a;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.solar-btn-primary:hover {
    background-color: #79b84a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 207, 90, 0.4);
    color: #fff;
}

/* Service Card Icons */
.amc-service-card {
    background: #fff;
    transition: 0.4s;
    height: 100%;
}

.amc-service-card:hover {
    transform: translateY(-10px);
    background: #f8fcf5;
}

.amc-icon {
    width: 70px;
    height: 70px;
    background: rgba(139, 207, 90, 0.15);
    color: #1e2a38;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}

/* Pricing Table */
.price-box {
    transition: 0.3s;
}

.price-box:hover {
    border-color: #8bcf5a !important;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .display-4 { font-size: 2.2rem; }
}






/* Hero Section */
.pump-hero {
    background: linear-gradient(rgba(30, 42, 56, 0.9), rgba(30, 42, 56, 0.8)), url('https://images.pexels.com/photos/433308/pexels-photo-433308.jpeg?auto=compress&cs=tinysrgb&w=1200');
    background-size: cover;
    background-position: bottom;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.solar-btn-primary {
    background-color: #8bcf5a;
    color: #fff !important;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.solar-btn-primary:hover {
    background-color: #79b84a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 207, 90, 0.3);
}

/* Subsidy Badge */
.pump-image-box {
    position: relative;
    display: inline-block;
}

.subsidy-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #1e2a38;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    border-top: 4px solid #8bcf5a;
    white-space: nowrap;
}

/* Feature Cards */
.pump-type-card {
    transition: 0.3s;
    background: #fff;
}

.pump-type-card:hover {
    border-color: #8bcf5a !important;
    transform: translateY(-5px);
}

.type-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 207, 90, 0.1);
    color: #8bcf5a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    flex-shrink: 0;
}

/* Check Icons */
.check-icon {
    width: 28px;
    height: 28px;
    background: #8bcf5a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Table Styling */
.table tr td {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

@media (max-width: 991px) {
    .display-4 { font-size: 2.5rem; }
    .subsidy-badge { bottom: 10px; font-size: 0.8rem; }
}







/* Hero Styles */
.offgrid-hero {
    background: linear-gradient(rgba(30, 42, 56, 0.9), rgba(30, 42, 56, 0.8)), url('https://images.pexels.com/photos/2850347/pexels-photo-2850347.jpeg?auto=compress&cs=tinysrgb&w=1200');
    background-size: cover;
    background-position: center;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.solar-btn-primary {
    background-color: #8bcf5a;
    color: #fff !important;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.solar-btn-primary:hover {
    background-color: #79b84a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 207, 90, 0.4);
}

/* Component Cards */
.comp-card {
    background: #fff;
    transition: 0.4s ease;
    border: 1px solid #f0f0f0 !important;
}

.comp-card:hover {
    transform: translateY(-10px);
    border-color: #8bcf5a !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05) !important;
}

.comp-icon {
    width: 80px;
    height: 80px;
    background: #f8fcf5;
    color: #8bcf5a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* Accordion Customization */
.accordion-button:not(.collapsed) {
    background-color: #f8fcf5;
    color: #8bcf5a;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #8bcf5a;
}

@media (max-width: 991px) {
    .display-4 { font-size: 2.6rem; }
}





/* Hero Styles */
.epc-hero {
    background: linear-gradient(rgba(30, 42, 56, 0.9), rgba(30, 42, 56, 0.8)), url('https://images.pexels.com/photos/159397/solar-panel-array-power-sun-159397.jpeg?auto=compress&cs=tinysrgb&w=1200');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.solar-btn-primary {
    background-color: #8bcf5a;
    color: #fff !important;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.solar-btn-primary:hover {
    background-color: #79b84a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 207, 90, 0.4);
}

/* EPC Card Styles */
.epc-card {
    transition: 0.4s;
    background: #fff;
    border-top: 5px solid #f0f0f0 !important;
}

.epc-card:hover {
    transform: translateY(-10px);
    border-top-color: #8bcf5a !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

.epc-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(139, 207, 90, 0.1);
    color: #8bcf5a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 24px;
}

/* Timeline Layout */
.timeline-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    border-left: 2px dashed #8bcf5a;
    padding-left: 20px;
}

.timeline-dot {
    position: absolute;
    left: -16px;
    width: 30px;
    height: 30px;
    background: #8bcf5a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 0 0 5px #fff;
}

.timeline-item {
    position: relative;
}

@media (max-width: 991px) {
    .display-4 { font-size: 2.4rem; }
}




/* Hero Style */
.contact-hero {
    background: linear-gradient(rgba(30, 42, 56, 0.9), rgba(30, 42, 56, 0.8)), 
                url('https://images.pexels.com/photos/356036/pexels-photo-356036.jpeg?auto=compress&cs=tinysrgb&w=1200');
    background-size: cover;
    background-position: center;
}

/* Contact Info Styles */
.info-icon {
    width: 45px;
    height: 45px;
    background: #8bcf5a;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: #e9ecef;
    color: #1e2a38;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    background: #8bcf5a;
    color: white;
    transform: translateY(-3px);
}

/* Form Styling */
.form-card-wrapper {
    margin-top: -100px; /* Overlap effect */
    border-top: 6px solid #8bcf5a;
}

.btn-solar-primary {
    background-color: #8bcf5a;
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    transition: 0.3s;
}

.btn-solar-primary:hover {
    background-color: #79b84a;
    box-shadow: 0 10px 20px rgba(139, 207, 90, 0.3);
    color: white;
}

.form-control, .form-select {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background-color: #fbfbfb;
}

#step-indicator {
    background: rgba(139, 207, 90, 0.2);
    color: #8bcf5a;
}

/* Responsive */
@media (max-width: 991px) {
    .form-card-wrapper { margin-top: 20px; }
}

