/* =========================================================
   F CHOICE SOLAR — style.css
   ========================================================= */

/* ----- CSS Variables ----- */
:root {
  --navy: #0d1b3e;
  --navy-mid: #112255;
  --blue: #1565C0;
  --yellow: #F5A623;
  --yellow-dark: #e0941a;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --text-light: #555e6e;
  --card-bg: rgba(255,255,255,0.97);
  --navbar-h: 72px;
  --stats-bar-h: 88px;
  --font-main: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}
/* ================
back to  top
=================*/
.back-to-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#0b347d;
    color:#fff;

    border-radius:50%;
    text-decoration:none;

    font-size:22px;

    box-shadow:0 5px 15px rgba(0,0,0,.25);
    transition:all .3s ease;

    z-index:9999;
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
}

.back-to-top:hover{
    background:#ffc107;
    color:#0b347d;
    transform:translateY(-4px);
}
.back-to-top{
    animation:floatUp 2s infinite ease-in-out;
}

@keyframes floatUp{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-6px);
    }
}
/* =========================================================
   NAVBAR
   ========================================================= */
.site-navbar {
  height: var(--navbar-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
  z-index: 1000;
}

.site-navbar.scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,0.14);
}

/* Logo */
.navbar-logo {
    height: 90px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}
.navbar-nav .nav-link.active {
  color: var(--blue) !important;
}

.navbar-nav .nav-link.active::after {
  width: 60%;
}
/* Nav links */
.navbar-nav .nav-link {
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.7px;
  color: var(--navy) !important;
  padding: 8px 10px !important;
  position: relative;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--yellow);
  transform: translateX(-50%);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 60%; }

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--blue) !important; }

/* Dropdown */
.dropdown-menu {
  border: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 170px;
}

.dropdown-item {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  color: var(--navy);
  transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover { background: var(--off-white); color: var(--blue); }
/*dropdown activecode*/
.navbar .nav-link.active {
    color: #f7931e !important;
    font-weight: 600;
}

.dropdown-item.active,
.dropdown-item:active {
    background: #f7931e;
    color: #fff !important;
}

.dropdown-toggle.active {
    color: #f7931e !important;
}
.nav-link.active,
.dropdown-toggle.active {
    color: #f7931e !important;
    font-weight: 600;
}

.dropdown-item.active {
    background: #f7931e;
    color: #fff !important;
}
/* CTA Button */
.btn-consultation {
  background: var(--yellow);
  color: var(--navy) !important;
  font-family: var(--font-main);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(245,166,35,0.35);
}

.btn-consultation:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.45);
}

.btn-phone-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white) !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  border: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.btn-phone-circle:hover { background: var(--blue); transform: scale(1.08); }

/* Shine effect */
.shine-btn { position: relative; overflow: hidden; }
.shine-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.45s ease;
}
.shine-btn:hover::before { left: 130%; }
.navbar-brand {
  margin: 0 !important;
  padding: 0 !important;
}
@media (max-width:991.98px){

  .navbar-collapse.show{
    animation: mobileMenu .35s ease;
  }

  @keyframes mobileMenu{
    from{
      opacity:0;
      transform:translateY(-15px);
    }
    to{
      opacity:1;
      transform:translateY(0);
    }
  }

}
@media (max-width:991.98px){
  .hero-section{
    padding-top:90px;
  }
}


/* ==========================================
   MOBILE NAVBAR FIX
   ========================================== */
@media (max-width: 991.98px) {

  .site-navbar {
    background: #fff !important;
    height: auto;
    min-height: 70px;
    padding: 10px 0;
  }

  /* Logo */
  .navbar-logo {
    height: 55px;
    width: auto;
  }

  /* Container */
  .site-navbar .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Hamburger */
  .navbar-toggler {
    border: 2px solid rgba(0,0,0,0.15);
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: none !important;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  /* Mobile Menu */
  .navbar-collapse {
    background: #ffffff;
    margin-top: 12px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  }

  .navbar-nav {
    align-items: flex-start !important;
    gap: 0 !important;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 12px 0 !important;
    font-size: 0.9rem;
    border-bottom: 1px solid #f1f1f1;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  /* Dropdown */
  .dropdown-menu {
    border: none;
    box-shadow: none;
    background: #f8f9fa;
    margin-left: 10px;
  }

  /* Buttons */
  .navbar-collapse .d-flex {
    flex-direction: column;
    width: 100%;
    gap: 15px !important;
    margin-top: 20px;
  }

  .btn-consultation {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 12px;
    font-size: 0.85rem;
  }

  .btn-phone-circle {
    width: 50px;
    height: 50px;
    margin: auto;
  }
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--stats-bar-h));
  min-height: 560px;
  max-height: 620px;
  margin-top: var(--navbar-h);
  overflow: hidden;
}

/* Parallax background */
.hero-bg {
  position: absolute;
  inset: -60px 0 -40px 0;
  background-image: url('img/solarheader.webp');
  background-size: cover;
  background-position: center 100%;
  will-change: transform;
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
	rgba(10,22,55,0.78) 0%,
    rgba(10,22,55,0.52) 20%,
	rgba(10,22,55,0.10) 30%    
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  padding-bottom: calc(var(--stats-bar-h) + 10px);
}

/* Hero Left */
.hero-heading {
  font-family: var(--font-cond);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.hero-highlight {
  color: var(--yellow);
  display: block;
}

.hero-divider {
  width: 48px;
  height: 3px;
  background: var(--yellow);
  margin: 18px 0 16px;
  border-radius: 2px;
}

.hero-sub {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}

.hero-sub strong {
  color: var(--yellow);
  font-weight: 700;
}

/* Hero CTA Button */
.btn-hero-cta {
  background: var(--yellow);
  color: var(--navy) !important;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 13px 26px;
  border-radius: 6px;
  border: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 5px 18px rgba(245,166,35,0.40);
}

.btn-hero-cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.50);
}

/* =========================================================
   WHY SOLAR CARD
   ========================================================= */
.why-solar-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 28px 28px 28px 28px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.22);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(2px);
}

/* Header row */
.why-solar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.ws-dash {
  display: inline-block;
  width: 28px;
  height: 2.5px;
  background: var(--yellow);
  border-radius: 2px;
}

.ws-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--text-light);
  text-transform: uppercase;
}

/* Title */
.ws-title {
  font-family: var(--font-cond);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.ws-title-highlight { color: var(--yellow); }

.ws-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* Feature list */
.ws-features { margin-bottom: 0; }

.ws-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.2s;
}

.ws-feature-item:last-child { border-bottom: none; }
.ws-feature-item:hover { background: rgba(245,166,35,0.04); border-radius: 6px; padding-left: 4px; }

.ws-icon-wrap {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.ws-feature-item:hover .ws-icon-wrap { transform: scale(1.1); }

.ws-icon-wrap.yellow { background: var(--yellow); color: var(--navy); }
.ws-icon-wrap.dark   { background: var(--navy); color: var(--white); }

.ws-feat-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.ws-feat-sub {
  font-size: 0.74rem;
  color: var(--text-light);
  line-height: 1.3;
}

/* Decorative bulb */
.ws-bulb-deco {
  position: absolute;
  right: -40px;
  bottom: 40px;
  opacity: 0.55;
  pointer-events: none;
  animation: floatBulb 4s ease-in-out infinite;
}

.bulb-img {
  width: 320px; /* same size as SVG */
  height: auto;
  display: block;
}

@keyframes floatBulb {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width:768px){

  .ws-bulb-deco{
      right:-20px;
  }

  .bulb-img{
      width:140px;
  }

}
/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: var(--stats-bar-h);
  z-index: 10;
  background: rgba(15,27,62,0.95);
  backdrop-filter: blur(4px);
}

.stats-row {
  height: var(--stats-bar-h);
  display: flex;
  align-items: center;
}

.stats-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
  height: 100%;
}

.stats-item:last-child { border-right: none; }

.stats-icon {
  font-size: 1.7rem;
  color: var(--yellow);
  opacity: 0.9;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.stats-item:hover .stats-icon { transform: scale(1.15) rotate(-8deg); }

.stats-num {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stats-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 2px;
}

/* =========================================================
   SOLUTIONS SECTION
   ========================================================= */
.solutions-section {
  background: var(--off-white);
  padding: 56px 0 48px !important;
}

.section-title {
  font-family: var(--font-cond);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub{
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.title-accent { color: var(--yellow); }

.section-sub {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}

/* =========================================================
   FADE-UP ANIMATIONS
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.delay-2 { transition-delay: 0.12s; }
.delay-3 { transition-delay: 0.22s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.42s; }
.delay-6 { transition-delay: 0.52s; }
.delay-7 { transition-delay: 0.18s; }

/* =========================================================
   RESPONSIVE TWEAKS
   ========================================================= */
@media (max-width: 991px) {
  .hero-section { max-height: none; height: auto; min-height: auto; }
  .hero-inner { padding-top: 40px; padding-bottom: 20px; }
  .hero-right { margin-top: 30px; }
  .stats-bar { position: relative; bottom: auto; }
  .why-solar-card { margin-bottom: 20px; }
}

@media (max-width: 767px) {
  .hero-heading { font-size: 2.2rem; }
  .ws-title { font-size: 1.3rem; }
  .stats-item { padding: 0 14px; gap: 8px; }
  .stats-num { font-size: 0.95rem; }
}
/* =========================================================
   EXTRA GLOBAL SECTION STYLES
========================================================= */

.section-mini-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 18px;
}

.section-mini-tag span {
  width: 28px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

/* =========================================================
   TRUST SECTION
========================================================= */

.trust-section {
  background: #fff;
  position: relative;
}

.trust-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.trust-img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.14);
}

.trust-badge {
  position: absolute;
  right: 15px;
  bottom: 30px;
  background: var(--yellow);
  color: var(--navy);
  padding: 18px 20px;
  border-radius: 14px;
  max-width: 210px;
  box-shadow: 0 10px 30px rgba(245,166,35,0.35);
}

.trust-badge span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-cond);
}

.trust-badge small {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
}

.trust-feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trust-feature-item {
  display: flex;
  gap: 18px;
  padding: 18px;
  border-radius: 14px;
  background: var(--off-white);
  transition: all 0.3s ease;
}

.trust-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.trust-feature-item i {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trust-feature-item h6 {
  font-weight: 800;
  margin-bottom: 6px;
}

.trust-feature-item p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text-light);
}
.trust-section,
.trust-section .container,
.trust-section .row,
.trust-section .col-lg-6 {
  max-width: 100%;
}
@media (max-width: 576px) {

  .trust-feature-item {
    gap: 12px;
    padding: 14px;
    overflow: hidden;
  }

  .trust-feature-item div {
    min-width: 0;
  }

  .trust-feature-item h6,
  .trust-feature-item p {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .trust-section .row {
    margin-left: 0;
    margin-right: 0;
  }

}
@media (max-width: 767px) {

  .trust-badge {
    right: 10px;
    bottom: 10px;
    max-width: 140px;
    padding: 10px 12px;
  }

  .trust-badge span {
    font-size: 1.25rem;
  }

  .trust-badge small {
    font-size: 0.65rem;
    line-height: 1.3;
  }

}

/* =========================================================
   PROCESS SECTION
========================================================= */

.process-section {
  background: var(--off-white);
}

.process-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 26px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.04);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.process-number {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-cond);
  color: rgba(21,101,192,0.08);
}

