/* Text Content */
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}

/* Subtitle */
.hero-subtitle {
  font-size: 22px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
  font-family: "Prata", serif;
}

/* Main Heading */
.hero-content .head{
  font-size: 60px;
  margin: 0;
  font-family: "Prata", serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .solargy-hero {
    height: 260px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 14px;
  }
}

/* about1 */
.solargy-services {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

/* Container width */
.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Title */
.services-title {
  font-family: "Prata", serif;
  font-size: 42px;
  color: #233d63;
  line-height: 1.3;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.service-card {
  background: #fff;
  padding: 45px 25px;
  border-radius: 6px;
  box-shadow: 0px 15px 40px rgba(72, 79, 89, 0.12),
    0px 5px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

/* Icon */
.service-card img {
  width: 70px;
  margin-bottom: 25px;
}

/* Text */
.service-card h4 {
  font-family: "Prata", serif;
  font-size: 22px;
  color: #233d63;
  /* font-weight: 400; */
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-title {
    font-size: 28px;
  }
}

/* about2 */
.experience-section {
  padding: 90px 0;
  background: #fff;
  color: #233d63;
}

.experience-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT IMAGE */
.experience-image {
  position: relative;
  flex: 1;
}

.experience-image img {
  width: 100%;
  display: block;
}

/* SINCE OVERLAY */
.since-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: #fff;
  font-family: "Prata", serif;
}

.since-badge span {
  font-size: 28px;
  display: block;
}

.since-badge strong {
  font-size: 58px;
  font-weight: 400;
}

/* RIGHT CONTENT */
.experience-content {
  flex: 1;
}

.experience-content-title {
  font-family: "Prata", serif;
  font-size: 35px;
  color: #233d63;
  line-height: 1.3;
}

.experience-content p {
  margin-top: 20px;
  color: #485261;
  line-height: 1.8;
  font-size: 18px;
  font-family: "Outfit", sans-serif;
}

/* STATS */
.experience-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0 30px;
}

.stat-box h3 {
  font-size: 32px;
  color: #94C025;
  margin: 0;
  font-family: "Prata", serif;

}

.stat-box span {
  color: #485261;
  font-size: 18px;
  font-family: "Outfit", sans-serif;

}

/* CEO */
.ceo-box {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.ceo-box img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.ceo-box h4 {
  margin: 0;
  font-size: 18px;
  color: #233d63;
}

.ceo-box span {
  font-size: 14px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .experience-container {
    flex-direction: column;
    text-align: center;
  }

  .experience-stats {
    justify-content: center;
  }

  .ceo-box {
    justify-content: center;
  }
}
/* PERFECT MOBILE ALIGNMENT */
@media (max-width: 992px) {

  .experience-section {
    padding: 50px 0;
  }

  .experience-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  /* IMAGE */
  .experience-image {
    width: 100%;
  }

  .experience-image img {
    border-radius: 6px;
  }

  /* SINCE OVERLAY - reposition for mobile */
  .since-badge {
    bottom: 15px;
    left: 15px;
  }

  .since-badge span {
    font-size: 18px;
  }

  .since-badge strong {
    font-size: 34px;
  }

  /* CONTENT */
  .experience-content {
    text-align: left;
  }

  .experience-content-title {
    font-size: 24px;
    line-height: 1.4;
  }

  .experience-content p {
    font-size: 16px;
  }

  /* STATS */
  .experience-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .stat-box h3 {
    font-size: 26px;
  }

  .stat-box span {
    font-size: 15px;
  }

  /* CEO */
  .ceo-box {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
}


/* EXTRA SMALL DEVICES */
@media (max-width: 576px) {

  .since-badge {
    bottom: 10px;
    left: 10px;
  }

  .experience-content-title {
    font-size: 20px;
  }

  .experience-stats {
    align-items: center;
    text-align: center;
  }

  .ceo-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


/* about3 */

.solargy-info {
    padding: 90px 0;
    background: #fff;
}

.solargy-info-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* LEFT TEXT */
.solargy-info-text {
    flex: 1;
}

.solargy-info-text span{
    font-family: 'Prata', serif;
    font-size: 32px;
    color: #233D63;
    line-height: 1.3;
}

.solargy-info-text p {
    margin: 20px 0 30px;
    color: #485261;
  font-family: "Outfit", sans-serif;
    line-height: 1.8;
    font-size: 18px;
}

.solargy-info-text h4 {
    font-family: 'Prata', serif;
    font-size: 22px;
    color: #233D63;
    margin-bottom: 20px;
}

/* LIST */
.solargy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.solargy-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #485261;
  font-family: "Outfit", sans-serif;
    font-size: 18px;
}

.solargy-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #94C025;
    font-weight: bold;
}

/* BUTTON */
.solargy-btn {
    background: #94C025;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    font-size: 15px;
  font-family: "Outfit", sans-serif;
   
}

/* RIGHT IMAGE */
.solargy-info-image {
    flex: 1;
}

.solargy-info-image img {
    width: 100%;
    border-radius: 4px;
}

/* RESPONSIVE */

/* MOBILE RESPONSIVE FIX */
@media (max-width: 992px) {

    .solargy-info {
        padding: 50px 0;
    }

    .solargy-info-container {
        flex-direction: column;
        text-align: left;
        gap: 40px;
        padding: 0 20px;
    }

    /* Text block */
    .solargy-info-text span {
        font-size: 24px;
        line-height: 1.4;
    }

    .solargy-info-text p {
        font-size: 16px;
        line-height: 1.7;
    }

    .solargy-list li {
        font-size: 16px;
    }

    .second-span {
        display: block;
        margin-top: 15px;
        font-size: 20px;
    }

    /* Button */
    .solargy-btn {
        display: inline-block;
        margin-top: 10px;
        padding: 12px 22px;
        font-size: 14px;
    }

    /* Image alignment */
    .solargy-info-image {
        width: 100%;
    }

    .solargy-info-image img {
        width: 100%;
        border-radius: 6px;
        object-fit: cover;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 576px) {

    .solargy-info-text span {
        font-size: 20px;
    }

    .solargy-list li {
        padding-left: 26px;
    }

   .solargy-btn {
    width: 70%;
    text-align: center;
    display: block;
    margin: 0 auto;
}

}


/* About4 */
.solargy-brands {
    padding: 90px 0;
    background: #f9f9f9;
    overflow: hidden;
}

.brands-wrapper {
    width: 100%;
    position: relative;
}

.brands-track {
    display: flex;
    width: max-content;
    animation: scrollBrands 25s linear infinite;
}

.brand-logo {
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.brand-logo img {
    height: 60px;
    object-fit: contain;
    transition: 0.3s ease;
}

.brand-logo img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Animation */
@keyframes scrollBrands {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .solargy-brands {
        padding: 30px 0;
    }

    .brand-logo {
        padding: 0 20px;   /* tighter spacing */
    }

    .brand-logo img {
        height: 45px;       /* smaller logos on mobile */
    }

    .brands-track {
        animation: scrollBrands 18s linear infinite; /* smoother on mobile */
    }
}

/* About 5 */
/* About 5 Section */
.solargy-split {
    width: 100%;
}

/* Desktop Layout */
.split-container {
    display: flex;
    height: 520px;
}

/* Split Images */
.split-box {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Overlay Card */
.split-card {
    position: absolute;
    bottom: 60px;
    left: 50px;
    max-width: 360px;
    padding: 35px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Card Colors */
.white-card {
    background: #ffffff;
}

.dark-card {
    background: #004e63;
    color: #ffffff;
}

/* Text */
.split-card p {
    font-family: "Prata", serif;
    font-size: 24px;
    line-height: 1.4;
    margin: 15px 0 22px;
}

/* Link */
.split-card a {
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

/* Arrow */
.split-card a::after {
    content: "→";
    margin-left: 8px;
}

/* Colors */
.white-card p,
.white-card a {
    color: #233d63;
}

.dark-card p,
.dark-card a {
    color: #ffffff;
}

/* Icon */
.split-card .icon img {
    width: 48px;
}


/* ========================= */
/* ✅ TABLET RESPONSIVE */
/* ========================= */
@media (max-width: 992px) {
    .split-container {
        flex-direction: column;
        height: auto;
    }

    .split-box {
        height: 380px;
    }

    .split-card {
        left: 30px;
        right: 30px;
        bottom: 40px;
        max-width: unset;
    }

    .split-card p {
        font-size: 20px;
    }
}


/* ========================= */
/* ✅ MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 576px) {

    .split-box {
        height: 320px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .split-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin: 20px;
        width: calc(100% - 40px);
        padding: 25px 20px;
    }

    .split-card p {
        font-size: 18px;
    }

    .split-card .icon img {
        width: 40px;
    }

    .split-card a {
        font-size: 13px;
    }
}


/* About6 */
  .testimonial-section {
  background: #F5F5F5;
  padding: 90px 0;
}

.testimonial-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.testimonial-container .about6head {
  font-family: "Prata", serif;
  font-size: 42px;
  color: #233D63;
  margin-bottom: 60px;
  line-height: 1.3;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 4px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  text-align: left;
}

.stars {
  color: #fdb813;
  font-size: 25px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 18px;
  color: #5a677b;
  line-height: 1.8;
  margin-bottom: 35px;
    font-family: "Prata", serif;

}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info .testimonial {
  margin: 0;
  font-size: 22px;
  color: #233D63;
   font-family: "Prata", serif;

}

.client-info span {
  font-size: 18px;
  color: #777;
   font-family: "Outfit", sans-serif;

}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-container h2 {
    font-size: 30px;
  }
}

/* about 7 */

.experts-section {
  padding: 90px 0;
  background: #ffffff;
  text-align: center;
}

.experts-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.experts-container .heading1 {
  font-family: "Prata", serif;
  font-size: 48px;
  color: #233D63;
  margin-bottom: 20px;
}

.experts-desc {
  max-width: 750px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 1.8;
  color: #6B7280;
}

/* Grid */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.expert-card {
  text-align: center;
}

.expert-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.expert-card .teamname {
   font-family: "Prata", serif;
  font-size: 22px;
  color: #233D63;
  margin: 0;
}

.expert-card span {
  font-size: 15px;
  color: #6B7280;
  display: block;
  margin-top: 6px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experts-container h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .experts-grid {
    grid-template-columns: 1fr;
  }

  .expert-card img {
    height: 260px;
  }
}
