/* Base */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px 25px;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.logo {
  height: 48px;
}

/* Hamburger Menu */
#toggle-menu {
  display: none;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Main Menu */
.navbar-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navbar-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  position: relative;
}

.navbar-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #001f3f;
  transition: width 0.3s ease;
}

.navbar-menu li a:hover::after {
  width: 100%;
}

.navbar-menu li a:hover {
  color: #001f3f;
}

/* Dropdown */
.presence-dropdown {
  position: relative;
}

.presence-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  padding: 1rem;
  border: 1px solid #ddd;
  display: none;
  z-index: 10;
  width: 250px;
}

.presence-dropdown:hover .presence-menu {
  display: block;
}

.presence-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 items per row */
  gap: 0.5rem;
}
.city-item {
  background: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.6rem;
  text-decoration: none;
  color: #b0b0b0; /* lighter gray */
  display: inline-block;
  border: 1px solid #d1d1d1;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.city-item:hover {
  background-color: #e0f7ff;
  color: #464646;
  text-decoration: none;
  border-color: #80caff;
}

.city-item a {
  color: #727272;
}


.more-link {
  display: block;
  margin-top: 0.5rem;
  color: #001f3f;
  font-weight: bold;
  text-decoration: none;
}

.more-link:hover {
  text-decoration: underline;
}

