/*======================================
=       MINIMAL IMPACT SECTION         =
======================================*/

.pse-minimal-impact {
  padding: 90px 0;
  background: #ffffff;
}

.pse-minimal-impact-head {
  text-align: center;
  margin-bottom: 55px;
}

.pse-minimal-impact-head span {
  display: inline-block;
  color: #f6b21a;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.pse-minimal-impact-head h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0b0b0b;
  margin: 0;
  line-height: 1.3;
}

.pse-minimal-impact-box {
  text-align: center;
  padding: 40px 25px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  height: 100%;
  transition: all 0.3s ease;
}

.pse-minimal-impact-box:hover {
  transform: translateY(-6px);
  border-color: #f6b21a;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.pse-minimal-impact-box h3 {
  font-size: 42px;
  font-weight: 800;
  color: #0d7cc1;
  margin-bottom: 14px;
}

.pse-minimal-impact-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

/*==============================
=         RESPONSIVE           =
==============================*/

@media (max-width: 991px) {

  .pse-minimal-impact {
    padding: 75px 0;
  }

  .pse-minimal-impact-head h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {

  .pse-minimal-impact {
    padding: 65px 0;
  }

  .pse-minimal-impact-head {
    margin-bottom: 40px;
  }

  .pse-minimal-impact-head h2 {
    font-size: 28px;
  }

  .pse-minimal-impact-box {
    padding: 35px 20px;
  }

  .pse-minimal-impact-box h3 {
    font-size: 34px;
  }

  .pse-minimal-impact-box p {
    font-size: 15px;
  }
}/*======================================
=            IMPACT SECTION            =
======================================*/

.pse-impact-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0b0b0b 0%, #111827 100%);
  overflow: hidden;
}

.pse-impact-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(246, 178, 26, 0.08);
  border-radius: 50%;
  top: -250px;
  right: -180px;
}

.pse-impact-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(13, 124, 193, 0.08);
  border-radius: 50%;
  bottom: -200px;
  left: -150px;
}

.pse-impact-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}

.pse-impact-subtitle {
  display: inline-block;
  background: rgba(246, 178, 26, 0.12);
  color: #f6b21a;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.pse-impact-heading h2 {
  font-size: 46px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.2;
}

.pse-impact-heading p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.8;
}

.pse-impact-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 45px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  z-index: 2;
  overflow: hidden;
}

.pse-impact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(246, 178, 26, 0.15),
    rgba(13, 124, 193, 0.12)
  );
  opacity: 0;
  transition: 0.4s;
}

.pse-impact-card:hover::before {
  opacity: 1;
}

.pse-impact-card:hover {
  transform: translateY(-10px);
  border-color: rgba(246, 178, 26, 0.35);
}

.pse-impact-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6b21a, #f39a12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #0b0b0b;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(246, 178, 26, 0.3);
}

.pse-impact-card h3 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.pse-impact-card h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  position: relative;
  z-index: 2;
  margin: 0;
}

/*==============================
=         RESPONSIVE           =
==============================*/

@media (max-width: 991px) {

  .pse-impact-section {
    padding: 80px 0;
  }

  .pse-impact-heading h2 {
    font-size: 38px;
  }

  .pse-impact-card {
    padding: 40px 25px;
  }
}

@media (max-width: 767px) {

  .pse-impact-section {
    padding: 70px 0;
  }

  .pse-impact-heading {
    margin-bottom: 45px;
  }

  .pse-impact-heading h2 {
    font-size: 30px;
  }

  .pse-impact-heading p {
    font-size: 15px;
  }

  .pse-impact-card {
    padding: 35px 22px;
  }

  .pse-impact-card h3 {
    font-size: 34px;
  }

  .pse-impact-card h4 {
    font-size: 15px;
  }

  .pse-impact-icon {
    width: 75px;
    height: 75px;
    font-size: 28px;
  }
}

/*======================================
=         EXPERTISE SECTION            =
======================================*/

.pse-expertise-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}

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

.pse-expertise-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(246, 178, 26, 0.4);
  background: rgba(246, 178, 26, 0.08);
  margin-bottom: 28px;
}

.pse-expertise-badge i {
  color: #f6b21a;
  font-size: 18px;
}

.pse-expertise-badge span {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.pse-expertise-content h2 {
  font-size: 47px;
  line-height: 1.12;
  font-weight: 800;
  color: #0b0b0b;
  margin-bottom: 28px;
}

.pse-expertise-content h2 span {
  color: #0d7cc1;
}

.pse-expertise-line {
  width: 70px;
  height: 4px;
  background: #f6b21a;
  border-radius: 30px;
  margin-bottom: 30px;
}

.pse-expertise-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #6b7280;
  max-width: 520px;
}