.process-icon {
  width: 82px;
  height: 82px;
  background: linear-gradient(135deg, var(--yellow), #ffbf47);
  color: var(--navy);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  box-shadow: 0 12px 28px rgba(245,166,35,0.28);
}

.process-card h5 {
  font-weight: 800;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* =========================================================
   ENERGY CTA SECTION
========================================================= */

.energy-cta-section {
  position: relative;
  padding: 110px 0;
  background-image: url('https://images.unsplash.com/photo-1497440001374-f26997328c1b?q=80&w=1400&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.energy-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13,27,62,0.92),
    rgba(13,27,62,0.72)
  );
}

.energy-title {
  font-family: var(--font-cond);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

.energy-title span {
  color: var(--yellow);
  display: block;
}

.energy-sub {
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  max-width: 760px;
  margin: 24px auto 0;
  font-size: 0.95rem;
}

.energy-outline-btn {
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
/* =========================================================
   PRODUCTS SECTION
========================================================= */

.products-section {
    background: var(--off-white);
}

.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.product-image {
    width: 100%;
    height: 240px; /* Same size for all images */
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps all images same size */
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-card h5 {
    font-weight: 800;
    color: var(--navy);
    padding: 20px 20px 10px;
    margin: 0;
}

.product-card p {
    padding: 0 20px 25px;
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.86rem;
}

@media(max-width:768px){

    .product-image{
        height:220px;
    }

}
/* =========================================================
   SERVICES SECTION
========================================================= */

.services-section {
  background: #fff;
}

.service-card {
  background: var(--off-white);
  border-radius: 18px;
  padding: 35px 28px;
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(245,166,35,0.08),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  box-shadow: 0 10px 24px rgba(13,27,62,0.18);
}

.service-card h5 {
  font-weight: 800;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

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

@media (max-width: 991px) {

  .trust-badge {
    right: 15px;
    bottom: 15px;
  }

  .energy-cta-section {
    padding: 80px 0;
  }

}

@media (max-width: 767px) {

  .energy-title {
    font-size: 2rem;
  }

  .process-card,
  .service-card {
    padding: 28px 22px;
  }

}

/* =========================================================
   FOOTER
========================================================= */

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  position: relative;
  background-image: url('img/footer-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: rgba(255,255,255,0.75);
  overflow: hidden;
}

/* Dark Overlay */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(13,27,62,0.95),
    rgba(13,27,62,0.88)
  );

  z-index: 1;
}

.footer-top {
  padding: 80px 0 50px;
  position: relative;
  z-index: 2;
}

/* Logo */

.footer-logo-box {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--yellow), #ffbf47);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.5rem;
  box-shadow: 0 10px 24px rgba(245,166,35,0.25);
}

.footer-logo-text {
  font-family: var(--font-cond);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.footer-logo-text span {
  color: var(--yellow);
}

.footer-tagline {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
}

.footer-about {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.72);
  max-width: 360px;
}

/* Footer Titles */

.footer-title {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

/* Links */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--yellow);
  padding-left: 6px;
}

/* Social */

.footer-socials a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-socials a:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-4px);
}

/* Contact */

.business-hours{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:20px;
    color:rgba(255,255,255,.8);
}

.business-hours i{
    color:var(--yellow);
    font-size:18px;
    margin-top:3px;
}

.business-hours strong{
    color:#fff;
    display:block;
    margin-bottom:2px;
}

.footer-btn{
    display:inline-block;
    background:var(--yellow);
    color:#111;
    padding:12px 22px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.footer-btn:hover{
    transform:translateY(-3px);
}/* Footer Bottom */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
/* Footer Content Above Overlay */

.footer-top,
.footer-bottom {
  position: relative;
  z-index: 2;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--yellow);
}

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

@media (max-width: 991px) {

  .footer-top {
    padding: 65px 0 40px;
  }

}

@media (max-width: 767px) {

  .footer-top {
    padding: 55px 0 30px;
  }

  .footer-title {
    margin-top: 10px;
  }

  .footer-bottom {
    text-align: center;
  }

}


/* =========================================================
   ABOUT PAGE — Appended to existing style.css
   ========================================================= */

/* ── Extra delay utilities ── */
.delay-1  { transition-delay: 0.06s; }
.delay-8  { transition-delay: 0.60s; }


/* =========================================================
   ABOUT HERO BANNER
   ========================================================= */
.about-hero {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;  
}

.about-hero-bgabout {
  position: absolute;
  inset: -60px 0 -60px 0;
  background-image: url('img/solarhead.webp');
  background-size: cover;
  background-position: center 68%;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Fallback gradient if image missing */
.about-hero-bgabout-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1b3e 0%, #1565C0 20%);
  z-index: 0;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(9,18,46,0.92) 0%,
    rgba(9,18,46,0.72) 40%,
    rgba(9,18,46,0.22) 100%
  );
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 0;
}

/* Label row */
.about-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.about-label-dash {
  display: inline-block;
  width: 26px;
  height: 2.5px;
  background: var(--yellow);
  border-radius: 2px;
}

.about-label-text {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--yellow);
  text-transform: uppercase;
}

/* Heading */
.about-heading {
  font-family: var(--font-cond);
  font-size: clamp(2.6rem, 5.5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-transform: none;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.about-heading-yellow {
  color: var(--yellow);
  display: block;
}

.about-subline {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(255,255,255,0.86);
  letter-spacing: 0.4px;
}

/* =========================================================
   ABOUT CONTENT SECTION
   ========================================================= */
.about-content-section {
  background: var(--white);
  padding: 44px 0 0;
}

/* ── Photo column ── */
.about-photo-col {
  flex-shrink: 0;
  width: 288px;
}

.about-photo-wrap {
  position: relative;
  width: 288px;
  height: 316px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 38px rgba(0,0,0,0.16);
  transition: box-shadow 0.3s, transform 0.3s;
}

.about-photo-wrap:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
  transform: translateY(-4px);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}

.about-photo-wrap:hover .about-photo {
  transform: scale(1.05);
}

/* Branding badge at bottom of photo */
.photo-brand-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(13,27,62,0.90);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
}

.photo-brand-name {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
}

.photo-brand-name sup {
  font-size: 0.45rem;
}

.photo-brand-tagline {
  font-size: 0.55rem;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}

/* ── Overview column ── */
.about-overview-col {
  flex: 1;
  padding: 0 38px 40px 36px;
  border-right: 1px solid #e4eaf3;
}

.overview-title {
  font-family: var(--font-main);
  font-size: 1.0rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.overview-divider {
  width: 36px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: 20px;
}

.overview-para {
  font-size: 0.839rem;
  line-height: 1.5;
  color: #333d50;
  margin-bottom: 14px;
}

.overview-para:last-child {
  margin-bottom: 0;
}

/* ── Mission / Vision column ── */
.about-mv-col {
  flex-shrink: 0;
  width: 590px;
  display: flex;
}

/* Cards */
.mv-card {
  flex: 1;
  padding: 26px 22px 14px;
  position: relative;
  overflow: hidden;
  background: var(--white);
  transition: background 0.2s;
}

.mv-card:hover {
  background: #f8fafd;
}

.mission-card {
  border-left: 1px solid #e4eaf3;
  border-right: 1px solid #e4eaf3;
}

.mv-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.mv-icon-wrap {
  width: 54px;
  height: 54px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.25s;
}

.mv-card:hover .mv-icon-wrap {
  background: var(--blue);
  transform: scale(1.1) rotate(6deg);
}

.mv-card-title {
  font-family: var(--font-cond);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 1px;
}

.mv-title-underline {
  width: 32px;
  height: 2.5px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: 16px;
  margin-left: 68px;
}

/* Mission list */
.mv-list {
  margin-bottom: 0;
}

.mv-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: #333d50;
  line-height: 1.55;
  margin-bottom: 11px;
}

.mv-check {
  color: var(--yellow);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Vision text */
.mv-vision-text {
  font-size: 0.875rem;
  line-height: 1.72;
  color: #333d50;
}

/* Decorative outline SVG at card bottom */
.mv-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* =========================================================
   ABOUT STATS BAR  (solid, not absolute — sits below content)
   ========================================================= */
.about-stats-bar {
  background: var(--navy);
  padding: 0;
}

.about-stats-row {
  display: flex;
  align-items: center;
  height: 90px;
}

.about-stats-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 100%;
  padding: 0 10px;
  cursor: default;
  transition: background 0.2s;
}

.about-stats-item:hover {
  background: rgba(255,255,255,0.05);
}

.about-stats-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.14);
  flex-shrink: 0;
}

.about-stats-icon {
  font-size: 1.95rem;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}

.about-stats-item:hover .about-stats-icon {
  transform: scale(1.2) rotate(-9deg);
}

.about-stats-num {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.about-stats-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  margin-top: 2px;
  line-height: 1.3;
}

/* =========================================================
   ABOUT RESPONSIVE
   ========================================================= */
@media (max-width: 1199px) {
  .about-mv-col { width: 580px; }
}

