@import url(custom.css);

* {
  margin: 0px;
  padding: 0px;
}

.main-bg {
  /* background: url(../images/image_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 1573px; */
}
.main-bg-2 {
  /* background: url(../images/image_bg.png);
  background-size: cover;
  background-repeat: no-repeat; */
}
.overly {
  position: relative;
  height: 100px;
  z-index: 0;
}
.overly::before {
  position: absolute;
  content: "";
  width: 100%;
  background: var(--primary-200);
  filter: blur(35px);
  height: 200px;
  top: 20px;
  z-index: -1;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap-heading-content);
}
.main h2 {
  width: 840px;
  margin: 0 auto !important;
  letter-spacing: 3px;
}
.pages-navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--gap-md);
  padding-top: 20px;
}
.pages-navigation span {
  color: var(--gray-100);
  text-align: center;

  /* Regullar/md */
  font-family: var(--font-family-primary);
  font-size: var(--md);
  font-style: normal;
  font-weight: var(--Weights-bold, 600);
  line-height: var(--Line-Height-md, 28px); /* 155.556% */
}
.pages-navigation span a {
  text-decoration: none;
  color: var(--text-white);
  text-align: center;

  /* Regullar/md */
  font-family: var(--font-family-primary);
  font-size: var(--md);
  font-style: normal;
  font-weight: var(--Weights-bold, 600);
  line-height: var(--Line-Height-md, 28px); /* 155.556% */
}
.contact-form-wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  position: relative;
  background: transparent;
  min-height: auto;
  height: 100%;
}
.form-wrapper {
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  backdrop-filter: blur(137px);
  flex: 0 0 70%;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
}
form {
  display: flex;
  flex-direction: column;
  gap: var(--gap-form);
  flex: 1;
}
.input-wrapper {
  display: flex;
  flex-direction: row;
  gap: var(--gap-form);
}
.input-div {
  display: flex;
  width: 100%;
  min-height: 60px;
  padding: 0px 20px;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: relative;
}

