/* Import font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root{
  --green: #7ac943;
  --header-h: 72px;
  --dark: #0b0b0b;
}

/* Reset */
*{box-sizing:border-box;margin:0;padding:0}
html,body{
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body{
  font-family:"Poppins",sans-serif;
  color:#111;
  background:#fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  padding-top:var(--header-h); /* avoids header overlap */
}

/* HEADER */
header{
  position:fixed;top:0;left:0;right:0;
  height:var(--header-h);
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 40px;
  background:rgba(0,0,0,0.85);backdrop-filter: blur(4px);
  z-index:1500;
}
.logo{display:flex;align-items:center;gap:12px}
.logo img{height:52px;width:auto;display:block}
.logo h1{color:var(--green);font-size:18px;font-weight:700;letter-spacing:1px}

/* Desktop navbar */
.navbar{display:flex}
.navbar ul{display:flex;gap:22px;align-items:center;list-style:none}
.navbar a{color:#fff;text-decoration:none;font-weight:500;padding:6px 4px;transition:color .2s}
.navbar a:hover,.navbar a.active{color:var(--green)}
.btn{background:var(--green);color:#fff;padding:8px 16px;border-radius:28px;text-decoration:none}

/* ===== BANNER STYLES ===== */
.banner-container {
  position: relative;
  width: 100%;
  height: 70vh;
  max-height: 800px;
  margin: 0;
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  z-index: 1;
  overflow: hidden;
}

.banner-slide.active {
  opacity: 1;
  z-index: 2;
}

.banner-content {
  position: absolute;
  bottom: 100px;
  left: 10%;
  max-width: 600px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease-out 0.3s;
}

.banner-slide.active .banner-content {
  transform: translateY(0);
  opacity: 1;
}

.banner-text {
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 15px;
  line-height: 1.2;
}

.banner-subtext {
  color: white;
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
  margin-bottom: 30px;
  line-height: 1.6;
}

.banner-button {
  display: inline-block;
  background: var(--green);
  color: #333;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.banner-button:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.banner-navigation {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
  outline: none;
}

.banner-dot.active {
  background-color: var(--green);
  transform: scale(1.2);
}

/* Floating Buttons */
.floating-btns {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.floating-btns:hover {
  opacity: 1;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #004aad, #ff7b00);
  color: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  text-decoration: none;
}

.float-btn i {
  font-size: 20px;
  transition: transform 0.4s ease;
}

.float-btn span {
  position: absolute;
  right: 60px;
  background: rgba(0, 0, 0, 0.85);
  padding: 8px 14px;
  border-radius: 30px;
  color: #fff;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.float-btn:hover span {
  opacity: 1;
  transform: translateX(0);
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 128, 0, 0.4);
}

.float-btn.call {
  background: linear-gradient(135deg, #25d366, #128C7E);
}

.float-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128C7E);
}

.float-btn.help {
  background: linear-gradient(135deg, #ff7b00, #ff5500);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-btn {
  animation: floaty 3s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .banner-text {
    font-size: 2.8rem;
  }
  
  .banner-subtext {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .banner-container {
    height: 70vh;
  }
  
  .banner-content {
    left: 5%;
    right: 5%;
    text-align: center;
  }
  
  .banner-text {
    font-size: 2.2rem;
  }
  
  .banner-subtext {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .banner-button {
    padding: 12px 30px;
  }
  
  .floating-btns {
    bottom: 20px;
    right: 20px;
  }
  
  .float-btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .banner-container {
    height: 60vh;
  }
  
  .banner-text {
    font-size: 1.8rem;
  }
  
  .banner-subtext {
    font-size: 0.95rem;
  }
  
  .banner-button {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  
  .floating-btns {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  
  .float-btn {
    width: 45px;
    height: 45px;
  }
  
  .float-btn i {
    font-size: 18px;
  }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  
  .btn {
    background: var(--green);
    color: #fff;
    padding: 8px 16px;
    border-radius: 28px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
    display: inline-block;
  }

/* Pulse animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  
  .btn {
    background: var(--green);
    color: #fff;
    padding: 8px 16px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
    display: inline-block;
  }
  
  .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      background-color: rgb(10, 10, 10);
    }
    .btn-primary {
        background: var(--green);
        color: #fff;
        padding: 8px 16px;
        border-radius: 15px;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: pulse 2s infinite;
        display: inline-block;
      }
      
    .btn-primary:hover {
          transform: translateY(-2px);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          background-color: rgb(10, 10, 10);
        }
/* Hamburger (hidden on desktop) */
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer}
.hamburger span{width:26px;height:3px;background:#fff;border-radius:3px;display:block;transition:transform .25s,opacity .25s}

/* HERO */
.hero{position:relative;height:calc(60vh - var(--header-h));min-height:300px;overflow:hidden}
.hero video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55));}
.hero-content{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);text-align:center;color:#fff;z-index:2;padding:18px;max-width:1100px}
.hero-content h2{font-size:3rem;margin-bottom:10px}
.hero-content h2 span{color:var(--green)}
.hero-content p{font-size:1.1rem;margin-bottom:18px}
.btn-primary{background:var(--green);padding:12px 26px;border-radius:30px;color:#fff;text-decoration:none;font-weight:600}

/* Sections */
.section{padding:70px 10%;text-align:center}
.section.dark{background:#0f0f0f;color:#eee}
.section h2{color:var(--green);margin-bottom:14px;font-size:2rem}
.section p{max-width:900px;margin:0 auto;line-height:1.7}

/* Footer */
footer{background:#000;color:#bfbfbf;padding:18px;text-align:center;font-size:.95rem}

/* Responsive adjustments for FAQ and Contact sections */
@media (max-width: 1024px) {
  .faq-contact-container {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-container,
  .contact-form-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
  }
  
  .faq-item {
    margin-right: 0;
  }
}

/* MOBILE / TABLET */
@media (max-width:900px){
  header{padding:10px 18px}
  .logo h1{font-size:15px}
  .navbar{display:none;position:fixed;top:var(--header-h);right:14px;width:86vw;max-width:300px;background:rgba(0,0,0,0.95);border-radius:10px;padding:18px;transform:translateX(110%);transition:transform .25s ease-in-out}
  .navbar.active{transform:translateX(0%)}
  .hamburger{display:flex}
}

/* ========== CLIENTS SECTION ========== */
#clients.section {
    padding: 60px 10% 40px;
    background: url('../images/whitebg2.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
  }
.clients-section {
    background: url('../images/whitebg2.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 10%;
    text-align: center;
  }
  
  .clients-heading h2 {
    font-size: 2.5rem;
    color: #39a845;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
  }
  
  .clients-heading p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 50px;
  }
  
  /* Infinite Logo Slider */
  .client-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 80px;
  }
  
  .client-track {
    display: flex;
    width: calc(200px * 10);
    animation: scroll 25s linear infinite;
  }
  
  .client-logo {
    width: 200px;
    padding: 20px;
  }
  
  .client-logo img {
    width: 100%;
    height: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
  }
  
  .client-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
  }
  
  /* Logo Scroll Animation */
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* ========== TESTIMONIALS SECTION ========== */
  .testimonials {
  margin-top: 50px;
  /* Full-bleed to counter parent 10% horizontal padding */
  margin-left: calc(-10%);
  margin-right: calc(-10%);
}
  
  .testimonials h3 {
    font-size: 2rem;
    color: #111;
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  .testimonial-container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
  
  .testimonial-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 16px 18px;
  flex: 1;
  min-width: 0; /* Allows flex items to shrink below their minimum content size */
  text-align: left;
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease-in-out;
}
  
  /* Responsive adjustments */
  @media (max-width: 1024px) {
    .testimonial-container {
      flex-wrap: wrap;
      justify-content: center;
    }
    .testimonial-card {
      flex: 0 0 calc(50% - 20px);
      max-width: calc(50% - 20px);
    }
  }
  
  @media (max-width: 768px) {
    .testimonial-card {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }
  
  .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  }
  
  .testimonial-card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.45;
  font-style: italic;
}
  
  .testimonial-card span {
  display: block;
  font-weight: 600;
  color: #39a845;
  font-size: 0.9rem;
}
  
  /* Animation */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
  .testimonials { margin-left: calc(-10%); margin-right: calc(-10%); }
  .client-logo {
    width: 120px;
    padding: 10px;
  }
  .testimonials h3 {
    font-size: 1.5rem;
  }
  .testimonial-card {
    max-width: 100%;
    border-radius: 12px;
    padding: 14px 16px;
  }
}

  /* ================= featurs SECTION ================= */

  #features.section {
    padding: 60px 10% 40px;
    background: url('../images/blackbg2.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
  }

  /* ================= PERFORMANCE OVERVIEW ================= */
  #performance.section {
    background-image: url('../images/whitebg2.jpg');
    background-size: cover;
    background-position: center;
  }
.performance-section {
    background: transparent;
    padding: 80px 10%;
    text-align: center;
    overflow: hidden;
  }
  
  .performance-section .section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #7ac943; /* Deep green for solar theme */
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .performance-section .section-heading::after {
    content: "";
    width: 100px;
    height: 4px;
    background: #4d7c38; /* Yellow accent from logo */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    border-radius: 5px;
  }
  
  .performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: center;
  }
  
  .performance-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  
  .performance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .performance-card h3 {
    font-size: 2.2rem;
    color: #7ac943;
    font-weight: 800;
    margin-bottom: 10px;
    transition: color 0.3s ease;
  }
  
  .performance-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }
  
  .performance-card:hover h3 {
    color: #4d7c38;
  }
  
  @media (max-width: 768px) {
    .performance-section {
      padding: 60px 5%;
    }
  
    .performance-card {
      padding: 30px 20px;
    }
  
    .performance-card h3 {
      font-size: 1.8rem;
    }
  }
  
  /* Slide Left Animation */
 .slide-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s ease-out;
  }
  
  .slide-left.show {
    opacity: 1;
    transform: translateX(0);
  }

  /* ===== Slide Right ===== */
.slide-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s ease-out;
  }
  
  .slide-right.show {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* ===== Slide Up ===== */
  .slide-up {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s ease-out;
  }
  
  .slide-up.show {
    opacity: 1;
    transform: translateY(0);
  }
  
    #contact.section.dark {
    background-image: url('../images/blackbg2.jpg');
    background-size: cover;
    background-position: center;
  }