@media (max-width: 991px) {
  .about-hero { height: 260px; }
  .about-content-section { padding: 32px 0 0; }

  /* Stack columns */
  .about-content-row { flex-wrap: wrap !important; }
  .about-photo-col   { width: 100%; }
  .about-photo-wrap  { width: 100%; height: 240px; border-radius: 10px; }
  .about-overview-col {
    padding: 28px 0 28px;
    border-right: none;
    border-bottom: 1px solid #e4eaf3;
    width: 100%;
  }
  .about-mv-col { width: 100%; flex-direction: column; }
  .mission-card, .mv-card { border: none; border-top: 1px solid #e4eaf3; }

  .about-stats-row { flex-wrap: wrap; height: auto; padding: 10px 0; }
  .about-stats-item { min-width: 33%; height: 72px; }
  .about-stats-divider { display: none; }
}

@media (max-width: 575px) {
  .about-heading { font-size: 2.2rem; }
  .about-stats-item { min-width: 50%; }
}



/* =========================================
   SOLAR ECOSYSTEM
========================================= */
.solar-ecosystem-section{
    background:#f8fafc;
    padding:100px 0;
}

.ecosystem-wrap{
    position:relative;
    width:600px;
    height:600px;
    margin:auto;
}

.ecosystem-center{
    position:absolute;
    top:50%;
    left:50%;
    width:180px;
    height:180px;
    transform:translate(-50%,-50%);
    background:#0c1d4a;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    font-weight:800;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.eco-item{
    position:absolute;
    width:150px;
    height:150px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.eco-item:hover{
    transform:scale(1.08);
}

.eco-1{top:0;left:50%;transform:translateX(-50%);}
.eco-2{top:120px;right:0;}
.eco-3{bottom:120px;right:0;}
.eco-4{bottom:0;left:50%;transform:translateX(-50%);}
.eco-5{bottom:120px;left:0;}
.eco-6{top:120px;left:0;}
@media (max-width: 768px){

    .ecosystem-wrap{
        width:320px;
        height:320px;
    }

    .ecosystem-center{
        width:100px;
        height:100px;
        font-size:16px;
    }

    .eco-item{
        width:80px;
        height:80px;
        font-size:11px;
        padding:8px;
    }

    .eco-1{
        top:0;
        left:50%;
        transform:translateX(-50%);
    }

    .eco-2{
        top:60px;
        right:0;
    }

    .eco-3{
        bottom:60px;
        right:0;
    }

    .eco-4{
        bottom:0;
        left:50%;
        transform:translateX(-50%);
    }

    .eco-5{
        bottom:60px;
        left:0;
    }

    .eco-6{
        top:60px;
        left:0;
    }

}
.ecosystem-wrap{
    position:relative;
    width:min(600px, 100%);
    aspect-ratio:1;
    margin:auto;
}
.eco-item{
    width:clamp(80px, 18vw, 150px);
    height:clamp(80px, 18vw, 150px);
}

/* =========================================
   WHY F CHOICE
========================================= */
.why-choice-section{
    padding:100px 0;
    background:#0c1d4a;
}
.why-choice-section h2{
    color:#fff;
    font-size:27px;
    font-weight:800;
}

.choice-card{
    background:#fff;
    border-radius:25px;
    padding:40px;
    min-height:280px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.choice-card::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    background:#0c1d4a;
    opacity:.08;
    border-radius:50%;
    top:-40px;
    right:-40px;
}

.choice-card:hover{
    transform:translateY(-10px);
}

.choice-card span{
    font-size:60px;
    font-weight:800;
    color:#f5a623;
    display:block;
    margin-bottom:15px;
}

.choice-card h4{
    color:#0c1d4a;
    margin-bottom:15px;
}

/* =========================================
   NETWORK SECTION
========================================= */
.network-section{
    padding:100px 0;
    background:#fff;
}

.network-section h2{
    color:#0c1d4a;
    font-weight:800;
    margin-bottom:25px;
}

.network-section p{
    line-height:1.9;
    color:#5a6270;
}

/* =========================================================
   SOLUTIONS PAGE — Appended to existing style.css
   ========================================================= */

/* ── Delay utilities ── */
.delay-1  { transition-delay: 0.06s; }
.delay-8  { transition-delay: 0.60s; }

/* =========================================================
   SOLUTIONS HERO BANNER
   ========================================================= */
.sol-hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  margin-top: var(--navbar-h);
}

.sol-hero-bg {
  position: absolute;
  inset: -55px 0 -55px 0;
  background-image: url('img/Solar Backgrounds/10.webp');
  background-size: cover;
  background-position: center 33%;
  will-change: transform;
  transition: transform 0.1s linear;
}

.sol-hero-overlay {
  position: absolute;
   inset: 0;
  background: linear-gradient(
    100deg,
	rgba(10,22,55,0.78) 0%,
    rgba(10,22,55,0.52) 30%,
	rgba(10,22,55,0.10) 50%    
  );
}

.sol-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 96px; /* leave room for stats bar */
}

/* "— OUR SOLUTIONS" label */
.sol-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.sol-label-dash {
  width: 26px;
  height: 2.5px;
  background: var(--yellow);
  border-radius: 2px;
  flex-shrink: 0;
}
.sol-label-text {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--yellow);
  text-transform: uppercase;
}

/* Main heading */
.sol-heading {
  font-family: var(--font-cond);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.sol-heading-yellow { color: var(--yellow); }

/* Description paragraph */
.sol-desc {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.86);
  line-height: 1.75;
  max-width: 470px;
}

/* ── Stats bar embedded in hero ── */
.sol-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: rgba(13,27,62,0.90);
  backdrop-filter: blur(6px);
  z-index: 10;
}
.sol-stats-row {
  display: flex;
  align-items: center;
  height: 80px;
}
.sol-stats-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  padding: 0 8px;
  cursor: default;
  transition: background 0.2s;
  border-right: 1px solid rgba(255,255,255,0.11);
}
.sol-stats-item:last-child { border-right: none; }
.sol-stats-item:hover { background: rgba(255,255,255,0.05); }

.sol-stats-icon {
  font-size: 1.65rem;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.sol-stats-item:hover .sol-stats-icon { transform: scale(1.2) rotate(-9deg); }

.sol-stats-num {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.sol-stats-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  margin-top: 2px;
}

/* =========================================================
   SOLAR PROJECTS + POWER TRADING SECTION
   ========================================================= */
.sol-main-section {
  background: var(--white);
  padding: 52px 0 0;
}

/* ── LEFT: Solar Projects column ── */
.sol-projects-col {
  display: flex;
  flex-direction: column;
}

.sol-section-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.sol-section-tag-dash {
  width: 26px;
  height: 2.5px;
  background: var(--yellow);
  border-radius: 2px;
}
.sol-section-tag-text {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.sol-proj-headline {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.sol-proj-desc {
  font-size: 0.85rem;
  line-height: 1.72;
  color: var(--text-light);
  margin-bottom: 5px;
  max-width: 250px;
}

/* Mascot / hero image */
.sol-mascot-wrap {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 200px;
  padding-top: 0;
}
.sol-mascot-img {
  width: 180px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.18));
  animation: mascotFloat 3.5s ease-in-out infinite;
}
@keyframes mascotFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── MIDDLE: 3 Project Cards ── */
.sol-cards-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sol-proj-cards-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

/* Individual project card */
.sol-proj-card {
  flex: 1;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8edf4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.sol-proj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

.sol-proj-card-img {
  width: 100%;
  height: 150px;
  overflow: hidden;
  position: relative;
}
.sol-proj-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.sol-proj-card:hover .sol-proj-card-img img { transform: scale(1.07); }

/* Icon badge on card image */
.sol-card-icon-badge {
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  z-index: 2;
}

.sol-proj-card-body {
  padding: 40px 16px 18px;
}
.sol-proj-card-title {
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 4px;
}
.sol-proj-card-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}
.sol-proj-card-desc {
  font-size: 0.76rem;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
}

/* CTA banner inside cards column */
.sol-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  border-radius: 14px;
  padding: 20px 26px;
  gap: 16px;
}
.sol-cta-banner-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.sol-cta-banner-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(245,166,35,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.sol-cta-banner-title {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 2px;
}
.sol-cta-banner-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
}
.sol-cta-banner-btn {
  background: var(--yellow);
  color: var(--navy) !important;
  font-family: var(--font-main);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 13px 26px;
  border-radius: 8px;
  border: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(245,166,35,0.38);
}
.sol-cta-banner-btn:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 7px 20px rgba(245,166,35,0.48);
}

/* ── RIGHT: Power Trading column ── */
.sol-trading-col {
  display: flex;
  flex-direction: column;
}

.sol-trading-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.sol-trading-tag-dash {
  width: 26px;
  height: 2.5px;
  background: var(--yellow);
  border-radius: 2px;
}
.sol-trading-tag-text {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.sol-trading-headline {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.sol-trading-desc {
  font-size: 0.83rem;
  line-height: 1.72;
  color: var(--text-light);
  margin-bottom: 22px;
}

/* Energy type icons row */
.sol-energy-types {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 20px;
}
.sol-energy-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: default;
  transition: transform 0.2s;
}
.sol-energy-type:hover { transform: translateY(-4px); }

.sol-energy-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid #dde4ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sol-energy-type:hover .sol-energy-circle {
  border-color: var(--yellow);
  box-shadow: 0 4px 14px rgba(245,166,35,0.22);
}