.input-div i,
.input-div svg {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--Text-Black, #000);
  z-index: 2;
}
.input-div input {
  border: none;
  outline: none;
  width: 100%;
  padding-right: 50px;
  background: transparent;
  color: var(--Text-Black, #000);
  font-family: "Raleway";
  font-size: var(--Sizes-rg, 16px);
  font-style: normal;
  font-weight: var(--Weights-medium, 500);
  line-height: 24px;
}
input::placeholder,
textarea::placeholder {
  color: var(--Text-Black, #000);

  /* Regullar/rg */
  font-family: "Raleway";
  font-size: var(--Sizes-rg, 16px);
  font-style: normal;
  font-weight: var(--Weights-medium, 500);
  line-height: 24px; /* 150% */
}
select {
  border: none;
  background: none;
  appearance: none;
  outline: none;
  width: 100%;
  font-family: "Raleway";
  font-size: var(--Sizes-rg, 16px);
  font-style: normal;
  font-weight: var(--Weights-medium, 400);
  line-height: 24px; /* 150% */
}
select option {
  padding: 10px;
  color: var(--Text-Black, #000);

  /* Regullar/rg */
  font-family: "Raleway";
  font-size: var(--Sizes-rg, 16px);
  font-style: normal;
  font-weight: var(--Weights-medium, 500);
  line-height: 24px; /* 150% */
}
.custom-select-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  font-family: "Raleway";
  font-size: var(--Sizes-rg, 16px);
  font-style: normal;
  font-weight: var(--Weights-medium, 500);
  line-height: 24px; /* 150% */
}

.custom-select {
  position: relative;
  cursor: pointer;
  user-select: none;
  background: transparent;
  border: none;
  padding: 0;
  width: 100%;
  color: var(--Text-Black, #000);
  font-family: "Raleway";
  font-size: var(--Sizes-rg, 16px);
  font-style: normal;
  font-weight: var(--Weights-medium, 500);
  line-height: 24px;
  z-index: 1001;
}

.custom-select .selected {
  display: block;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.dropdown-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--Text-Black, #000);
  font-size: 14px;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.custom-select.open .dropdown-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.custom-select .options {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--gray-100);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  z-index: 1000;
  backdrop-filter: blur(10px);
  min-width: 200px;
}

.custom-select.open .options {
  display: block;
}

.custom-select .option {
  padding: 15px 20px;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.custom-select .option:last-child {
  border-bottom: none;
}

.custom-select .option:hover {
  background: rgba(0,0,0,0.05);
}



.custom-select .options {
  position: absolute;
  top: 115%;
  left: 0;
  right: 0;
  background: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  border-top: none;
  display: none;
  z-index: 10;
}

.custom-select.open .options {
  display: block;
}

.custom-select .option {
  padding: 10px;
  transition: background 0.3s;
}

.custom-select .option:hover {
  background: #f0f0f0;
  border-radius: 10px;
}

textarea {
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
  min-height: 200px;
  padding: var(--padding-xs);
  outline: none;
}
.heading-h4 h4 {
  color: var(--text-white);
}
.contact-card {
  display: flex;
  padding: var(--padding-sm);
  flex-direction: column;
  align-items: center;
  gap: var(--gap-md);
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid var(--text-white);
  background: var(
    --Active-Card,
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%)
  );
  justify-content: center;
  /* Main Card */
  box-shadow: 0px 14px 74px 0px rgba(0, 0, 0, 0.1);
}
.contact-card-svg {
  padding: 15px;
  border-radius: 100px;
  background: var(--border-white);
}
.contact-card-details {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-card-details span {
  color: var(--gray-900);

  /* Regullar/md */
  font-family: var(--font-family-primary);
  font-size: var(--md);
  font-style: normal;
  font-weight: var(--Weights-bold, 600);
  line-height: var(--md-lineheight); /* 155.556% */
}
.contact-card-details a {
  text-decoration: none;
  color: var(--Text-Black, #000);
  text-align: center;
  /* Regullar/lg */
  font-family: var(--font-family-primary);
  font-size: var(--lg);
  font-style: normal;
  font-weight: var(--Weights-bold, 600);
  line-height: var(--lg-lineheight); /* 127.273% */
}
.contact-card-details a:hover {
  text-decoration: underline;
}
.contact-cards-wraper {
  display: flex;
  flex-direction: row;
  gap: var(--gap-heading-content);
}

/* faqs */
.faqs-wrapper {
  display: flex;
  flex-direction: row;
  gap: 100px;
  margin-top: 60px;
}
.faq-left {
  display: flex;
  flex-direction: column;
  gap: var(--gap-heading-content);
}
.faq-left-content {
  width: 450px;
}
.faq-left h4 {
  text-align: start;
  color: var(--text-white);
  width: 400px;
  margin-bottom: 20px !important;
}
.faq-left span {
  color: var(--text-white-80, #f1f9fe);
  width: 400px;
  /* Regullar/rg */
  font-family: var(--font-family-primary);
  font-size: var(--Sizes-rg, 16px);
  font-style: normal;
  font-weight: var(--Weights-medium, 500);
  line-height: 24px; /* 150% */
}
.still-question-card {
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  width: 440px;
  gap: var(--gap-md);
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid var(--Linear-Border, #fff);
  background: var(
    --Active-Card,
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%)
  );

  /* Main Card */
  box-shadow: 0px 14px 74px 0px rgba(0, 0, 0, 0.1);
}
.still-question-card h5 {
  margin: 0px;
  color: var(--text-white);

  /* Title/H5 */
  font-family: var(--font-family-primary);
  font-size: var(--Sizes-h5, 25px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-Height-h4, 40px); /* 160% */
}
.still-question-card a {
  text-decoration: none;
  display: flex;
  width: 300px;
  padding: 10px 20px 10px 10px;
  align-items: center;
  gap: 15px;
  border-radius: 100px;
  background: var(--Borders-white, #fff);
}
.still-question-card a:hover {
  background: #d8d8d8;
}
.still-question-card a span {
  color: var(--Text-Black, #000);

  /* Title/H5 */
  font-family: var(--font-family-primary);
  font-size: var(--Sizes-h5, 25px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Line-Height-h4, 40px); /* 160% */
}
.still-question-card a .phone-number-svg {
  padding: 14px 17px;
  border-radius: 150px;
  background: var(--Borders-black, #000);
}

.faq-container {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  border-top: 3px solid transparent;
}

.faq-item.active {
  border-top: 3px solid #2ea6e3; /* Primary blue */
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--Text-Black, #000);

  /* Regullar/lg */
  font-family: var(--font-family-primary);
  font-size: var(--Sizes-lg, 20px);
  font-style: normal;
  font-weight: var(--Weights-bold, 600);
  line-height: var(--Line-Height-md, 28px); /* 127.273% */
}

.faq-answer {
  color: var(--Text-secondary, #3d3d3d);

  /* Regullar/rg */

  max-height: 0;
  overflow: hidden;
  margin-top: 10px;
  line-height: 1.5;
  transition: max-height 0.3s ease;
}

.faq-answer span {
  font-family: var(--font-family-primary);
  font-size: var(--Sizes-rg, 16px);
  font-style: normal;
  font-weight: var(--Weights-medium, 500);
  line-height: 24px; /* 150% */
  padding-top: 28px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.padding-sec {
  padding: 40px 0px;
}
.faq-overlly {
  position: relative;
  height: 0px;
}
.faq-overlly::before {
  position: absolute;
  content: "";
  height: 200px;
  width: 100%;
  background: #aee3fe;
  filter: blur(35px);
  top: -100px;
}
.blogs-detail-main-wrapper{
  margin-top: 140px ;
}


@media (max-width: 430px) {
  .input-div
  {
    min-height: 45px;
  }
  #contact-form
  {
    gap: 10px;
  }
  .blogs-input
  {
    width: 100%;
  }
}

.image-wrapper {
  flex: 0 0 30%;
  display: flex;
  align-items: stretch;
  height: 100%;
  overflow: hidden;
}

.solar-img-person {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  min-height: 400px;
  display: block;
}


/* Environmental Impact */
.video-container iframe{
  width: 100%;
  /* min-width: 1220px; */
  height: 700px;
  border-radius: 20px;
}
.overly-video {
  position: relative;
  height: 200px;
  background: var(--primary-200);
}
.overly-video::before {
  position: absolute;
  content: "";
  width: 100%;
  background: var(--primary-200);
  filter: blur(35px);
  height: 200px;
  top: -70px;
}

.envoirmental-tabs-main{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.video-container {
        position: relative;
  width: 100%;
  height: 650px; /* or use 100vh or any fixed height */
  overflow: hidden;
  background: #000;
  border-radius: 20px;
    }

    .video-container iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 650px;
      border: none;
      transition: opacity 0.5s ease;
      border-radius: 20px;
    }

    .tabs {
      display: flex;
      justify-content: center;

    }

    .tab-switcher {
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      border-radius: 50px;
      display: flex;
      overflow: hidden;
      border: 1px solid #ccc;
      
    }

    .tab-button {
      padding: 10px 30px;
      border: none;
      background: transparent;
      color: #333;
      font-weight: bold;
      font-family: var(--font-family-primary);
      font-size: 16px;
      cursor: pointer;
      position: relative;
      z-index: 1;
      transition: color 0.3s;
    }

    .tab-button.active {
      color: white;
    }

    .indicator {
      position: absolute;
      height: 100%;
      width: 50%;
      background: linear-gradient(180deg, #fc8753 0%, #f03e12 100%);
      border-radius: 50px;
      z-index: 0;
      transition: transform 0.3s ease;
    }

    .tab-switcher-wrapper {
      position: relative;
    }

    .cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 0px;
      gap: 20px;
    }

    .impact-card {
      display: flex;
      flex-direction: column;
      gap: 10px;
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      width: 23%;
      transition: all 0.3s ease;
      overflow: hidden;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeIn 0.4s forwards;
      padding: 20px;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .impact-card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 20px;
    }

    .impact-card h3 {
      margin: 0px;
      font-size: 1.2em;
      font-family: var(--font-family-primary);
      font-weight: 600;
    }

    .impact-card p {
      margin: 0 ;
      font-size: 0.9em;
      font-family: var(--font-family-primary);
      color: #555;
    }

/* Responsive design for contact form layout */
@media (max-width: 768px) {
  .contact-form-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  
  .form-wrapper {
    width: 100%;
  }
  
  .solar-img-person {
    min-height: 300px;
    order: -1; /* Show image first on mobile */
  }
}


@media (max-width: 768px) 
{
  #contact-form
  {
    gap: 10px !important;
  }
}