/* Cards */

.pse-expertise-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
  min-height: 50px;
  border: 1px solid rgba(13, 124, 193, 0.08);
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* .pse-expertise-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #f6b21a, #0d7cc1);
} */

.pse-expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.pse-expertise-icon {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f3f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pse-expertise-icon i {
  font-size: 20px;
  background: linear-gradient(180deg, #0d7cc1, #f6b21a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pse-expertise-card h3 {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.pse-large-card {
  /* min-height: 150px; */
}

/* Decorative Shape */

.pse-solar-shape {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(246,178,26,0.12), transparent 70%);
  left: -80px;
  bottom: -120px;
  z-index: -1;
}

/*==============================
=         RESPONSIVE           =
==============================*/

@media (max-width: 1399px) {

  .pse-expertise-content h2 {
    font-size: 54px;
  }

  .pse-expertise-card h3 {
    font-size: 14px;
  }
}

@media (max-width: 991px) {

  .pse-expertise-section {
    padding: 80px 0;
  }

  .pse-expertise-content {
    margin-bottom: 20px;
  }

  .pse-expertise-content h2 {
    font-size: 40px;
  }

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

  .pse-expertise-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {

  .pse-expertise-section {
    padding: 65px 0;
  }

  .pse-expertise-content h2 {
    font-size: 36px;
  }

  .pse-expertise-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  .pse-expertise-card {
    padding: 20px 18px;
    border-radius: 20px;
    gap: 18px;
  }

  .pse-expertise-card h3 {
    font-size: 18px;
  }

  .pse-expertise-icon {
    min-width: 50px;
    height: 50px;
  }

  .pse-expertise-icon i {
    font-size: 23px;
  }
}

@media (max-width: 526px) {

  .pse-expertise-section {
    padding: 65px 0;
  }

  .pse-expertise-content h2 {
    font-size: 36px;
  }

  .pse-expertise-content p {
    font-size: 12px;
    line-height: 1.8;
  }

  .pse-expertise-card {
    padding: 15px 13px;
    border-radius: 10px;
    gap: 18px;
  }

  .pse-expertise-card h3 {
    font-size: 12px;
  }

  .pse-expertise-icon {
    min-width: 32px;
    height: 32px;
  }

  .pse-expertise-icon i {
    font-size: 15px;
  }
}

/* WHy choose us section */

.why-prabal-section {
    background: #f7f8fa;
}

.why-prabal-section .sec-title {
    font-size: 42px;
    line-height: 1.08;
    font-weight: 700;
    color: #111827;
    /* font-family: serif; */
    /* margin-bottom: 14px; */
}

.why-prabal-section .sec-title span {
    color: #f6b21a;
}

.why-prabal-section .section-description {
    font-size: 15px;
    line-height: 1.8;
    color: #667085;
    max-width: 420px;
}

.solar-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px 20px;
    min-height: 180px;
    border: 1px solid #e5e7eb;
    position: relative;
    transition: 0.35s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,0.03);
}

.solar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.active-card {
    background: #f6b21a;
}

.active-card h5,
.active-card .card-icon,
.active-card .arrow {
    color: #fff !important;
}

.card-icon {
    font-size: 18px;
    color: #f6b21a;
    margin-bottom: 18px;
}

.solar-card h5 {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0;
    padding-right: 20px;
}

.arrow {
    position: absolute;
    right: 20px;
    bottom: 18px;
    font-size: 14px;
    color: #f6b21a;
}

/* Tablet */
@media (max-width: 991px) {

    .left-content {
        text-align: center;
        margin-bottom: 10px;
    }

    .why-prabal-section .sec-title {
        font-size: 34px;
    }

    .section-description {
        margin: auto;
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .why-prabal-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

   .why-prabal-section .sec-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .solar-card {
        min-height: auto;
        padding: 20px 18px 55px;
    }

    .solar-card h5 {
        font-size: 14px;
        line-height: 1.6;
    }
}


/* ================ */
/* services section */
/* ================ */

.solar-services-section {
    background: #f7f8fa;
    overflow: hidden;
}

.sub-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d4a038;
}

.main-title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #0b0b0b;
    max-width: 750px;
    margin: auto;
}

.service-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.service-image {
    height: 260px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 24px;
}

.service-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0b0b0b;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #667085;
    margin-bottom: 0;
}