/* Color per energy type */
.sol-energy-circle.solar  { color: #F5A623; }
.sol-energy-circle.wind   { color: #17B978; }
.sol-energy-circle.thermal{ color: #E74C3C; }
.sol-energy-circle.gas    { color: #3498DB; }
.sol-energy-circle.hydro  { color: #1ABC9C; }
.sol-energy-circle.bio    { color: #27AE60; }

.sol-energy-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-light);
}

/* Globe / world image */
.sol-globe-wrap {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  min-height: 200px;
  position: relative;
}
.sol-globe-img {
  width: 150%;
  height: 80%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  transition: transform 0.5s ease;
}
.sol-globe-wrap:hover .sol-globe-img { transform: scale(1.04); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1199px) {
  .sol-proj-cards-row { gap: 12px; }
  .sol-proj-card-img  { height: 130px; }
}
/* =========================================================
   MOBILE VIEW FIXES (SOLUTIONS PAGE)
========================================================= */
@media (max-width: 767.98px) {

  /* ---------- HERO ---------- */
  .sol-hero {
    height: auto;
    min-height: 300px;
    margin-top: 70px;
  }

  .sol-hero-bg {
    background-position: center center;
  }

  .sol-hero-content {
    justify-content: center;
    text-align: center;
    padding-bottom: 120px;
    padding-top: 40px;
  }

  .sol-label {
    justify-content: center;
  }

  .sol-heading {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .sol-desc {
    max-width: 100%;
    font-size: 0.85rem;
    margin: 0 auto;
  }

  /* ---------- STATS BAR ---------- */
  .sol-stats-bar {
    height: auto;
  }

  .sol-stats-row {
    flex-wrap: wrap;
    height: auto;
    padding: 0;
  }

  .sol-stats-item {
    width: 50%;
    min-width: 50%;
    height: 70px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .sol-stats-icon {
    font-size: 1.2rem;
  }

  .sol-stats-num {
    font-size: 0.95rem;
  }

  .sol-stats-label {
    font-size: 0.62rem;
  }

  /* ---------- MAIN SECTION ---------- */
  .sol-main-section {
    padding-top: 40px;
  }

  /* Left Column */
  .sol-projects-col {
    text-align: center;
    margin-bottom: 35px;
  }

  .sol-section-tag {
    justify-content: center;
  }

  .sol-proj-desc {
    max-width: 100%;
    margin: 0 auto 15px;
  }

  .sol-mascot-wrap {
    min-height: auto;
    margin-top: 0;
  }

  .sol-mascot-img {
    width: 120px;
  }

  /* ---------- PROJECT CARDS ---------- */
  .sol-proj-cards-row {
    flex-direction: column;
    gap: 15px;
  }

  .sol-proj-card {
    width: 100%;
    min-width: 100%;
  }

  .sol-proj-card-img {
    height: 180px;
  }

  .sol-proj-card-body {
    padding: 30px 18px 18px;
  }

  .sol-proj-card-title {
    font-size: 0.9rem;
  }

  .sol-proj-card-desc {
    font-size: 0.8rem;
  }

  /* ---------- CTA BANNER ---------- */
  .sol-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .sol-cta-banner-left {
    flex-direction: column;
    gap: 12px;
  }

  .sol-cta-banner-btn {
    width: 100%;
    justify-content: center;
  }

  /* ---------- POWER TRADING ---------- */
  .sol-trading-col {
    margin-top: 35px;
    text-align: center;
  }

  .sol-trading-tag {
    justify-content: center;
  }

  .sol-trading-desc {
    margin-bottom: 20px;
  }

  /* Energy Icons */
  .sol-energy-types {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .sol-energy-type {
    width: 30%;
  }

  .sol-energy-circle {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  /* Globe */
  .sol-globe-wrap {
    min-height: auto;
  }

  .sol-globe-img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

  .sol-heading {
    font-size: 1.75rem;
  }

  .sol-energy-type {
    width: 45%;
  }

  .sol-stats-item {
    width: 100%;
    min-width: 100%;
  }

  .sol-mascot-img {
    width: 100px;
  }

  .sol-proj-card-img {
    height: 160px;
  }
}

@media (max-width: 991px) {
  .sol-hero { height: auto; min-height: 320px; margin-top: 0; }
  .sol-hero-content { padding-bottom: 90px; }
  .sol-stats-row { flex-wrap: wrap; height: auto; padding: 8px 0; }
  .sol-stats-item { min-width: 33%; height: 65px; border: none;
                    border-bottom: 1px solid rgba(255,255,255,0.1); }
  .sol-main-section { padding: 36px 0 0; }
  .sol-proj-cards-row { flex-wrap: wrap; }
  .sol-proj-card { min-width: calc(50% - 8px); }
  .sol-energy-circle { width: 42px; height: 42px; font-size: 1.1rem; }
  .sol-mascot-img { width: 130px; }
}

@media (max-width: 575px) {
  .sol-heading { font-size: 2.4rem; }
  .sol-proj-card { min-width: 100%; }
  .sol-stats-item { min-width: 50%; }
  .sol-cta-banner { flex-direction: column; text-align: center; }
  .sol-cta-banner-left { flex-direction: column; text-align: center; }
}
/* ACTIVE MENU */
.navbar-nav .nav-link.active,
.navbar-nav .dropdown-toggle.active {
    color: #f7931e !important;
}

.navbar-nav .dropdown-item.active {
    background: #f7931e !important;
    color: #fff !important;
}

/* ==========================================================
   SUB-SOLUTION PAGES (Commercial / Residential / Industrial)
   Appended to existing style.css — nothing above changed
   ========================================================== */

/* ── Delay helpers ── */
.delay-1 { transition-delay: 0.06s; }
.delay-8 { transition-delay: 0.60s; }

/* ==========================================================
   SHARED HERO BANNER  (.page-hero)
   ========================================================== */
.page-hero {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  margin-top: var(--navbar-h);
}
.page-hero-bg {
  position: absolute;
  inset: -55px 0 -30px 0;
  background-size: cover;
  background-position: center 80%;
  will-change: transform;
  transition: transform 0.1s linear;
}
/* page-specific bg images */
.page-hero-bg.commercial  { background-image: url('img/solution/commercialhead.webp'); }
.page-hero-bg.residential { background-image: url('img/solution/residentialhead.webp'); }
.page-hero-bg.industrial  { background-image: url('img/solution/industrialhead.webp'); }

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(9,18,46,0.92) 0%,
    rgba(9,18,46,0.72) 28%,
    rgba(9,18,46,0.22) 40%,
    rgba(9,18,46,0.05) 50%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 8px;
}

/* Label row */
.page-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.page-label-dash {
  width: 26px; height: 2.5px;
  background: var(--yellow);
  border-radius: 2px;
}
.page-label-text {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--yellow);
  text-transform: uppercase;
}

/* Heading */
.page-heading {
  font-family: var(--font-cond);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.page-heading-yellow { color: var(--yellow); }

.page-subline {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.86);
  line-height: 1.72;
  max-width: 520px;
}

/* ==========================================================
   SHARED STATS BAR  (.page-stats-bar)
   ========================================================== */
.page-stats-bar {
  background: var(--navy);
  padding: 0;
}
.page-stats-row {
  display: flex;
  align-items: center;
  height: 82px;
}
.page-stats-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  padding: 0 10px;
  cursor: default;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s;
}
.page-stats-item:last-child { border-right: none; }
.page-stats-item:hover { background: rgba(255,255,255,0.05); }
.page-stats-icon {
  font-size: 1.75rem;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.page-stats-item:hover .page-stats-icon { transform: scale(1.2) rotate(-9deg); }
.page-stats-num {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.page-stats-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  margin-top: 2px;
}

/* ==========================================================
   SHARED OVERVIEW ROW  (.proj-overview-section)
   ========================================================== */
.proj-overview-section {
  background: var(--white);
  padding: 52px 0 0;
}

/* overview image */
.proj-overview-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.13);
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
}
.proj-overview-img-wrap:hover {
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
  transform: translateY(-4px);
}
.proj-overview-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.proj-overview-img-wrap:hover .proj-overview-img { transform: scale(1.05); }

/* overview text */
.proj-overview-text { padding: 0 0 0 10px; }

.proj-section-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.proj-section-tag-dash {
  width: 26px; height: 2.5px;
  background: var(--yellow);
  border-radius: 2px;
}
.proj-section-tag-text {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.proj-overview-title {
  font-family: var(--font-cond);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.proj-overview-title span { color: var(--yellow); }

.proj-overview-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 22px;
}

/* Key benefits checklist */
.proj-benefits { list-style: none; padding: 0; margin-bottom: 26px; }
.proj-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 10px;
  font-weight: 600;
}
.proj-benefit-item i {
  color: var(--yellow);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* CTA button inside overview */
.btn-proj-cta {
  background: var(--yellow);
  color: var(--navy) !important;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 5px 18px rgba(245,166,35,0.38);
}
.btn-proj-cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.48);
}

/* ==========================================================
   FEATURE CARDS ROW  (.proj-features-section)
   ========================================================== */
.proj-features-section {
  background: var(--off-white);
  padding: 52px 0;
}
.proj-features-title {
  font-family: var(--font-cond);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}
.proj-features-title span { color: var(--yellow); }
.proj-features-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.7;
}

.proj-feat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px 28px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.proj-feat-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.11);
}
.proj-feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.proj-feat-card:hover::before { transform: scaleX(1); }

.proj-feat-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #1a2c6e);
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 22px rgba(13,27,62,0.22);
  transition: transform 0.3s, box-shadow 0.3s;
}
.proj-feat-card:hover .proj-feat-icon {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 12px 30px rgba(13,27,62,0.3);
}

.proj-feat-card h5 {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.proj-feat-card p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0;
}

/* ==========================================================
   PROCESS / HOW IT WORKS  (.proj-process-section)
   ========================================================== */
.proj-process-section {
  background: var(--white);
  padding: 52px 0 56px;
}
.proj-process-title {
  font-family: var(--font-cond);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}
.proj-process-title span { color: var(--yellow); }
.proj-process-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 38px;
  line-height: 1.7;
}

.proj-step-card {
  background: var(--off-white);
  border-radius: 14px;
  padding: 30px 22px 26px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  border: 1px solid #eaeff6;
}
.proj-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
  background: var(--white);
}

.proj-step-number {
  position: absolute;
  top: 14px; right: 18px;
  font-family: var(--font-cond);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(21,101,192,0.07);
  line-height: 1;
}

.proj-step-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(245,166,35,0.28);
  transition: transform 0.3s;
}
.proj-step-card:hover .proj-step-icon { transform: scale(1.1) rotate(-8deg); }

.proj-step-card h5 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.proj-step-card p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

/* Connector arrow between steps */
.proj-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--yellow);
  padding-top: 30px;
  opacity: 0.7;
}

/* ==========================================================
   BOTTOM CTA BANNER  (.proj-cta-section)
   ========================================================== */
.proj-cta-section {
  background: var(--navy);
  padding: 40px 0;
}
.proj-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.proj-cta-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(245,166,35,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.proj-cta-title {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 4px;
}
.proj-cta-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}
.btn-cta-white {
  background: var(--yellow);
  color: var(--navy) !important;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 5px 18px rgba(245,166,35,0.38);
  flex-shrink: 0;
}
.btn-cta-white:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.48);
}

/* ==========================================================
   GALLERY ROW  (.proj-gallery-section)
   ========================================================== */
.proj-gallery-section {
  background: var(--off-white);
  padding: 52px 0 56px;
}
.proj-gallery-title {
  font-family: var(--font-cond);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}
.proj-gallery-title span { color: var(--yellow); }
.proj-gallery-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.proj-gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 6px 22px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.proj-gallery-img:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 36px rgba(0,0,0,0.16);
}
/*swiper*/
.projectSwiper{
    padding-bottom:50px;
}

.projectSwiper .swiper-slide{
    height:auto;
}

.proj-gallery-img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:14px;
    transition:.5s;
}

.proj-gallery-img:hover{
    transform:scale(1.04);
}