/* CTA + Social */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cta-button {
  background: linear-gradient(to right, #00008b, #111111);
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.cta-button:hover {
  background: linear-gradient(to right, #001f3f, #222222);
}

.navbar-social-icons {
  display: flex;
  gap: 20px; /* increased spacing for desktop */
}

.social-icon i {
  font-size: 1.3rem; /* bigger size */
  color: #002244;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon i:hover {
  color: #001f3f;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
  .hamburger {
    display: block;
  }

  .navbar-menu,
  .navbar-right {
    display: none;
    width: 100%;
    flex-direction: column;
    margin-top: 10px;
  }

  #toggle-menu:checked ~ .navbar-menu,
  #toggle-menu:checked ~ .navbar-right {
    display: flex;
  }

  .navbar-menu {
    gap: 1rem;
    text-align: center;
  }

  .navbar-right {
    align-items:center;
    gap: 12px;
  }

  .cta-button {
    margin-left: 0;
  }

  .navbar-social-icons {
    justify-content:center;
  }
}


    /* ======================
       LANDING SECTION STYLES
    ======================= */
.landing-section {
  padding: 20px 10px;
  max-width: 1500px;
  margin: auto;
  background-color: #eef3fc;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.left-content {
  padding: 10px;
}

.hero-heading {
  font-size: 2.0rem;
  font-weight: 700;
  color: black;
  line-height: 1.3;
  margin-bottom: 16px;
  text-align: center;
}

.tagline {
  font-size: 1.1rem;
  color: #333;
  margin: 20px 0;
  text-align: center;
}

.image-container {
  position: relative;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.solar-img {
  width: 100%;
  max-width: 480px;
}

.badge-overlay {
  position: absolute;
  background: #04255d;
  color: #fff;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.2s ease-in-out;
  white-space: nowrap;
  max-width: 45%;
  text-align: center;
}

.badge-1 { top: 5%; right: 5%; }
.badge-2 { top: 7%; left: 5%; }
.badge-3 { top: 35%; right: 5%; }
.badge-4 { top: 50%; left: 2%; }

.action-buttons {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.action-buttons .btn {
  padding: 10px 30px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #050f4a;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #002463;
}

.btn-outline {
  background: transparent;
  border: 2px solid #02235c;
  color: #021f53;
}

.btn-outline:hover {
  background-color: #002463;
  color: #fff;
}

.form-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.form-card h2 {
  font-size: 1.4rem;
  color: #032153;
}

.form-card .subtext {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 12px;
}

.form-card label {
  display: block;
  margin-top: 10px;
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 15px;
}

.form-card input {
  width: 100%;
  padding: 6px 8px;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-card input:focus {
  border-bottom-color: #0b3d91;
  outline: none;
}

.bill-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 12px;
}

.bill-options button {
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.7rem;
}

.agree {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.agree input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
}

.agree label {
  font-weight: 400;
}

.submit-btn {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  color: #fff;
  background-color: #02183f;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #1147a6;
}
.bill-options button.active {
    background-color: #ff9800;
    color: white;
}


/* Responsive Adjustments */
@media screen and (max-width: 992px) {
  .hero-heading {
    font-size: 2rem;
  }
  .tagline {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-heading {
    font-size: 1.8rem;
  }
  .badge-overlay {
    font-size: 0.6rem;
    padding: 4px 8px;
    max-width: 80%;
  }
  .image-container {
    flex-direction: column;
  }
  .action-buttons {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .hero-heading {
    font-size: 1.5rem;
  }
  .tagline {
    font-size: 0.95rem;
  }
  .badge-overlay {
    font-size: 0.45rem;
    padding: 3px 6px;
  }
}

.bill-options button.selected {
  background-color: #023061;
  color: white;
}
/*why choose*/

    .why-choose-section {
      padding: 80px 20px;
      background-color: #ffffff;
    }

    .subtitle {
      font-size: 14px;
      color: #3a8dde;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      text-align: center;
      margin-bottom: 8px;
    }

    .why-choose-section h2 {
      font-size: 32px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 50px;
      color: #111;
    }

    .why-card {
      background-color: transparent;
      padding: 20px 10px;
      display: flex;
      width: 100%;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .why-card.fade-in {
      opacity: 1;
      transform: translateY(0);
    }

    .why-left {
      width: 25%;
      display: flex;
      align-items: start;
      gap: 10px;
    }

    .why-number {
      font-weight: 700;
      font-size: 16px;
      color: #3a8dde;
      white-space: nowrap;
    }

    .why-line {
      height: 1.5px;
      background-color: #333;
      width: 30px;
      flex-shrink: 0;
      margin-top: 13px;
    }

    .why-right {
      width: 75%;
    }

    .why-right h5 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #111;
    }

    .why-right p {
      font-size: 15px;
      color: #555;
      margin: 0;
    }

    @media (max-width: 767px) {
      .why-card {
        flex-direction: row;
      }

      .why-left {
        width: 25%;
        flex-direction: row;
        align-items:start;
        gap: 10px;
      }

      .why-right {
        width: 75%;
      }

      .why-line {
        height: 1.5px;
        margin-top: 13px;
        align-self:flex-start;
        width: 40px;
      }
    }



.solar-benefits-section {
  padding: 40px 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.solar-benefits-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.solar-benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.solar-benefits-title {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #1c1c1c;
  margin-bottom: 20px;
  padding: 0 10px;
}

.solar-benefits-description {
  font-size: 1rem;
  color: #444;
  margin-bottom: 30px;
  padding: 0 10px;
}

.solar-benefits-image-wrapper {
  display: flex;
  justify-content: center;
}

.solar-benefits-image {
  max-width: 80%;
  height: auto;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 4s ease, transform 1s ease;
}

.solar-benefits-section.visible .solar-benefits-image {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {
  .solar-benefits-title {
    font-size: 1.5rem;
  }

  .solar-benefits-section {
    padding: 20px 10px;
  }

  .solar-benefits-image {
    max-width: 90%;
  }
}



/*Time line*/
 .steps-section {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f7fc;
    color: #333;
    padding: 40px 20px;
  }

  .section-header {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    background-color: #f5f7fc;
    padding: 10px;
    margin-bottom: 10px;
  }

  .section-subheader {
    text-align: center;
    font-size: 15px;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .timeline-container {
    position: relative;
    margin: 50px auto;
    padding: 10px 0;
    width: 100%;
    max-width: 900px;
  }

  .timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #cbcbcb;
    z-index: 0;
  }

  .timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .timeline-item.right {
    left: 50%;
    align-items: flex-start;
  }

  .timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .timeline-item .circle {
    position: absolute;
    top: 20px;
    width: 36px;
    height: 36px;
    background-color: #032056;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .timeline-item.left .circle {
    right: -18px;
  }

  .timeline-item.right .circle {
    left: -18px;
  }

  .timeline-icon-text-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }

  .timeline-icon-box {
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .timeline-text {
    flex-grow: 1;
  }

  .timeline-item.left .timeline-icon-text-wrapper {
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .timeline-icon {
    font-size: 28px;
    color: #000;
  }

  .step-title {
    font-weight: bold;
    color: #002856;
    text-transform: uppercase;
    font-size: 18px;
  }

  .step-desc {
    color: #555;
    font-size: 15px;
  }

  /* MOBILE RESPONSIVE - adjust fonts & layout only */
  @media (max-width: 768px) {
    .section-header {
      font-size: 18px;
    }

    .section-subheader {
      font-size: 13px;
      margin-bottom: 20px;
    }

    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
      width: 50%;
      padding: 16px;
    }

    .timeline-line {
      left: 50%;
      transform: translateX(-50%);
    }

    .timeline-item.left {
      align-items: flex-end;
    }

    .timeline-item.right {
      left: 50%;
      align-items: flex-start;
    }

    .timeline-item.left .circle {
      right: -18px;
      left: auto;
    }

    .timeline-item.right .circle {
      left: -18px;
      right: auto;
    }

    .timeline-icon-text-wrapper {
      flex-direction: row;
      justify-content: space-between;
    }

    .timeline-item.left .timeline-icon-text-wrapper {
      flex-direction: row-reverse;
    }

    .step-title {
      font-size: 12px;
    }

    .step-desc {
      font-size: 11px;
    }

    .timeline-icon {
      font-size: 22px;
    }
  }


/*Counter*/
    .count-section {
      background: url('../images/panel.png') no-repeat center center/cover;
      color: white;
      text-align: center;
      padding: 60px 20px;
      position: relative;
    }

    .count-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background-color: rgba(1, 5, 59, 0.799);
      z-index: 1;
    }

    .count-container {
      position: relative;
      z-index: 2;
    }


    .count-number {
      font-size: 30px;
      font-weight: bold;
    }

    .count-label {
      font-size: 18px;
      margin-top: 10px;
    }


    /*Testimonials*/

    
    .testimonial-section {
      padding: 80px 20px;
      text-align: center;
      
    }

    .testimonials-heading {
      color: #3a8dde; /* Blue heading */
    }

    .testimonial-section h6 {
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .testimonial-section h2 {
      font-weight: 700;
      font-size: 32px;
      margin-bottom: 20px;
    }

    .testimonial-section p.subtitles
    
    {
      color: #6c757d;
      font-size: 16px;
      margin-bottom: 50px;
    }

    .testimonial-card {
      background: #fff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 10px 10px rgba(0.2, 0.2, 0.2, 0.201);
      height:250px;
    }

    .testimonial-content {
      font-size: 15px;
      color: #6c757d;
      margin-bottom: 20px;
      text-align: justify;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-author img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }

    .author-info small {
      color: #6c757d;
      font-size: 13px;
    }

    .swiper {
      padding-bottom: 40px;
    }

    .swiper-pagination-bullet {
      background-color: #1c7ccf;
      opacity: 0.5;
    }

    .swiper-pagination-bullet-active {
      opacity: 1;
    }





    .faq-section {
  padding: 40px 20px;
  background: #fff;
  font-family: 'Open Sans', sans-serif;
}

.faq-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.faq-left {
  flex: 1;
  min-width: 300px;
  margin-right: 30px;
}

.faq-heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 15px 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 0 10px 15px 10px;
  color: #444;
  font-size: 14px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .plus-icon {
  transform: rotate(45deg);
}

.plus-icon {
  transition: transform 0.3s ease;
  font-size: 20px;
}

.faq-right {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 250px;
}

.faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-left {
    margin-right: 0;
  }

  .faq-heading {
    font-size: 20px;
  }
}



/* Footer */
.footer {
  background-color: #ffffff;
  color: #2c3e50;
  font-family: 'Segoe UI', sans-serif;
  border-top: 2px solid #e0e0e0;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}

/* Headings with animated underline */
.footer h5 {
  color: #001f3f;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0%;
  background-color: #001f3f;
  transition: width 0.3s ease-in-out;
}

.footer h5:hover::after {
  width: 100%;
}

/* Paragraphs and Links */
.footer p,
.footer a {
  color: #2c3e50;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Animated underline for links */
.footer a {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #001f3f;
  transition: width 0.3s ease-in-out;
}

.footer a:hover {
  color: #001f3f;
}

.footer a:hover::after {
  width: 100%;
}

/* Icon Styling */
.footer i {
  color: #001f3f;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer i:hover {
  color: #004080;
  transform: scale(1.2);
}
.footer-logo {
  max-width: 200px;
  height: auto;
}

/* Force primary color */
.footer .text-primary {
  color: #001f3f !important;
}

/* Social icon size */
.footer .fs-4 {
  font-size: 1.5rem;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .footer .row > div {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .footer .row.text-md-left {
    text-align: center;
  }

  .footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer .text-md-left {
    text-align: center;
  }

  .footer .mb-3 a {
    margin-right: 0.75rem;
    margin-left: 0.75rem;
  }
}