/* Tablet */
@media (max-width: 991px) {

    .main-title {
        font-size: 32px;
    }

    .service-image {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .solar-services-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .main-title {
        font-size: 26px;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 20px;
    }

    .service-content h4 {
        font-size: 18px;
    }

    .service-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}


/* About section */

.about-section {
    /* background: #ffffff; */
    overflow: hidden;
  }
  
  .about-badge {
    display: inline-block;
    background: rgba(33, 92, 92, 0.1);
    color: #f6b21a;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  
  .about-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
    margin-bottom: 25px;
  }
  
  .about-title span {
    color: #f6b21a;
    display: block;
  }
  
  .about-text {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
  }
  
  .feature-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 30px 25px;
    height: 100%;
    transition: 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  }
  
  .feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(33, 92, 92, 0.1);
    color: #f6b21a;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .feature-box h5 {
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  .feature-box p {
    color: #666;
    margin: 0;
    line-height: 1.7;
  }
  
  .about-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    border-top: 1px solid #eee;
    padding-top: 35px;
  }
  
  .stat-item h3 {
    font-size: 40px;
    font-weight: 700;
    color: #f6b21a;
    margin-bottom: 8px;
  }
  
  .stat-item p {
    color: #666;
    margin: 0;
  }
  
  .about-image-wrapper {
    position: relative;
  }
  
  .about-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 35px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  }
  
  .floating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  
  .floating-card p {
    margin-bottom: 8px;
    color: #777;
    font-size: 14px;
  }
  
  .floating-card h5 {
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
  }
  
  .location-badge {
    display: inline-block;
    background: #f6b21a;
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .about-title {
      font-size: 42px;
    }
  
    .about-image {
      height: 550px;
    }
  }
  
  @media (max-width: 767px) {
    .about-title {
      font-size: 34px;
    }
  
    .about-text {
      font-size: 16px;
    }
  
    .about-image {
      height: 450px;
    }
  
    .floating-card {
      left: 15px;
      right: 15px;
      bottom: 15px;
      padding: 20px;
    }
  
    .about-stats {
      gap: 30px;
    }
  
    .stat-item h3 {
      font-size: 32px;
    }
  }


  /* =================== */
  /* Contact section */
  /* =================== */

  .contact-section{
    padding:40px 0 80px;
  }

  .main-heading{
    font-size:80px;
    font-weight:900;
    line-height:1;
    letter-spacing:0;
    margin-bottom:80px;
    color:#0b0b0b;
  }

  .left-content{
    padding-right:40px;
  }

  .connect-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:18px;
  }

  .connect-desc{
    color:#5b6472;
    line-height:1.9;
    font-size:17px;
    margin-bottom:45px;
    max-width:550px;
  }

  .info-list{
    margin-bottom:50px;
  }

  .info-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:24px;
  }

  .info-icon{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:14px;
    color:#ecfdf3;
    background:#f6b21a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
  }

  .info-text h5{
    font-size:18px;
    font-weight:700;
    margin-bottom:6px;
  }

  .info-text p,
  .info-text a{
    color:#5b6472;
    line-height:1.8;
    font-size:15px;
    text-decoration:none;
  }

  .info-text a:hover{
    color:#f6b21a;
  }

  .bottom-text{
    color:#334155;
    line-height:1.9;
    font-size:17px;
    max-width:550px;
  }

  .contact-form{
    padding-left:30px;
  }

  .form-group{
    margin-bottom:42px;
  }

  .form-control{
    border:none;
    border-bottom:1px solid #cbd5e1;
    border-radius:0;
    background:transparent;
    padding:0 0 14px;
    font-size:16px;
    color:#0f172a;
    box-shadow:none !important;
  }

  .form-control:focus{
    border-color:#0f172a;
    background:transparent;
  }

  .form-control::placeholder{
    color:#9ca3af;
  }

  textarea.form-control{
    height:120px;
    resize:none;
  }

  .submit-btn{
    background:#0f172a;
    color:#fff;
    border:none;
    border-radius:50px;
    padding:16px 38px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
  }

  .submit-btn:hover{
    background:#f6b21a;
  }

  .map-wrapper{
    margin-top:80px;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #dbe1ea;
    height:500px;
  }

  .map-wrapper iframe{
    width:100%;
    height:100%;
    border:0;
  }

  @media(max-width:1200px){

    .main-heading{
      font-size:90px;
    }

  }

  @media(max-width:991px){

    .main-heading{
      font-size:65px;
      margin-bottom:60px;
    }

    .left-content{
      padding-right:0;
      margin-bottom:60px;
    }

    .contact-form{
      padding-left:0;
    }

  }

  @media(max-width:576px){

    .contact-section{
      padding:30px 0 60px;
    }

    .main-heading{
      font-size:48px;
      letter-spacing:-2px;
    }

    .connect-title{
      font-size:32px;
    }

    .map-wrapper{
      height:350px;
    }

  }

  .br-section{
    background-image: url("../img/about.avif");
    background-position: center;
    background-size: cover;
    height: 300px;
  }