.swiper-pagination-bullet-active{
    background:var(--yellow);
}
/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 991px) {
  .page-hero { height: auto; min-height: 280px; }
  .page-hero-content { padding-bottom: 16px; }
  .page-stats-row { flex-wrap: wrap; height: auto; padding: 8px 0; }
  .page-stats-item { min-width: 33%; height: 64px; border: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .proj-overview-text { padding: 28px 0 0; }
  .proj-overview-img { height: 240px; }
  .proj-cta-inner { flex-direction: column; text-align: center; }
  .proj-step-arrow { display: none; }
}
@media (max-width: 575px) {
  .page-heading { font-size: 2.3rem; }
  .page-stats-item { min-width: 50%; }
}

/*SOLUTION COMERCIAL RESIDENTIAL INDUSTRIAL SHORT FORM*/
.solution-showcase{
    position:relative;
    overflow:hidden;
}

.solution-image-wrap{
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.solution-img{
    width:100%;
    height:500px;
    object-fit:cover;
    transition:all .6s ease;
}

.solution-showcase:hover .solution-img{
    transform:scale(1.05);
}

.solution-points{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.solution-points li{
    position:relative;
    padding-left:30px;
    margin-bottom:14px;
    color:var(--text-light);
}

.solution-points li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:var(--yellow);
    font-weight:700;
}
@media (max-width: 991px){

    .solution-img{
        height:350px;
    }

    .solution-showcase{
        text-align:center;
    }

    .solution-showcase .section-mini-tag{
        justify-content:center;
    }
	  .section-mini-tag span{
        display:none;
    }
    .section-mini-tag{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:12px;
    }

    .section-mini-tag::before,
    .section-mini-tag::after{
        content:'';
        width:40px;
        height:2px;
        background:var(--yellow);
        border-radius:2px;
        display:block;
    }
}
    .solution-showcase .section-title{
        text-align:center;
        margin-bottom:15px;
        line-height:1.2;
    }

    .solution-showcase .section-sub{
        text-align:center !important;
        margin:0 auto;
        max-width:650px;
    }

    .solution-points{
        max-width:450px;
        margin:25px auto;
        text-align:left;
    }

    .solution-showcase .btn{
        margin-top:10px;
    }

    .solution-image-wrap{
        margin-bottom:15px;
    }
}

@media (max-width: 767px){

    .solution-img{
        height:260px;
    }

    .solution-showcase{
        padding:60px 0;
    }

    .solution-showcase .section-title{
        font-size:clamp(1.8rem, 6vw, 2.5rem);
        line-height:1.15;
    }

    .solution-showcase .section-sub{
        font-size:0.95rem;
        line-height:1.8;
    }

    .solution-points li{
        font-size:0.92rem;
        margin-bottom:12px;
    }

    .solution-showcase .btn{
        width:100%;
        max-width:320px;
    }
}
@media(max-width:991px){

    .solution-img{
        height:350px;
    }

}

/* ==========================================================
   PRODUCTS PAGE — Appended to existing style.css
   Nothing above this line has been changed.
   ========================================================== */

/* ── delay helpers ── */
.delay-1 { transition-delay: 0.06s; }
.delay-8 { transition-delay: 0.60s; }

/* ==========================================================
   PRODUCTS HERO
   ========================================================== */
.prod-hero{
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-top: var(--navbar-h);

    background-image: url('img/producthead.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Subtle radial glow on right half */
.prod-hero::before{
    content:'';
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(13,27,62,.92) 0%,
        rgba(13,27,62,.75) 25%,
        rgba(13,27,62,.35) 55%,
        rgba(13,27,62,0) 100%
    );

    z-index:1;
}
/* Left content */
.prod-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}

/* "⊙ OUR PRODUCTS —" label */
.prod-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.prod-label-icon {
  width: 20px; height: 20px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.prod-label-icon::after {
  content: '';
  width: 7px; height: 7px;
  background: var(--yellow);
  border-radius: 50%;
}
.prod-label-text {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--yellow);
  text-transform: uppercase;
}
.prod-label-dash {
  flex: 1;
  height: 2px;
  background: var(--yellow);
  opacity: 0.5;
  max-width: 60px;
  border-radius: 2px;
}

/* Heading */
.prod-heading {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.prod-heading-yellow { color: var(--yellow); }

/* Yellow divider */
.prod-divider {
  width: 48px; height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: 18px;
}

/* Description */
.prod-hero-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.84);
  line-height: 1.75;
  max-width: 440px;
}


/* ==========================================================
   PRODUCTS GRID SECTION
   ========================================================== */
.prod-grid-section{
    padding:80px 0;
    background:#f8fafc;
}

.product-card{
    height:100%;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s ease;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.product-image{
    height:260px;
    background:#f5f7fb;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    text-align:center;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:20px;
    transition:.5s;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

.product-content{
    padding:28px;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
}


.product-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    background:var(--navy);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.2rem;
    margin:0 auto 18px;
}

.product-content h4{
    color:var(--navy);
    font-size:1.25rem;
    font-weight:800;
    margin-bottom:12px;
    text-align:center;
}
.product-content p{
    color:var(--text-light);
    line-height:1.8;
    margin-bottom:20px;
    min-height:90px;
    text-align:center;
}
.product-link{
    color:var(--yellow);
    text-decoration:none;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
}

.product-link i{
    margin-left:6px;
    transition:.3s;
}

.product-link:hover i{
    transform:translateX(6px);
}

@media(max-width:767px){

    .prod-grid-section{
        padding:60px 0;
    }

    .product-image{
        height:220px;
    }

    .product-content{
        padding:22px;
    }

}
/* ==========================================================
   BOTTOM TRUST BAR
   ========================================================== */
.prod-trust-bar {
  background: var(--navy);
  padding: 0;
}
.prod-trust-row {
  display: flex;
  align-items: stretch;
  height: 88px;
}
.prod-trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
  cursor: default;
  transition: background 0.2s;
}
.prod-trust-item:last-child { border-right: none; }
.prod-trust-item:hover { background: rgba(255,255,255,0.05); }

.prod-trust-icon {
  font-size: 1.7rem;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.prod-trust-item:hover .prod-trust-icon { transform: scale(1.2) rotate(-8deg); }

.prod-trust-title {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.prod-trust-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.58);
  margin-top: 2px;
  line-height: 1.3;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1199px) {
  .prod-hero-right { width: 52%; }
  .prod-hero-mascot { height: 82%; }
}
@media (max-width: 991px) {
  .prod-hero { height: auto; min-height: 340px; padding-bottom: 24px; }
  .prod-hero-right { position: relative; width: 100%; height: 220px; margin-top: 20px; }
  .prod-hero-mascot { height: 85%; right: 4%; }
  .prod-trust-row { flex-wrap: wrap; height: auto; padding: 8px 0; }
  .prod-trust-item { min-width: 50%; height: 72px; border-bottom: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 575px) {
  .prod-heading { font-size: 1.8rem; }
  .prod-trust-item { min-width: 100%; }
  .prod-item-imgbox { aspect-ratio: 1/1; }
}

/* ==========================================================
   PROJECTS PAGE — Appended to existing style.css
   Nothing above this line has been changed.
   ========================================================== */

/* ── delay helpers ── */
.delay-1 { transition-delay: 0.06s; }
.delay-8 { transition-delay: 0.60s; }

/* ==========================================================
   PROJECTS HERO BANNER
   ========================================================== */
.proj-page-hero {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  margin-top: var(--navbar-h);
}

.proj-page-hero-bg {
  position: absolute;
  inset: -55px 0 -55px 0;
  background-image: url('img/Solar Backgrounds/18.webp');
  background-size: cover;
  background-position: center 42%;
  will-change: transform;
  transition: transform 0.1s linear;
}

.proj-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(9,18,48,0.90) 0%,
    rgba(9,18,48,0.76) 25%,
    rgba(9,18,48,0.35) 35%,
    rgba(9,18,48,0.08) 50%
  );
}

.proj-page-hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

/* "⊙ OUR PROJECTS —" label */
.proj-page-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.proj-page-label-icon {
  width: 18px; height: 18px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.proj-page-label-icon::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--yellow);
  border-radius: 50%;
}
.proj-page-label-text {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--yellow);
  text-transform: uppercase;
}
.proj-page-label-dash {
  width: 40px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  opacity: 0.65;
}

/* Heading */
.proj-page-heading {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.proj-page-heading-yellow { color: var(--yellow); }

/* Description */
.proj-page-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.84);
  line-height: 1.75;
  max-width: 400px;
}

/* RIGHT SIDE STATS */
.proj-hero-stats{
    display:flex;
    gap:18px;
    justify-content:flex-end;
    align-items:stretch;
    flex-wrap:nowrap;
}

.proj-hero-stat-card{
    width:180px;
    min-height:180px;
    background:#0b3a97;
    border:0.05px solid #fff;
    border-radius:18px;
    padding:28px 20px;
    text-align:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    position:relative;
    overflow:hidden;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.08),
        0 15px 35px rgba(0,0,0,.25);
    transition:.4s ease;
}

.proj-hero-stat-card:hover{
    transform:translateY(-8px);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.15),
        0 25px 50px rgba(0,0,0,.35);
}

/* top shine */
.proj-hero-stat-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.12),
        transparent 40%
    );
    pointer-events:none;
}

.proj-hero-stat-icon{
    font-size:2rem;
    color:#ffffff;
    margin-bottom:20px;
    display:block;
    line-height:0.80;
}

.proj-hero-stat-num{
    font-size:1.2rem;
    font-weight:600;
    color:#f5b400;
    line-height:1;
    margin-bottom:10px;
    font-family:var(--font-cond);
}

.proj-hero-stat-label{
    font-size:0.80rem;
    font-weight:500;
    color:#fff;
    line-height:1;
    text-transform:none;
    letter-spacing:0;
}
/* ==========================================
   PROJECT TABLES
========================================== */

.proj-tables-section{
    background:#fff;
    padding:25px 0 40px;
}

.proj-table-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    border:1px solid #d8dee8;
    box-shadow:none;
}

/* Header */

.proj-table-header{
    background:#003b95;
    padding:14px 22px;
    border-bottom:1px solid rgba(255,255,255,.25);
}

.proj-table-header-icon{
    color:#fff;
    font-size:1.8rem;
}

.proj-table-header-title{
    color:#fff;
    font-size:1.05rem;
    font-weight:700;
    letter-spacing:.5px;
}

/* Table */

.proj-data-table{
    width:100%;
    border-collapse:collapse;
    font-size:.72rem;
    margin:0;
}

.proj-data-table thead tr{
    background:#003b95;
}

.proj-data-table thead th{
    color:#fff;
    font-size:.68rem;
    font-weight:600;
    text-transform:uppercase;
    text-align:center;
    padding:10px 8px;
    border:1px solid rgba(255,255,255,.15);
}

/* Body */

.proj-data-table tbody td{
    padding:8px 8px;
    text-align:center;
    border:1px solid #e4e9f1;
    color:#23304d;
    font-size:.68rem;
    font-weight:600;
}

.proj-data-table tbody tr:nth-child(odd){
    background:#f7f9fc;
}

.proj-data-table tbody tr:nth-child(even){
    background:#eef3f8;
}

.proj-data-table tbody tr:hover{
    background:inherit;
}

/* Client Column */

.proj-data-table tbody td:nth-child(2){
    font-weight:600;
    text-transform:uppercase;
}

/* Solar Column */

.proj-data-table tbody td:nth-child(3){
    color:#003b95;
    font-weight:600;
}

/* Number Column */

.proj-data-table th.col-num,
.proj-data-table td.col-num{
    width:55px;
    text-align:center;
}

/* Desktop height similar to screenshot */

@media(min-width:1200px){

    .proj-data-table tbody td{
        padding:7px 8px;
        font-size:.65rem;
    }

    .proj-data-table thead th{
        font-size:.65rem;
        padding:9px 6px;
    }
}/* ==========================================================
   BOTTOM TRUST / PILLARS BAR
   ========================================================== */
.proj-pillars-bar {
  background: var(--navy);
  padding: 0;
}

.proj-pillars-row {
  display: flex;
  align-items: stretch;
  height: 92px;
}

.proj-pillar-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 22px;
  border-right: 1px solid rgba(255,255,255,0.10);
  transition: background 0.2s;
  cursor: default;
}
.proj-pillar-item:last-child { border-right: none; }
.proj-pillar-item:hover { background: rgba(255,255,255,0.05); }

.proj-pillar-icon {
  font-size: 2rem;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.proj-pillar-item:hover .proj-pillar-icon { transform: scale(1.18) rotate(-8deg); }

.proj-pillar-title {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
  line-height: 1.2;
}
.proj-pillar-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.4;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1199px) {
  .proj-hero-stat-card { min-width: 120px; padding: 18px 14px 14px; }
  .proj-hero-stat-num  { font-size: 1.5rem; }
}
@media (max-width: 991px) {
  .proj-page-hero { height: auto; padding-bottom: 28px; }
  .proj-page-hero-inner { flex-direction: column; align-items: flex-start; gap: 24px; padding-top: 32px; }
  .proj-hero-stats { flex-wrap: wrap; justify-content: center; }
  .proj-hero-stat-card { min-width: calc(50% - 7px); }
  .proj-pillars-row { flex-wrap: wrap; height: auto; padding: 8px 0; }
  .proj-pillar-item { min-width: 50%; height: 72px; border-bottom: none; }
  .proj-data-table { font-size: 0.72rem; }
  .proj-data-table thead th,
  .proj-data-table tbody td { padding: 8px 10px; }
}
@media (max-width: 575px) {
  .proj-page-heading { font-size: 1.9rem; }
  .proj-hero-stats { gap: 10px; }
  .proj-hero-stat-card { min-width: calc(50% - 5px); }
  .proj-pillar-item { min-width: 100%; }
}
/* ==========================================================
   MOBILE HERO
========================================================== */

@media (max-width: 991px){

    .proj-page-hero{
        height:auto;
        min-height:650px;
    }

    .proj-page-hero-inner{
        padding:60px 0 40px;
        text-align:center;
    }

    .proj-page-hero-inner .row{
        justify-content:center;
    }

    /* Label */
    .proj-page-label{
        justify-content:center;
        margin-bottom:18px;
    }

    /* Heading */
    .proj-page-heading{
        text-align:center;
        font-size:clamp(2rem,7vw,3rem);
        line-height:1.15;
        margin-bottom:18px;
    }

    /* Description */
    .proj-page-desc{
        text-align:center;
        margin:0 auto 30px;
        max-width:600px;
    }

    /* Stats */
    .proj-hero-stats{
        justify-content:center;
        gap:14px;
        flex-wrap:wrap;
        margin-top:10px;
    }

    .proj-hero-stat-card{
        width:calc(50% - 10px);
        min-width:auto;
        min-height:150px;
        padding:22px 15px;
    }

    .proj-hero-stat-icon{
        font-size:1.8rem;
        margin-bottom:15px;
    }

    .proj-hero-stat-num{
        font-size:1.5rem;
    }

    .proj-hero-stat-label{
        font-size:0.75rem;
        line-height:1.4;
    }

}

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

    .proj-page-hero{
        min-height:auto;
    }

    .proj-page-heading{
        font-size:2rem;
    }

    .proj-page-desc{
        font-size:0.9rem;
        line-height:1.8;
    }

    .proj-hero-stat-card{
        width:100%;
        max-width:260px;
        margin:0 auto;
        min-height:140px;
    }

    .proj-page-label{
        gap:10px;
    }

    .proj-page-label-dash{
        width:30px;
    }

}

@media (max-width: 767px){

    .proj-page-hero-bg{
        background-position:center center;
    }

    .proj-page-hero-overlay{
        background:rgba(9,18,48,.82);
    }

}

/* ==========================================================
   FINANCE PAGE — Appended to existing style.css
   Nothing above this line has been changed.
   ========================================================== */

/* ── delay helpers ── */
.delay-1 { transition-delay: 0.06s; }
.delay-8 { transition-delay: 0.60s; }

/* ==========================================================
   FINANCE HERO BANNER
   Full-width, ~460px tall, bg image right + dark overlay left
   ========================================================== */
.fin-hero{
    position:relative;
    width:100%;
    height:550px;
    overflow:hidden;
    margin-top:var(--navbar-h);
}

.fin-hero-bg{
    position:absolute;
    inset:0;
    background:url('img/financehead.webp') center center/cover no-repeat;
}

.fin-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,34,102,.95) 0%,
        rgba(0,34,102,.90) 30%,
        rgba(0,34,102,.72) 50%,
        rgba(0,34,102,.25) 72%,
        transparent 100%
    );
}

.fin-hero-inner{
    position:relative;
    z-index:3;
    height:100%;
    display:flex;
    align-items:flex-start;
    padding-top:55px;
}

/* ===========================
   Heading
=========================== */

.fin-hero-heading{
    font-family:var(--font-cond);
    font-size: 50px;
    font-weight:750;
    color:#fff;
    line-height:1;
    margin-bottom:18px;
    text-transform:uppercase;
}

.fin-hero-heading .txt-yellow{
    color:#f5b400;
	font-family:var(--font-cond);
    font-size: 52px;
    font-weight:800;
}

.fin-hero-divider{
    width:95px;
    height:3px;
    background:#f5b400;
    border-radius:2px;
    margin-bottom:18px;
}

.fin-hero-sub{
    font-size:1rem;
    line-height:1.55;
    color:#fff;
    max-width:540px;
    margin-bottom:28px;
    font-weight:400;
}

/* ===========================
   Pills
=========================== */

.fin-features-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:6px;
    max-width:760px;
}

.fin-feature-pill{
    background:#fff;
    border-radius:7px;
    padding:5px 10px;
    min-height:56px;
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow:0 3px 12px rgba(0,0,0,.12);
    transition:.3s;
}

.fin-feature-pill:hover{
    transform:translateY(-2px);
}

.fin-pill-icon{
    width:28px;
    height:28px;
    border-radius:50%;
    background:#0b3a97;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1rem;
    flex-shrink:0;
}

.fin-pill-text{
    color:#0b3a97;
    font-size:.75rem;
    font-weight:600;
    line-height:1.3;
}

/* Last Pill */

.fin-feature-pill.col-span-2{
    grid-column:span 2;
    max-width:370px;
}

/* Left content spacing */

.fin-hero .col-xl-6:first-child{
    padding-left:35px;
}

/* ===========================
   Tablet
=========================== */

@media(max-width:991px){

    .fin-hero{
        height:auto;
        padding:70px 0;
    }

    .fin-hero-inner{
        padding-top:0;
        text-align:center;
    }

    .fin-hero-divider,
    .fin-hero-sub{
        margin-left:auto;
        margin-right:auto;
    }

    .fin-features-grid{
        grid-template-columns:1fr;
        max-width:100%;
    }

    .fin-feature-pill.col-span-2{
        grid-column:auto;
        max-width:100%;
    }

    .fin-hero-heading{
        font-size:2.8rem;
    }

    .fin-hero-sub{
        font-size:1rem;
    }
}

/* ===========================
   Mobile
=========================== */

@media(max-width:576px){

    .fin-hero{
        padding:55px 0;
    }

    .fin-hero-heading{
        font-size:2.2rem;
    }

    .fin-hero-divider{
        width:70px;
    }

    .fin-hero-sub{
        font-size:.9rem;
        line-height:1.6;
    }

    .fin-feature-pill{
        padding:10px 12px;
        min-height:50px;
    }

    .fin-pill-icon{
        width:34px;
        height:34px;
        font-size:.9rem;
    }

    .fin-pill-text{
        font-size:.82rem;
    }
}

/* ==========================================================
   INDUSTRIES SERVED SECTION
   ========================================================== */
/* ==========================================================
   INDUSTRIES SERVED
   ========================================================== */

.fin-industries-section{
    background:#fff;
    padding:25px 0 35px;
}

/* Heading */
.fin-section-title{
    text-align:center;
    font-size:3rem;
    font-weight:800;
    color:#0b2b6e;
    margin-bottom:5px;
    line-height:1;
}

.fin-section-title .txt-yellow{
    color:#f5b400;
}

.fin-section-divider{
    width:60px;
    height:3px;
    background:#f5b400;
    margin:10px auto 15px;
}

.fin-section-sub{
    text-align:center;
    max-width:700px;
    margin:0 auto 20px;
    font-size:.82rem;
    color:#5e6a85;
    line-height:1.5;
}

/* Card */
.fin-industry-card{
    border-radius:10px;
    overflow:hidden;
    background:#fff;
    border:1px solid #e8edf5;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    transition:.35s ease;
    position:relative;
    height:100%;
}

.fin-industry-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}
/* Image */
.fin-industry-img{
    width:100%;
    height:135px;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}

/* Circle Icon */
.fin-industry-icon-badge{
    position:absolute;
    left:50%;
    bottom:100px;
    transform:translateX(-50%);
    width:52px;
    height:52px;
    background:#fff;
    border-radius:50%;
    border:0.2px solid #0b3a97;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0b3a97;
    font-size:1.3rem;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    z-index:5;
    transition:.35s ease;
}

.fin-industry-card:hover .fin-industry-icon-badge{
    transform:translateX(-50%) translateY(-5px);
    background:#0b3a97;
    color:#fff;
}
.fin-industry-label{
    text-align:center;
    font-size:.82rem;
    font-weight:700;
    color:#08204e;
    line-height:1.35;
    padding:34px 12px 16px;
    min-height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Equal width cards */
.fin-industries-section .col-xl{
    flex:0 0 auto;
}
@media (min-width:1200px){

    .fin-industries-section .col-xl{
        flex:0 0 12.5%;
        max-width:12.5%;
    }

    .fin-row-2 .col-xl{
        flex:0 0 14%;
        max-width:14%;
    }

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

    .fin-section-title{
        font-size:2.2rem;
    }

    .fin-industry-img{
        height:85px;
    }

    .fin-industry-label{
        font-size:.72rem;
    }
}

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

    .fin-industries-section{
        padding:20px 0 30px;
    }

    .fin-section-title{
        font-size:1.8rem;
    }

    .fin-section-sub{
        font-size:.78rem;
    }

    .fin-industry-img{
        height:80px;
    }

    .fin-industry-icon-badge{
        width:34px;
        height:34px;
        font-size:.85rem;
    }

    .fin-industry-label{
        font-size:.68rem;
        padding:18px 6px 8px;
    }
}
/* ==========================================================
   BOTTOM CTA / TRUST BAR
   ========================================================== */
.fin-cta-bar {
  background: var(--navy);
  padding: 0;
}
.fin-cta-row {
  display: flex;
  align-items: stretch;
  min-height: 96px;
}

/* LEFT: invest text block */
.fin-cta-left {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 28px 20px 0;
  border-right: 1px solid rgba(255,255,255,0.12);
  flex: 0 0 auto;
  max-width: 380px;
}
.fin-cta-left-icon {
  font-size: 2.2rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.fin-cta-main-title {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}
.fin-cta-main-title .txt-yellow { color: var(--yellow); }
.fin-cta-main-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
}

/* RIGHT: 3 trust pills */
.fin-trust-items {
  flex: 1;
  display: flex;
  align-items: center;
}
.fin-trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 100%;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.10);
  transition: background 0.2s;
  cursor: default;
}
.fin-trust-item:last-child { border-right: none; }
.fin-trust-item:hover { background: rgba(255,255,255,0.05); }

.fin-trust-icon {
  font-size: 1.8rem;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.fin-trust-item:hover .fin-trust-icon { transform: scale(1.2) rotate(-8deg); }

.fin-trust-title {
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.fin-trust-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1199px) {
  .fin-features-grid { max-width: 100%; }
  .fin-cta-left { max-width: 300px; }
}
@media (max-width: 991px) {
  .fin-hero { height: auto; padding-bottom: 32px; }
  .fin-features-grid { grid-template-columns: 1fr; }
  .fin-feature-pill.col-span-2 { grid-column: span 1; max-width: 100%; }
  .fin-cta-row { flex-direction: column; height: auto; padding:none; }
  .fin-cta-left { max-width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0 0 20px; }
  .fin-trust-items { flex-wrap: wrap; }
  .fin-trust-item { min-width: 50%; height: 70px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .fin-industry-img { height: 120px; }
}
@media (max-width: 575px) {
  .fin-hero-heading { font-size: 2.4rem; }
  .fin-features-grid { gap: 8px; }
  .fin-trust-item { min-width: 100%; }
}


/* ==========================================================
   CONTACT US PAGE — Appended to existing style.css
   Nothing above this line has been changed.
   ========================================================== */
/* ── delay helpers ── */
.delay-1 { transition-delay: 0.06s; }
.delay-2 { transition-delay: 0.12s; }
.delay-3 { transition-delay: 0.20s; }
.delay-4 { transition-delay: 0.28s; }
.delay-5 { transition-delay: 0.36s; }
.delay-6 { transition-delay: 0.44s; }
.delay-7 { transition-delay: 0.52s; }
.delay-8 { transition-delay: 0.60s; }
.delay-9 { transition-delay: 0.68s; }
.delay-10 { transition-delay: 0.76s; }

:root{
    --navy:#01296b;
    --navy-dark:#001f54;
    --yellow:#ffc800;
    --white:#fff;
    --border:#dfe7f5;
}

/* =====================================================
   TEAM SECTION
===================================================== */

.contact-team-section{
    background:linear-gradient(
        180deg,
        #00317f,
        #01296b);
    padding:70px 30px;
}

.team-main-title{
    text-align:center;
    color:#fff;
    font-size:45px;
    font-weight:800;
    margin-bottom:10px;
	padding-top:50px;
}

.team-sub-label{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    color:var(--yellow);
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:50px;
}

.team-line{
    width:90px;
    height:2px;
    background:var(--yellow);
}

/* Swiper */

.teamSwiper{
    padding:20px 50px 60px;
}

.swiper-slide{
    height:auto;
}

.team-member{
    text-align:center;
}

.team-photo-frame{
    width:170px;
    height:220px;
    margin:auto;
    padding:4px;
    border-radius:12px;
    border:2px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    box-shadow:0 15px 30px rgba(0,0,0,.25);
}

.team-photo-frame img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:10px;
}

.team-member h4{
    margin-top:18px;
    color:var(--yellow);
    font-size:15px;
    font-weight:800;
    text-transform:uppercase;
}

.qualification{
    color:#fff;
    font-size:13px;
    margin-top:5px;
}

.designation,
.department{
    color:rgba(255,255,255,.85);
    font-size:13px;
    line-height:1.6;
}

.department{
    color:var(--yellow);
}

.swiper-button-next,
.swiper-button-prev{
    color:var(--yellow);
}

.swiper-pagination-bullet{
    background:#fff;
}

.swiper-pagination-bullet-active{
    background:var(--yellow);
}
/* =====================================================
   OFFICES
===================================================== */

/* ==================================================
   REGIONAL OFFICES
================================================== */

.regional-office-section{
    padding:60px 20px;
    background:#fff;
}

.regional-office-section .container-fluid{
    max-width:1500px;
    margin:auto;
}

/* Heading */

.office-heading{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-bottom:40px;
}

.office-heading h2{
    font-size:45px;
    font-weight:800;
    color:#0b347d;
    margin:0;
    text-transform:uppercase;
}

.office-heading .line{
    flex:1;
    max-width:350px;
    height:2px;
    background:#d7dfea;
}

/* Cards Row */

.office-grid{
    display:flex;
    gap:15px;
    width:100%;
}

.office-card{
    flex:1;
    min-width:0;
    max-width:calc((100% - 60px) / 5);
    border:1px solid #e2e8f0;
    border-radius:14px;
    overflow:hidden;
    background:#fff;
}
.office-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}
.regional-office-section .container-fluid{
    max-width:1700px;
    width:100%;
    margin:auto;
    padding:0 20px;
}
/* City Badge */

.office-city{
    width:max-content;
    margin:12px auto 0;
    background:#0b347d;
    color:#fff;
    padding:8px 18px;
    border-radius:25px;
    font-size:13px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:8px;
}

.office-city i{
    color:#fff;
}

/* Content */

.office-content{
    text-align:center;
    padding:15px 15px 10px;
}

.office-content p{
    min-height:120px;
    margin-bottom:15px;
    line-height:1.8;
    font-size:14px;
    color:#334155;
    font-weight:500;
}

.office-content a{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#0b347d;
    font-weight:700;
    margin-bottom:8px;
}

.office-content a i{
    color:#0b347d;
}

/* Image */

.office-image{
    height:140px;
    overflow:hidden;
}

.office-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.office-card:hover .office-image img{
    transform:scale(1.05);
}

/* Responsive */

@media(max-width:1400px){

    .office-grid{
        flex-wrap:wrap;
    }

    .office-card{
        width:280px;
    }
}

@media(max-width:768px){

    .office-heading h2{
        font-size:32px;
    }

    .office-heading .line{
        max-width:80px;
    }

    .office-card{
        width:100%;
    }
}/* =====================================================
   CORPORATE OFFICE
===================================================== */

.corporate-section{
    padding-bottom:50px;
}

.corporate-wrapper{
    display:flex;
    overflow:hidden;
    border-radius:14px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.15);
}

.corporate-image{
    width:380px;
}

.corporate-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.corporate-content{
    flex:1;

    background:
    linear-gradient(
    135deg,
    #002f7a,
    #001f52);

    padding:35px;
}

.corporate-title{
    color:var(--yellow);
    font-size:24px;
    font-weight:900;
    margin-bottom:25px;
}

.corporate-info{
    display:flex;
    align-items:center;
}

.corporate-box{
    flex:1;
    color:#fff;
    line-height:1.9;
}

.corporate-box a{
    display:block;
    color:#fff;
    text-decoration:none;
}

.divider{
    width:1px;
    height:100px;
    background:rgba(255,255,255,.25);
    margin:0 25px;
}

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

@media(max-width:1400px){

.team-grid{
grid-template-columns:repeat(5,1fr);
}

.office-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:991px){

.team-grid{
grid-template-columns:repeat(3,1fr);
}

.office-grid{
grid-template-columns:repeat(2,1fr);
}

.corporate-wrapper{
flex-direction:column;
}

.corporate-image{
width:100%;
height:260px;
}

.corporate-info{
flex-direction:column;
gap:25px;
}

.divider{
width:100%;
height:1px;
margin:0;
}

}
/* =====================================================
   TABLET (991px and below)
===================================================== */

@media (max-width:991px){

    /* TEAM */

    .contact-team-section{
        padding:50px 15px;
    }

    .team-main-title{
        font-size:38px;
    }

    .team-grid{
        grid-template-columns:repeat(4,1fr);
        gap:20px;
    }

    .team-photo-frame{
        width:120px;
        height:145px;
    }

    /* OFFICES */

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

    .office-grid{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .office-card{
        max-width:none;
    }

    /* CORPORATE */

    .corporate-wrapper{
        flex-direction:column;
    }

    .corporate-image{
        width:100%;
        height:280px;
    }

    .corporate-info{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .divider{
        width:100%;
        height:1px;
        margin:0;
    }
}


/* =====================================================
   MOBILE (767px and below)
===================================================== */

@media (max-width:767px){

    /* TEAM */

    .team-main-title{
        font-size:30px;
    }

    .team-sub-label{
        margin-bottom:30px;
        font-size:13px;
    }

    .team-line{
        width:40px;
    }

    .team-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .team-photo-frame{
        width:105px;
        height:130px;
    }

    .team-member h4{
        font-size:12px;
    }

    .qualification,
    .designation{
        font-size:11px;
    }

    /* OFFICES */

    .regional-office-section{
        padding:40px 15px;
    }

    .office-heading{
        gap:10px;
        margin-bottom:25px;
    }

    .office-heading h2{
        font-size:26px;
        text-align:center;
    }

    .office-heading .line{
        max-width:40px;
    }

    .office-grid{
        grid-template-columns:1fr;
    }

    .office-content p{
        min-height:auto;
        font-size:13px;
        line-height:1.7;
    }

    .office-image{
        height:180px;
    }

    /* CORPORATE */

    .corporate-content{
        padding:25px 20px;
    }

    .corporate-title{
        font-size:18px;
        text-align:center;
    }

    .corporate-box{
        font-size:13px;
        line-height:1.8;
    }
}


/* =====================================================
   SMALL MOBILE (480px and below)
===================================================== */

@media (max-width:480px){

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

    .team-grid{
        gap:15px;
    }

    .team-photo-frame{
        width:90px;
        height:115px;
    }

    .team-member h4{
        font-size:11px;
    }

    .qualification,
    .designation{
        font-size:10px;
    }

    .office-heading h2{
        font-size:22px;
    }

    .office-city{
        font-size:11px;
        padding:7px 14px;
    }

    .office-content p{
        font-size:12px;
    }

    .office-content a{
        font-size:12px;
    }

    .office-image{
        height:150px;
    }

    .corporate-content{
        padding:20px 15px;
    }
}

/* ==========================================================
   INDIVIDUAL PRODUCT PAGES — Appended to existing style.css
   Shared across: solargenerator, centraloptimizer, phaseoptimizer,
   solarpanel, verticalwindturbine, inverter, solardcpump, solarpumpcontrol
   Nothing above this line has been changed.
   ========================================================== */

/* ── delay helpers ── */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* ==========================================================
   PRODUCT HERO BANNER  (.pp-hero)
   ========================================================== */
.pp-hero {
  position: relative;
  width: 100%;
  min-height: 380px;
  overflow: hidden;
  margin-top: var(--navbar-h);
  display: flex;
  align-items: center;
}

/* background image (set per page via inline style or modifier class) */
.pp-hero-bg {
  position: absolute;
  inset: -50px 0 -50px 0;
  background-size: cover;
  background-position: center 45%;
  will-change: transform;
  transition: transform 0.1s linear;
  z-index: 0;
}

/* dark gradient overlay — heavy on left, fades right */
.pp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(9,18,46,0.94) 0%,
    rgba(9,18,46,0.80) 35%,
    rgba(9,18,46,0.30) 65%,
    rgba(9,18,46,0.08) 100%
  );
  z-index: 1;
}

/* content wrapper sits above overlay */
.pp-hero-body {
  position: relative;
  z-index: 2;
  padding: 56px 0 52px;
  width: 100%;
}

/* breadcrumb row */
.pp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.pp-breadcrumb a {
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.pp-breadcrumb a:hover { color: var(--yellow); }
.pp-breadcrumb-sep {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
}
.pp-breadcrumb-current {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.5px;
}

/* "⊙ PRODUCTS" label */
.pp-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.pp-label-dot {
  width: 18px; height: 18px;
  border: 2.5px solid var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pp-label-dot::after {
  content: '';
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}
.pp-label-text {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 3.5px;
  color: var(--yellow);
  text-transform: uppercase;
}
.pp-label-dash {
  width: 50px; height: 2px;
  background: var(--yellow);
  opacity: 0.55;
  border-radius: 2px;
}

/* product name heading */
.pp-hero-title {
  font-family: var(--font-cond);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.pp-hero-title span { color: var(--yellow); }

/* subtitle / tagline */
.pp-hero-tagline {
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  margin-bottom: 22px;
  letter-spacing: 0.2px;
}

/* yellow divider */
.pp-hero-divider {
  width: 52px; height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* description */
.pp-hero-desc {
  font-size: 0.92rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 28px;
}

/* CTA button in hero */
.btn-pp-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--navy) !important;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 5px 18px rgba(245,166,35,0.40);
}
.btn-pp-cta:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.50);
}

/* hero right — product image */
.pp-hero-img-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 360px;
}
.pp-hero-img {
  max-height: 340px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
  animation: ppHeroFloat 4.5s ease-in-out infinite;
}
@keyframes ppHeroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ==========================================================
   QUICK SPECS BAR  (.pp-specs-bar)
   ========================================================== */
.pp-specs-bar {
  background: var(--navy);
  padding: 0;
}
.pp-specs-row {
  display: flex;
  align-items: center;
  height: 82px;
}
.pp-spec-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,0.10);
  cursor: default;
  transition: background 0.2s;
}
.pp-spec-item:last-child { border-right: none; }
.pp-spec-item:hover { background: rgba(255,255,255,0.05); }
.pp-spec-icon {
  font-size: 1.7rem;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.pp-spec-item:hover .pp-spec-icon { transform: scale(1.18) rotate(-8deg); }
.pp-spec-val {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.pp-spec-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 2px;
}

/* ==========================================================
   OVERVIEW SECTION  (.pp-overview)
   ========================================================== */
.pp-overview {
  background: var(--white);
  padding: 60px 0 52px;
}
.pp-section-tag {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}
.pp-section-tag-dash {
  width: 26px; height: 2.5px;
  background: var(--yellow);
  border-radius: 2px;
}
.pp-section-tag-text {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--text-light);
  text-transform: uppercase;
}
.pp-overview-title {
  font-family: var(--font-cond);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
}
.pp-overview-title span { color: var(--yellow); }
.pp-overview-desc {
  font-size: 0.9rem;
  line-height: 1.82;
  color: var(--text-light);
  margin-bottom: 22px;
}
.pp-benefit-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.pp-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 10px;
}
.pp-benefit-item i {
  color: var(--yellow);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* overview image */
.pp-overview-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.pp-overview-img-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.18);
}
.pp-overview-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pp-overview-img-wrap:hover .pp-overview-img { transform: scale(1.04); }

/* ==========================================================
   FEATURES CARDS  (.pp-features)
   ========================================================== */
/* ===========================
 PREMIUM FEATURES SECTION
=========================== */

.pp-features-v2{
    padding:100px 0;
    background:
    radial-gradient(circle at top right,
    rgba(245,166,35,.08),
    transparent 35%),
    #f8fafc;
}

.pp-small-title{
    display:inline-block;
    color:var(--yellow);
    font-weight:700;
    letter-spacing:3px;
    font-size:.8rem;
    margin-bottom:15px;
}

.pp-main-title{
    font-size:clamp(2rem,4vw,3rem);
    font-weight:800;
    color:var(--navy);
    margin-bottom:15px;
}

.pp-main-title span{
    color:var(--yellow);
}

.pp-main-subtitle{
    max-width:700px;
    margin:auto;
    color:var(--text-light);
    line-height:1.8;
}

.pp-card-v2{
    position:relative;
    height:100%;

    padding:75px 30px 35px;

    background:rgba(255,255,255,.8);

    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.4);

    border-radius:28px;

    overflow:hidden;

    transition:.4s;

    box-shadow:
    0 10px 40px rgba(0,0,0,.05);
}

.pp-card-v2:hover{
    transform:translateY(-12px);

    box-shadow:
    0 25px 50px rgba(0,0,0,.12);
}

.pp-card-v2::before{
    content:'';

    position:absolute;

    inset:0;

    padding:1px;

    border-radius:28px;

    background:
    linear-gradient(
    135deg,
    var(--yellow),
    transparent,
    var(--blue));

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;
}

.pp-card-number{
    position:absolute;

    right:20px;
    top:15px;

    font-size:60px;

    font-weight:800;

    color:rgba(13,27,62,.05);

    line-height:1;
}

.pp-card-icon{
    width:85px;
    height:85px;

    border-radius:22px;

    background:
    linear-gradient(
    135deg,
    var(--navy),
    var(--blue));

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    color:var(--yellow);

    font-size:34px;

    box-shadow:
    0 15px 30px rgba(13,27,62,.25);

    transition:.4s;
}

.pp-card-v2:hover .pp-card-icon{
    transform:
    rotate(-8deg)
    scale(1.1);
}

.pp-card-v2 h5{
    font-size:1.1rem;
    font-weight:800;
    color:var(--navy);
    margin-bottom:15px;
}

.pp-card-v2 p{
    color:var(--text-light);
    line-height:1.9;
    margin:0;
}

/* mobile */

@media(max-width:768px){

    .pp-features-v2{
        padding:70px 0;
    }

    .pp-card-v2{
        padding:65px 25px 30px;
    }

    .pp-card-number{
        font-size:45px;
    }

}
/* ==========================================================
   MODELS / VARIANTS TABLE  (.pp-models)
   ========================================================== */
.pp-models {
  background: var(--white);
  padding: 56px 0;
}
.pp-models-title {
  font-family: var(--font-cond);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}
.pp-models-title span { color: var(--yellow); }
.pp-models-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.pp-table-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.08);
}
.pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}
.pp-table thead tr {
  background: var(--navy);
  color: var(--white);
}
.pp-table thead th {
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  white-space: nowrap;
}
.pp-table tbody tr {
  border-bottom: 1px solid #edf1f7;
  transition: background 0.2s;
}
.pp-table tbody tr:last-child { border-bottom: none; }
.pp-table tbody tr:hover { background: #f4f7fb; }
.pp-table tbody td {
  padding: 12px 18px;
  color: var(--navy);
  vertical-align: middle;
}
.pp-table tbody td:first-child { font-weight: 700; color: var(--blue); }

/* ==========================================================
   GALLERY  (.pp-gallery)
   ========================================================== */
.pp-gallery {
  background: var(--off-white);
  padding: 56px 0;
}
.pp-gallery-title {
  font-family: var(--font-cond);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
}
.pp-gallery-title span { color: var(--yellow); }
.pp-gallery-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 32px;
}
.pp-gallery-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 6px 22px rgba(0,0,0,0.10);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: zoom-in;
}
.pp-gallery-img:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 36px rgba(0,0,0,0.18);
}

/* ==========================================================
   BOTTOM CTA BANNER  (.pp-cta)
   ========================================================== */
.pp-cta {
  background: var(--navy);
  padding: 38px 0;
}
.pp-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pp-cta-icon-wrap {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(245,166,35,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.pp-cta-title {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 4px;
}
.pp-cta-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.5;
}
.btn-pp-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--navy) !important;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 5px 18px rgba(245,166,35,0.38);
}
.btn-pp-cta-white:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.50);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 991px) {
  .pp-hero { min-height: auto; }
  .pp-hero-img-wrap { height: 220px; margin-top: 28px; }
  .pp-hero-img { max-height: 200px; }
  .pp-specs-row { flex-wrap: wrap; height: auto; padding: 8px 0; }
  .pp-spec-item { min-width: 33%; height: 66px; border: none; border-bottom: 1px solid rgba(255,255,255,0.09); }
  .pp-overview-img { height: 220px; }
  .pp-cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 575px) {
  .pp-hero-title { font-size: 2.3rem; }
  .pp-spec-item { min-width: 50%; }
  .pp-specs-row { height: auto; }
}




/* ==========================
SOLAR GENERATOR ADVANTAGES
========================== */

.sg-advantages{
    background:#fff;
    position:relative;
    overflow:hidden;
}

.sg-advantages::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    right:-150px;
    top:-150px;
    background:rgba(255,193,7,.08);
    border-radius:50%;
}

.sg-tag{
    display:inline-block;
    color:var(--yellow);
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
    font-size:.8rem;
}

.sg-title{
    font-size:clamp(2rem,4vw,3rem);
    font-weight:900;
    color:var(--navy);
    margin-bottom:20px;
}

.sg-title span{
    color:var(--yellow);
}

.sg-desc{
    color:var(--text-light);
    line-height:1.9;
    margin-bottom:10px;
}

.sg-benefit{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px;
    background:#fff;
    border-radius:16px;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    transition:.35s;
}

.sg-benefit:hover{
    transform:translateY(-5px);
}

.sg-benefit i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:var(--navy);
    color:var(--yellow);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.3rem;
}

.sg-benefit h6{
    margin:0;
    font-weight:800;
    color:var(--navy);
}

.sg-benefit span{
    font-size:.8rem;
    color:var(--text-light);
}

.sg-image-box{
    position:relative;
}

.sg-image-box img{
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.sg-floating-card{
    position:absolute;
    bottom:25px;
    left:-25px;

    background:var(--navy);
    color:#fff;

    padding:20px 25px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.sg-floating-card h3{
    color:var(--yellow);
    font-weight:900;
    margin-bottom:5px;
}

.sg-floating-card p{
    margin:0;
    font-size:.85rem;
}

/* Mobile */

@media(max-width:768px){

    .sg-title{
        font-size:2rem;
    }

    .sg-floating-card{
        left:10px;
        bottom:10px;
        padding:15px 20px;
    }

}

/*==============================
PREMIUM STATISTICS
==============================*/

.pp-stat-card{

    position: relative;

    background: #fff;

    border-radius: 22px;

    padding: 35px 25px;

    text-align: center;

    overflow: hidden;

    border: 1px solid rgba(0,0,0,.06);

    box-shadow: 0 12px 35px rgba(0,0,0,.08);

    transition: .4s;

    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

}

.pp-stat-card::before{

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        var(--yellow),
        var(--blue)
    );

}

.pp-stat-card:hover{

    transform: translateY(-10px);

    box-shadow: 0 20px 45px rgba(0,0,0,.15);

}

.pp-stat-icon{

    width: 75px;
    height: 75px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        var(--navy),
        var(--blue)
    );

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--yellow);

    font-size: 30px;

    margin-bottom: 20px;

    transition: .4s;

}

.pp-stat-card:hover .pp-stat-icon{

    transform: rotate(-8deg) scale(1.08);

}

.pp-stat-card h2{

    font-size: 2.2rem;

    font-weight: 650;

    color: var(--yellow);

    margin-bottom: 10px;

}

.pp-stat-card h5{

    color: var(--navy);

    font-weight: 800;

    margin-bottom: 12px;

    min-height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.pp-stat-card p{

    color: var(--text-light);

    line-height: 1.8;

    font-size: .9rem;

    margin: 0;

    flex-grow: 1;

    display: flex;

    align-items: center;

}