/* =========================
    GLOBAL RESET
========================= */

#leafCursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.2s ease,
    rotate 0.25s ease;
}

#leafCursor.hover {
  transform: translate(-50%, -50%) scale(1.6);
  rotate: 25deg;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: #111827;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

/* =========================
    LOADER
========================= */

#loader {
  position: fixed;
  inset: 0;
  background: #08120c;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  color: white;
}

.loader-content h1 {
  margin-top: 25px;
  font-size: 2rem;
  letter-spacing: 1px;
}

.loader-content p {
  margin-top: 10px;
  color: #b8b8b8;
}

.ring-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin: auto;
}

.ring-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: auto;
  border-radius: 50%;
}

.energy-ring {
  width: 90px;
  height: 90px;
  border: 5px solid rgba(255, 255, 255, 0.15);
  border-top: 5px solid #3cff00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto;
  box-shadow:
    0 0 15px #3cff00,
    0 0 30px #3cff00;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* =========================
    NAVBAR
========================= */

.logo-img {
  width: 100px;
  display: block;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #fff;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #111827;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #2dbb00;
}

/* =========================
    DROPDOWN MENU
========================= */

.dropdown {
  position: relative;
}

.dropbtn {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-menu {
  position: absolute;
  background: rgb(255, 255, 255);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  top: 100%;
  left: 0;
  min-width: 220px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 999;
  margin-top: 8px;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 14px 18px;
  color: #111827;
  font-size: 15px;
  transition: 0.3s;
}

.dropdown-menu li a:hover {
  background: #f3f4f6;
  color: #2dbb00;
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================
    MOBILE DROPDOWN FIX
========================= */
@media (max-width: 768px) {
  .dropbtn {
    width: 100%;
    justify-content: space-between;
  }

  .navbar {
    padding: 0px 20px;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-size: 1.5rem;
    max-width: 220px;
  }

  .logo img {
    width: 80px;
  }

  .menu-toggle {
    margin-left: auto;
    display: block;
    color: #111827;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #0f172a;
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    gap: 0;
    z-index: 999;
  }

  .nav-links.active {
    max-height: calc(100vh - 80px) !important;
    overflow-y: auto !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    list-style: none;
    padding: 8px 0;
  }

  .nav-links a {
    color: white;
    font-size: 0.8rem;
    display: block;
    width: 100%;
    padding: 10px 0px;
  }

  .nav-links a:hover {
    color: #2dbb00;
  }
}

/* =========================
    BACKGROUND IMAGE (fixed)
========================= */

#bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../../assets/resources/main-bg.webp") center center / cover
    no-repeat;
  z-index: -1;
}

/* =========================
    HERO
========================= */

.hero {
  position: relative;
  min-height: 70vh;
  height: auto;
  padding: 140px 0 80px;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
}

@media (max-width: 1100px) and (max-height: 700px) {
  /* NAVBAR FIX */
  .navbar {
    padding: 15px 25px;
    justify-content: space-between;
  }

  .menu-toggle {
    margin-left: auto;
  }

  /* HERO FIX */
  .hero {
    min-height: 100vh;
    height: auto;
    padding: 140px 20px 80px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .content h1 {
    font-size: 2.4rem;
  }

  .content p {
    font-size: 1rem;
  }

  /* GRID FIX (VERY IMPORTANT) */
  .why-grid,
  .offer-grid,
  .benefits-grid,
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* SERVICE ROW FIX */
  .service-row {
    flex-direction: column;
    gap: 40px;
  }

  /* ABOUT SECTION */
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* REMOVE OVERFLOW ISSUES */
  body,
  html {
    overflow-x: hidden;
  }
}

/* dark overlay */
.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../../assets/resources/main-bg.png") center center / cover no-repeat;
  z-index: 1;
}

.description {
  font-size: 17px;
  margin: 20px 0;
  color: white;
  max-width: 500px;
}

/* highlight bullets */
.highlight {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 25px 0;
}

.highlight span {
  font-size: 15px;
  color: white;
  background: rgba(34, 197, 94, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  width: fit-content;
}

/* NEW container */
.hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* LEFT / TEXT SIDE */
.content {
  max-width: 600px;
  text-align: left;
}

.content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.3rem;
  color: #e7e7e7;
  margin-bottom: 35px;
}

.world-image img {
  width: 100%;
  max-width: 650px;
  animation: float 6s ease-in-out infinite;
  transform-origin: center;
}

/* BUTTON */
.btn {
  display: inline-block;
  text-decoration: none;
  color: white;
  background: #2dbb00;
  padding: 14px 32px;
  margin-bottom: 20px;
  margin-right: 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #38e000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(56, 224, 0, 0.4);
}

.btn-2 {
  display: inline-block;
  text-decoration: none;
  color: white;
  background: #2dbb00;
  padding: 14px 32px;
  margin-bottom: 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-2:hover {
  background: #38e000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(56, 224, 0, 0.4);
}

/* =========================
    RESPONSIVE DESIGN
========================= */

/* Tablets */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    padding: 120px 0 80px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .content {
    max-width: 100%;
  }

  .content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .content p {
    font-size: 1.1rem;
  }

  .highlight {
    align-items: center;
  }

  .highlight span {
    margin: 0 auto;
  }

  .world-image img {
    max-width: 500px;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
    margin-top: 80px;
  }

  .hero-container {
    padding: 0 5%;
    gap: 40px;
  }

  .content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .description {
    font-size: 15px;
    max-width: 100%;
  }

  .highlight span {
    font-size: 14px;
    padding: 6px 10px;
  }

  .btn,
  .btn-2 {
    padding: 12px 26px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .world-image img {
    max-width: 380px;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .hero-container {
    padding: 0 20px;
  }

  .content h1 {
    font-size: 1.7rem;
  }

  .content p {
    font-size: 0.95rem;
  }

  .highlight {
    gap: 8px;
  }

  .highlight span {
    font-size: 13px;
  }

  .btn {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .world-image img {
    max-width: 100%;
  }
}

/* ===========================
   GROUP COMPANY DROPDOWN
=========================== */
/* Nested Dropdown */
.nested-dropdown {
  position: relative;
}

.nested-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 8px 0;
}

.nested-dropdown:hover > .nested-menu {
  opacity: 1;
  visibility: visible;
}

.nested-menu li {
  list-style: none;
}

.nested-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.nested-menu a:hover {
  background: #f5f5f5;
}

.nested-menu img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.nested-dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.group-company-dropdown {
  position: relative;
  list-style: none;
}

.group-company-dropdown > a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.group-company-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 9999;
}

.group-company-dropdown:hover .group-company-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.group-company-menu li {
  list-style: none;
}

.group-company-menu li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 18px;
  color: #222;
  text-decoration: none;
  transition: 0.3s;
}

.group-company-menu li a:hover {
  background: #f7f7f7;
}

.group-company-menu img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.group-company-menu span {
  font-size: 15px;
  font-weight: 600;
}

/* ===========================
   GROUP COMPANY RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .group-company-dropdown {
    width: 100%;
    position: relative;
  }

  .group-company-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #fff;
  }

  .group-company-dropdown > a i {
    transition: 0.3s ease;
  }

  .group-company-dropdown.active > a i {
    transform: rotate(180deg);
  }

  .group-company-menu {
    position: static !important;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none !important;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    box-shadow: none;
    border-radius: 0;
    padding: 0;

    /* Local Scrollable Dropdown Fix */
    max-height: 340px !important;
    overflow-y: auto !important;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .group-company-dropdown.active .group-company-menu {
    display: block !important;
  }

  .group-company-menu li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .group-company-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 15px 40px;
    color: #fff;
  }

  .group-company-menu li a:hover {
    background: rgba(45, 187, 0, 0.15);
    color: #2dbb00;
  }

  .group-company-menu img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #fff;
    padding: 3px;
    flex-shrink: 0;
  }

  .group-company-menu span {
    font-size: 15px;
    font-weight: 500;
  }
}

.section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.section-tag {
  color: #2dbb00;
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 3rem;
  color: black;
}

.section-header p {
  color: #64748b;
  line-height: 1.8;
}

/* =========================
    ABOUT BANNER
========================= */

.about-banner {
  min-height: 40vh;
  height: auto;
  position: relative;
  overflow: hidden;
}

.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.banner-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 40vh;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.banner-overlay h1 {
  color: white;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 4px;
}

/* =========================
    ABOUT SECTION
========================= */

.about {
  padding: 80px 8%;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-image img {
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-tag {
  color: #2dbb00;
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  font-weight: 600;
}

.about-content h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin: 15px 0 25px;
}

.about-description {
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 35px;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mv-card {
  background: #f8fafc;
  padding: 25px;
  border-radius: 18px;
  border-left: 5px solid #2dbb00;
  transition: 0.4s;
}

.mv-card:hover {
  transform: translateY(-8px);
}

.mv-card h3 {
  margin-bottom: 10px;
}

/* =========================
    VISION SECTION
========================= */

.vision-section {
  position: relative;
  background: #f3f3f3;
  min-height: 450px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 8%;
}

.bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px #d6dbe5;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}

.vision-content {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  gap: 40px;
}

.vision-left {
  max-width: 500px;
  flex: 1;
}

.vision-left h2 {
  font-size: 4rem;
  font-weight: 300;
  color: #005f9e;
  line-height: 1.1;
  margin-bottom: 25px;
}

.vision-left p {
  font-size: 1.2rem;
  color: #005f9e;
  line-height: 1.8;
}

.vision-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.vision-right img {
  width: 100%;
  max-width: 400px;
  margin-left: 25rem;
  object-fit: contain;
}

@media (max-width: 768px) {
  .vision-right img {
    width: 100%;
    max-width: 280px;
    margin-left: 0;
    padding-bottom: 40px;
  }
}

@media (max-width: 1200px) and (max-height: 700px) {
  .vision-section {
    padding: 60px 40px;
  }

  .bg-text {
    font-size: 8rem;
    -webkit-text-stroke: 1.5px #d6dbe5;
  }

  .vision-content {
    gap: 40px;
  }

  .vision-left h2 {
    font-size: 3rem;
  }

  .vision-left p {
    font-size: 1.05rem;
  }

  .vision-right img {
    width: 380px;
  }
}

.why-us {
  padding: 80px 8%;
  background: #f8fafc;
}

.why-header,
.why-top {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}

.why-header h2,
.why-top h2 {
  font-size: 3rem;
  color: #111827;
  margin-bottom: 20px;
}

.why-tag {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  color: #2dbb00;
  margin-bottom: 15px;
}

.why-top p {
  color: #64748b;
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  min-width: 0;
}

.why-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: 0.4s;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.why-card i {
  font-size: 3rem;
  color: #2dbb00;
  margin-bottom: 20px;
}

.why-card h3 {
  color: #111827;
  margin-bottom: 10px;
}

.why-card p {
  color: #64748b;
  line-height: 1.7;
}

.why-choose {
  padding: 80px 8%;
  background: #ffffff;
}

.why-choose .why-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.stats,
.stats-section {
  padding: 60px 8%;
  background: #0f172a;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.stat-card,
.stat {
  text-align: center;
}

.stat-card h2,
.stat h2 {
  color: #2dbb00;
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.stat-card p,
.stat p {
  color: white;
  font-size: 1.1rem;
}

.process,
.process-section {
  padding: 80px 8%;
  background: #f8fafc;
}

.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-header p {
  color: #2dbb00;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-header h2 {
  font-size: 3rem;
  color: #111827;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.process-card {
  padding: 35px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.process-card:hover {
  transform: translateY(-10px);
}

.process-card > span {
  font-size: 2rem;
  font-weight: 700;
  color: #2dbb00;
}

.process-card h3 {
  margin: 15px 0;
}

.process-card p {
  color: #64748b;
  line-height: 1.7;
}

.hero-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.step {
  background: white;
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
}

.step:hover {
  transform: translateY(-10px);
}

.step span {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: #2dbb00;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
}

.step h3 {
  color: #111827;
  font-size: 1.2rem;
}

.services-hero {
  position: relative;
  min-height: 55vh;
  margin-top: 100px;
  background:
    linear-gradient(to left, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5)),
    url("../../assets/resources/service-bg-2.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 100px 120px;
}

.services-content {
  max-width: 600px;
  text-align: right;
}

.services-content p {
  color: #38d39f;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
  display: block;
}

.services-content h1 {
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
  display: block;
}

.services-content span {
  color: #d1d5db;
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  display: block;
}

.services-content .btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background: #38d39f;
  color: #000;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.services-content .btn:hover {
  background: #2bbd8a;
}

@media (max-width: 768px) {
  .services-hero {
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
  }

  .services-content {
    text-align: center;
  }

  .services-content h1 {
    font-size: 2.2rem;
  }
}

.service-block {
  padding: 80px 8%;
  background: white;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: 0.5s ease;
}

.service-image img:hover {
  transform: scale(1.03);
}

.service-text {
  flex: 1;
}

.service-text > span {
  font-size: 4rem;
  font-weight: 700;
  color: #2dbb00;
  opacity: 0.2;
}

.service-text h2 {
  font-size: 2.8rem;
  color: #111827;
  margin: 15px 0;
}

.service-text p {
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 25px;
}

.service-text ul {
  list-style: none;
}

.service-text ul li {
  padding: 12px 0;
  color: #334155;
  border-bottom: 1px solid #e5e7eb;
}

.offer {
  padding: 80px 8%;
  background: #f8fafc;
  position: relative;
}

.offer-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}

.offer-tag {
  font-family: "Libre Baskerville", serif;
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  color: #2dbb00;
  margin-bottom: 15px;
}

.offer-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.2;
}

.offer-desc {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.offer-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  position: relative;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.offer-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.offer-card:hover img {
  transform: scale(1.15);
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
  transition: 0.4s ease;
}

.offer-card:hover::before {
  background: rgba(0, 0, 0, 0.05);
}

.offer-card::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 300%;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(25deg);
  transition: 0.8s;
}

.offer-card:hover::after {
  left: 150%;
}

.offer-card h3 {
  padding: 25px 25px 10px;
  font-size: 1.3rem;
  color: #111827;
}

.offer-card p {
  padding: 0 25px 25px;
  color: #64748b;
  line-height: 1.7;
}

.offer-card:nth-child(odd) {
  animation: float 6s ease-in-out infinite;
}

.offer-card:nth-child(even) {
  animation: float 7s ease-in-out infinite;
}

.solar-benefits {
  padding: 80px 8%;
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: #f8fafc;
  padding: 40px 25px;
  text-align: center;
  border-radius: 20px;
  transition: 0.4s;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-card i {
  font-size: 3rem;
  color: #2dbb00;
  margin-bottom: 20px;
}

.benefit-card h3 {
  margin-bottom: 15px;
}

.solar-now {
  padding: 80px 8%;
  background: #0f172a;
}

.solar-now-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.solar-now-left h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
}

.solar-now-left p {
  color: #cbd5e1;
  line-height: 1.8;
}

.reason-card {
  background: #1e293b;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 16px;
  color: white;
  transition: 0.4s;
}

.reason-card:hover {
  transform: translateX(10px);
}

.reason-card span {
  color: #2dbb00;
  font-size: 2rem;
  font-weight: bold;
}

.input-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
}

.input-group select:hover {
  border-color: #2dbb00;
}

.input-group select:focus {
  border-color: #2dbb00;
  box-shadow: 0 0 0 3px rgba(45, 187, 0, 0.15);
}

.solar-section {
  max-width: 1400px;
  margin: auto;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.solar-info {
  flex: 1;
}

.solar-tag {
  color: #2dbb00;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.solar-info h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #111;
}

.solar-desc {
  color: #555;
  line-height: 1.9;
  font-size: 1.1rem;
}

.solar-features {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.solar-features div {
  padding: 15px;
  background: #f5f5f5;
  border-left: 4px solid #38ff00;
  border-radius: 10px;
  font-weight: 500;
  transition: 0.4s;
}

.solar-features div:hover {
  transform: translateY(-8px);
  background: #38ff00;
  color: white;
}

.calculator-card {
  flex: 1;
  margin-top: 100px;
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: floatCard 5s ease-in-out infinite;
  transition: 0.4s;
}

.calculator-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(56, 255, 0, 0.25);
  animation: none;
}

.calculator-card h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #2dbb00;
}

.input-group {
  margin-bottom: 25px;
}

.input-group label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 600;
}

#billValue {
  color: #2dbb00;
}

input[type="range"] {
  width: 100%;
  height: 8px;
  appearance: none;
  border-radius: 20px;
  background: #ddd;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2dbb00;
  cursor: pointer;
}

.calculator-card button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: #2dbb00;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}

.results {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.result-box {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: 0.4s;
}

.result-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.result-box h4 {
  margin-bottom: 10px;
  color: #666;
  font-size: 0.9rem;
}

.result-box span {
  color: #2dbb00;
  font-size: 1.4rem;
  font-weight: 700;
}

.solar-hero {
  min-height: 80vh;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 40px;
}

.solar-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(56, 255, 0, 0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(45, 187, 0, 0.2), transparent 40%),
    #ffffff;
  z-index: -1;
}

.contact-section {
  padding: 80px 8%;
  background: #f8fafc;
}

.contact-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.contact-info {
  background-color: #2dbb00;
  color: #fff;
  padding: 60px;
  position: relative;
  box-sizing: border-box;
}

.contact-tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.contact-info h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-info p {
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 40px;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature i {
  font-size: 20px;
}

.contact-form-box {
  padding: 60px;
  box-sizing: border-box;
}

.contact-form-box h3 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 15px;
  transition: 0.3s;
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2dbb00;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.15);
}

.contact-btn,
.Contact-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background-color: #2dbb00;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.about-cta,
.services-cta {
  padding: 80px 8%;
  text-align: center;
  background-color: white;
  color: black;
}

.about-cta h2,
.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-cta p,
.cta-content p {
  margin-bottom: 40px;
  opacity: 0.95;
  font-size: 1.1rem;
}

.cta-content {
  max-width: 900px;
  margin: auto;
}

.cta-btn {
  display: inline-block;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 50px;
  background: white;
  color: #2dbb00;
  font-weight: 700;
  transition: 0.4s ease;
  margin-top: 40px;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-5px);
}

.trust-section {
  padding: 60px 10%;
  background: #07140e;
  color: white;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.trust-card {
  background: #0f2418;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
}

.trust-card i {
  font-size: 28px;
  color: #2dbb00;
  margin-bottom: 10px;
}

.trust-card:hover {
  transform: translateY(-6px);
}

.lg-about-section {
  width: 100%;
  padding: 80px 8%;
  background: #f8fafc;
  overflow: hidden;
}

.lg-about-wrapper {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.lg-about-map {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.lg-about-map::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #22c55e;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  z-index: 0;
}

.lg-about-map img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  animation: lgFloat 6s ease-in-out infinite;
}

.lg-about-text {
  flex: 1;
}

.lg-about-subtitle {
  color: #4ade80;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
}

.lg-about-title {
  color: #111827;
  font-size: 3rem;
  line-height: 1.2;
  margin: 15px 0 25px;
}

.lg-about-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

.lg-about-stats {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.lg-stat-card {
  min-width: 130px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  background: white;
  transition: 0.4s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.lg-stat-card:hover {
  transform: translateY(-8px);
}

.lg-stat-card h3 {
  color: #4ade80;
  font-size: 2rem;
  margin-bottom: 5px;
}

.lg-stat-card span {
  color: black;
  font-size: 0.9rem;
}

.faq-section {
  padding: 60px 10%;
  background: #ffffff;
  color: #1a1a1a;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
  margin-bottom: 10px;
  border-radius: 8px;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 122, 24, 0.15);
}

.footer {
  background: linear-gradient(
    to top,
    rgba(151, 255, 54, 0.75),
    transparent 60%
  );
  color: black;
  padding: 80px 8% 0;
}

.footer-logo {
  width: 220px;
  flex-shrink: 0;
  padding: 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: auto;
}

@media (min-width: 990px) {
  .footer-container {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-col {
  justify-content: center;
  align-items: center;
}

.footer-col h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2dbb00;
}

.footer-col h4 {
  margin-bottom: 20px;
  color: black;
}

.footer-col p {
  color: black;
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  color: black;
  transition: 0.3s;
}

.footer-col ul li a {
  text-decoration: none;
  color: black;
  transition: 0.3s;
}

.footer-col ul li:hover,
.footer-col ul li a:hover {
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: black;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-top: 50px;
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
}

.footer-bottom p,
.footer-bottom p a {
  color: #94a3b8;
  text-decoration: none;
}

@media (max-width: 992px) {
  .footer-logo img {
    margin-left: 0;
  }
}

.animate,
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
}

.animate.show,
.scroll-animate.show {
  animation: fadeUp 1s ease forwards;
}

.delay1 {
  animation-delay: 0.1s;
}
.delay2 {
  animation-delay: 0.25s;
}
.delay3 {
  animation-delay: 0.4s;
}

.animate-left {
  opacity: 0;
  transform: translateX(-50px);
}

.animate-left.show {
  animation: slideLeft 1s ease forwards;
}

.animate-right {
  opacity: 0;
  transform: translateX(50px);
}

.animate-right.show {
  animation: slideRight 1s ease forwards;
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-up.active {
  animation: fadeUp 1s ease forwards;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
  transition: 1s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
  transition: 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes lgFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.team-title {
  text-align: center;
  padding: 60px 5vw 20px;
}

.team-title h2 {
  font-size: 40px;
  font-weight: 900;
}

.team-title p {
  color: #64748b;
  margin-top: 10px;
}

.grid {
  max-width: 1200px;
  margin: auto;
  padding: 40px 5vw 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hero-timeline {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 5vw 60px;
  }
}

.card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.5s ease;
}

.card:hover img {
  transform: scale(1.08);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

.card:hover::after {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.info {
  position: absolute;
  bottom: 0;
  padding: 18px;
  color: white;
  z-index: 2;
  width: 100%;
}

.info h3 {
  font-size: 18px;
  font-weight: 800;
}

.info p {
  font-size: 13px;
  opacity: 0.9;
}

.tag {
  display: inline-block;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  margin-bottom: 6px;
  color: #22c55e;
  font-weight: 600;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1100;
}

.modal:target {
  opacity: 1;
  pointer-events: auto;
}

.modal-inner {
  width: 100%;
  max-width: 1000px;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 90vh;
}

.photo-side {
  position: relative;
  width: 100%;
  height: 100%;
}

.photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.main {
  padding: 40px;
  overflow-y: auto;
}

.back {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  z-index: 5;
}

@media (max-width: 900px) {
  .modal-inner {
    grid-template-columns: 1fr;
    max-height: 85vh;
  }

  .photo-side {
    height: 260px;
  }

  .main {
    padding: 25px;
  }
}

.main h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 5px;
}

.role {
  color: #2dbb00;
  font-weight: 700;
  margin-bottom: 20px;
}

.bio {
  line-height: 1.7;
  margin-bottom: 25px;
  color: #111827;
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 25px;
}

.fact {
  background: #f7f7f7;
  padding: 12px;
  border-radius: 10px;
}

.fact strong {
  font-size: 12px;
  color: #64748b;
  display: block;
  text-transform: uppercase;
}

.fact span {
  font-weight: 600;
}

.skills span {
  display: inline-block;
  border: 1px solid #2dbb00;
  color: #2dbb00;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  margin: 4px;
}

.values {
  padding: 60px 5vw;
  background: #f4f3ee;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.value-card {
  background: white;
  padding: 25px;
  border-radius: 14px;
  transition: 0.3s;
  border: 1px solid #eee;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
  color: #2dbb00;
  margin-bottom: 10px;
}

.team-hero {
  position: relative;
  width: 100%;
  min-height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: url("../resources/Our-team-banner.webp") center/cover no-repeat;
  overflow: hidden;
  padding: 60px 20px;
  text-align: center;
}

.team-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.team-hero-overlay {
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/connected.png");
  opacity: 0.15;
}

.team-hero-content {
  position: relative;
  max-width: 900px;
  z-index: 2;
}

.team-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900;
}

.team-hero p {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.9;
}

.wa-expand {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: 0.4s;
  z-index: 999;
}

.wa-expand img {
  width: 30px;
  margin-left: 15px;
}

.wa-expand span {
  color: white;
  white-space: nowrap;
  margin-left: 10px;
  opacity: 0;
  transition: 0.3s;
}

.wa-expand:hover {
  width: 170px;
}

.wa-expand:hover span {
  opacity: 1;
}

.faq-pro {
  padding: 60px 5%;
  background: #f8fafc;
}

.faq-pro h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}

.faq-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-question {
  width: 100%;
  padding: 20px;
  font-size: 18px;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  color: #1a1a1a;
}

.faq-question:hover {
  color: #2dbb00;
}

.faq-question span {
  font-size: 24px;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 16px;
  }
}

.fr-hero {
  min-height: 70vh;
  height: auto;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../resources/Business-franchise.webp) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 120px 20px 60px;
}

.fr-hero-inner {
  max-width: 800px;
}

.fr-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.fr-hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.fr-btn-main {
  background: #2dbb00;
  color: white;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
}

.fr-about {
  padding: 80px 10%;
  text-align: center;
}

.fr-about h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
}

.fr-about p {
  max-width: 900px;
  margin: auto;
  margin-bottom: 20px;
  line-height: 1.8;
}

.fr-benefits {
  padding: 80px 10%;
  background: #f4f4f4;
  text-align: center;
}

.fr-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.fr-benefit-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.fr-plans {
  padding: 80px 10%;
  text-align: center;
}

.fr-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.fr-plan-card {
  background: white;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fr-plan-card h3 {
  font-size: 1.8rem;
}

.fr-plan-card h4 {
  font-size: 2rem;
  margin: 10px 0 20px;
  color: #2dbb00;
}

.fr-plan-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.fr-plan-card ul li {
  padding: 8px 0;
}

.fr-card-btn {
  display: inline-block;
  background: #111;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
}

.fr-highlight {
  transform: scale(1.05);
  border: 2px solid #2dbb00;
}

.fr-badge {
  background: #2dbb00;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
}

.fr-process {
  padding: 80px 10%;
  background: #f9f9f9;
  text-align: center;
}

.fr-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.fr-step-box {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gst {
  display: block;
  font-size: 15px;
  color: #666;
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .fr-hero h1 {
    font-size: 2.8rem;
  }
  .fr-benefits-grid,
  .fr-plan-grid,
  .fr-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fr-highlight {
    transform: scale(1.03);
  }
}

@media (max-width: 768px) {
  .fr-hero {
    height: auto;
    padding: 80px 20px;
  }
  .fr-hero h1 {
    font-size: 2.2rem;
  }
  .fr-hero p {
    font-size: 1rem;
  }
  .fr-about,
  .fr-benefits,
  .fr-plans,
  .fr-process {
    padding: 60px 20px;
  }
  .fr-benefits-grid,
  .fr-plan-grid,
  .fr-process-grid {
    grid-template-columns: 1fr;
  }
  .fr-plan-card {
    padding: 25px;
  }
  .fr-highlight {
    transform: none;
  }
}

@media (max-width: 480px) {
  .fr-hero h1 {
    font-size: 1.8rem;
  }
  .fr-hero p {
    font-size: 0.95rem;
  }
  .fr-btn-main {
    padding: 12px 22px;
    font-size: 14px;
  }
  .fr-about h2 {
    font-size: 2rem;
  }
  .fr-plan-card h3 {
    font-size: 1.4rem;
  }
  .fr-plan-card h4 {
    font-size: 1.6rem;
  }
  .fr-card-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}

.mission {
  padding: 60px 5vw;
  background: #ffffff;
}

.mission-inner {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.mission h2 {
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 15px;
}

.mission p {
  color: #64748b;
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.mission-box {
  background: #f8fafc;
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s;
  border: 1px solid #e5e7eb;
}

.mission-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.culture {
  padding: 60px 5vw;
  background: #f8fafc;
  text-align: center;
}

.culture h2 {
  font-size: 40px;
  font-weight: 900;
}

.culture p {
  color: #64748b;
  margin-top: 10px;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.culture-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

.culture-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-strip {
  padding: 40px 5vw;
  text-align: center;
  background: #111;
  color: white;
}

.contact-strip a {
  color: #2dbb00;
  font-weight: 700;
  text-decoration: none;
}

.contact-strip a:hover {
  text-decoration: underline;
}

.decision-section {
  padding: 80px 8%;
  background: white;
  color: black;
  text-align: center;
}

.decision-container {
  max-width: 1100px;
  margin: auto;
}

.desc {
  margin: 20px 0 40px;
  color: black;
}

.decision-cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.decision-cards .card {
  flex: 1;
  min-width: 280px;
  padding: 30px;
  border-radius: 16px;
  background: white;
  text-align: left;
}

.decision-cards .card h3 {
  margin-bottom: 15px;
}

.negative {
  border: 1px solid rgba(239, 68, 68, 0.4);
}
.positive {
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.decision-cards .card ul {
  padding-left: 18px;
}
.decision-cards .card li {
  margin-bottom: 10px;
  color: black;
}

.divider {
  font-weight: bold;
  opacity: 0.6;
  align-self: center;
}

@media (max-width: 1024px) {
  .decision-cards {
    flex-direction: column;
    align-items: center;
  }

  .divider {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
}

.partner-page {
  --green: #2dbb00;
  --dark: #0f172a;
  --text: #111827;
  --soft: #64748b;
  --bg: #f8fafc;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: white;
}

.partner-page .partner-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 100px 20px;
  background: url("../resources/partner-banner.webp") center/cover no-repeat;
}

.partner-page .partner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.partner-page .partner-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 900px;
}

.partner-page .partner-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
}

.partner-page .partner-hero p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #e5e7eb;
}

.partner-page .section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.partner-page .section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
}

.partner-page .section-header p {
  color: var(--soft);
  margin-top: 10px;
  line-height: 1.7;
}

.partner-page .partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 60px 8%;
}

.partner-page .partner-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.partner-page .partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.partner-page .partner-card img {
  max-width: 120px;
  height: auto;
  margin-bottom: 15px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.partner-page .partner-card:hover img {
  filter: grayscale(0%);
}

.partner-page .partner-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.partner-page .partner-card p {
  font-size: 0.9rem;
  color: var(--soft);
}

.partner-page .partner-details {
  padding: 80px 8%;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.partner-page .partner-details h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.partner-page .partner-details p {
  color: var(--soft);
  line-height: 1.8;
  margin-bottom: 15px;
}

.partner-page .detail-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}

.partner-page .detail-box {
  background: white;
  padding: 20px;
  border-radius: 14px;
  border-left: 4px solid var(--green);
  transition: 0.3s;
}

.partner-page .detail-box:hover {
  transform: translateY(-6px);
}

.partner-page .partner-cta {
  padding: 80px 8%;
  text-align: center;
  background: var(--dark);
  color: white;
}

.partner-page .partner-cta h2 {
  font-size: 2.8rem;
}
.partner-page .partner-cta p {
  margin: 15px 0 30px;
  color: #cbd5e1;
}

.partner-page .partner-btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--green);
  color: white;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
}

.partner-page .partner-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(45, 187, 0, 0.3);
}

@media (max-width: 1024px) {
  .partner-page .partner-details {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .partner-page .detail-boxes {
    grid-template-columns: 1fr;
  }
}

.page-header {
  text-align: center;
  padding: 120px 20px 60px;
  width: 100%;
  min-height: 450px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../../assets/resources/bg.png") center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-header h1 {
  font-size: clamp(30px, 4vw, 52px);
  color: white;
}
.page-header p {
  color: white;
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.6;
}

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, #f6faf7, transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, #f6faf7, transparent);
}

.track {
  display: flex;
  will-change: transform;
}
.group {
  display: flex;
  flex-shrink: 0;
  gap: 16px;
  padding: 0 8px;
}

.part-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 110px;
  padding: 12px;
  background: white;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  font-weight: 600;
  font-size: 13px;
  color: #0b3d2e;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.part-card:hover {
  transform: translateY(-6px) scale(1.05);
  border-color: #22c55e;
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.15);
}

.part-card img {
  width: 60px;
  height: 40px;
  object-fit: contain;
  display: block;
  transition: 0.3s ease;
}

.part-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .part-card {
    width: 140px;
    height: 110px;
    font-size: 12px;
    padding: 10px;
    gap: 10px;
  }

  .part-card img,
  .part-card .logo-placeholder {
    width: 80px;
    height: 60px;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .part-card {
    width: 130px;
    height: 105px;
    font-size: 11px;
    padding: 8px;
  }

  .part-card img,
  .part-card .logo-placeholder {
    width: 75px;
    height: 55px;
  }
}

.part-card .logo-placeholder {
  width: 52px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdf4;
  border-radius: 8px;
  font-size: 20px;
}

.section {
  padding: 0 0 30px;
}

.grid-info {
  max-width: 1400px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  padding: 0 8%;
}

.box {
  background: white;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

.box:hover {
  transform: translateY(-6px);
  border-color: #22c55e;
}

.box h3 {
  color: #0b3d2e;
  margin-bottom: 8px;
}
.box p {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

.solar-note {
  padding: 40px 20px;
  background: #f8fafc;
  text-align: center;
}

.solar-note-container {
  max-width: 700px;
  margin: auto;
}

.solar-note-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.solar-note-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #22c55e;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.solar-note-btn:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

.privacy-container {
  max-width: 1000px;
  margin: 140px auto 60px;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.privacy-container h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #0f172a;
}
.privacy-container h2 {
  margin-top: 40px;
  font-size: 1.6rem;
  color: #111827;
  border-left: 4px solid #38d39f;
  padding-left: 10px;
}
.privacy-container h3 {
  margin-top: 25px;
  font-size: 1.2rem;
  color: #1f2937;
}
.privacy-container h4 {
  margin-top: 15px;
  font-size: 1rem;
  color: #374151;
}
.privacy-container p {
  line-height: 1.8;
  color: #4b5563;
  margin: 10px 0;
}
.privacy-container ul {
  padding-left: 20px;
}
.privacy-container ul li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #4b5563;
}
.privacy-container a {
  color: #38d39f;
  text-decoration: none;
}
.privacy-container a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-container {
    margin: 110px 15px 40px;
    padding: 25px 18px;
  }
  .privacy-container h1 {
    font-size: 1.8rem;
  }
  .privacy-container h2 {
    font-size: 1.3rem;
  }
}

.director-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #0f2027, #203a43, #1c2d37);
  color: #fff;
}

.director-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}

.director-video-card {
  flex: 0 0 320px;
  display: flex;
  justify-content: center;
}

.video-wrapper {
  position: relative;
  width: 250px;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(60, 255, 0, 0.2);
  transition: all 0.4s ease;
}

.video-wrapper:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: #3cff00;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.video-status-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
}

.video-status-icon.animate-pop {
  animation: instaPop 0.7s ease-in-out forwards;
}

@keyframes instaPop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  30% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
  40% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

.director-content {
  flex: 1;
  max-width: 1200px;
  font-family: "Poppins", sans-serif;
}

.director-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #3cff00;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.director-content p:nth-child(3) {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.director-content p:nth-child(4) {
  font-size: 0.95rem;
  color: #3cff00;
  font-weight: 500;
  margin-bottom: 18px;
}

.director-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #d0d7da;
  margin-bottom: 16px;
  text-align: justify;
}

.director-content p:nth-child(5) {
  position: relative;
  padding-top: 15px;
}

.director-content p:nth-child(5)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: #3cff00;
  opacity: 0.6;
}

.director-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 13px 28px;
  background: linear-gradient(135deg, #3cff00, #2ecc00);
  color: #000;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(60, 255, 0, 0.25);
}

.director-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 40px rgba(60, 255, 0, 0.45);
}

.lg-groupco {
  --gc-accent: #2dbb00; /* single accent color used by every card now */
  --gc-ink: #1b1b1b;
  --gc-muted: rgba(27, 27, 27, 0.6);
  --gc-line: rgba(45, 187, 0, 0.18);
  --gc-paper: #f5fbf3;

  font-family: "Poppins", sans-serif;
  padding: 80px 24px;
  background: var(--gc-paper);
}

.lg-groupco .gc-head {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}
.lg-groupco .gc-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gc-accent);
  margin-bottom: 10px;
}
.lg-groupco .gc-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--gc-ink);
  margin-bottom: 14px;
}
.lg-groupco .gc-sub {
  font-size: 0.98rem;
  color: var(--gc-muted);
  line-height: 1.6;
}

.lg-groupco .gc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .lg-groupco .gc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .lg-groupco .gc-grid {
    grid-template-columns: 1fr;
  }
}

.lg-groupco .gc-card {
  --accent: var(
    --gc-accent
  ); /* same accent on every card, regardless of data-accent */
  position: relative;
  background: #fff;
  border: 1px solid var(--gc-line);
  border-radius: 14px;
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.lg-groupco .gc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.lg-groupco .gc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px -20px rgba(20, 120, 0, 0.28);
  border-color: var(--accent);
}
.lg-groupco .gc-card:hover::before {
  transform: scaleX(1);
}

.lg-groupco .gc-icon {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 187, 0, 0.08);
  color: var(--accent);
  font-size: 1.9rem;
  margin-bottom: 6px;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}
.lg-groupco .gc-card:hover .gc-icon {
  transform: rotate(-8deg) scale(1.08);
  background: var(--accent);
  color: #fff;
}

/* logo image sits on top of the circle; the <i> icon behind it is
   the fallback shown if the image is missing/broken */
.lg-groupco .gc-icon .gc-logo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  background: #fff;
  border-radius: 50%;
}
.lg-groupco .gc-icon .gc-logo-img:not([src]),
.lg-groupco .gc-icon .gc-logo-img[src=""] {
  display: none;
}

.lg-groupco .gc-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gc-ink);
}
.lg-groupco .gc-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: -6px;
}
.lg-groupco .gc-desc {
  font-size: 0.88rem;
  color: var(--gc-muted);
  line-height: 1.55;
  flex: 1;
}

.lg-groupco .gc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--accent);
  transition:
    opacity 0.2s ease,
    gap 0.2s ease;
}
.lg-groupco .gc-link:hover {
  opacity: 0.7;
  gap: 9px;
}
.lg-groupco .gc-link--muted {
  color: var(--gc-muted);
  border-bottom: 1px dashed rgba(27, 27, 27, 0.3);
  cursor: default;
}
.lg-groupco .gc-link--muted:hover {
  opacity: 1;
  gap: 6px;
}

.lg-groupco .gc-current {
  border-color: var(--gc-accent);
}
.lg-groupco .gc-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--gc-accent);
  padding: 5px 10px;
  border-radius: 20px;
}

/* scroll reveal (namespaced — won't clash with .reveal-left/.reveal-right) */
.lg-groupco .gc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.lg-groupco .gc-reveal.gc-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .lg-groupco .gc-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .lg-groupco .gc-card,
  .lg-groupco .gc-icon {
    transition: none;
  }
}
@media (max-width: 992px) {
  .director-container {
    gap: 50px;
  }
  .director-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .director-container {
    flex-direction: column;
    text-align: center;
  }
  .director-video-card {
    width: 260px;
  }
  .director-content {
    max-width: 100%;
  }
  .director-content h2 {
    font-size: 2rem;
  }
  .director-content p {
    text-align: center;
  }
  .director-content p:nth-child(5)::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .video-wrapper {
    height: 520px;
  }
}

@media (max-width: 480px) {
  .director-section {
    padding: 70px 15px;
  }
  .director-video-card {
    width: 220px;
  }
  .director-content h2 {
    font-size: 1.8rem;
  }
  .director-content p {
    font-size: 0.9rem;
  }
  .director-btn {
    padding: 12px 22px;
    font-size: 0.9rem;
  }
  .video-wrapper {
    height: 450px;
  }
}

@media (max-width: 1200px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .trust-section {
    padding: 60px 6%;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .about-container,
  .mission-vision,
  .why-grid,
  .stats,
  .stats-section,
  .process-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }
  .banner-overlay h1 {
    font-size: 3rem;
  }
  .about-content h2,
  .section-header h2,
  .about-cta h2 {
    font-size: 2.2rem;
  }
  .nav-links {
    gap: 15px;
    flex-wrap: wrap;
  }
  .service-row,
  .service-row.reverse {
    flex-direction: column;
  }
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-choose .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-content h1 {
    font-size: 3rem;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-info,
  .contact-form-box {
    padding: 50px 30px;
  }
  .contact-info h2 {
    font-size: 2.2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .lg-about-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .lg-about-title {
    font-size: 2.2rem;
  }
  .lg-about-stats {
    justify-content: center;
  }
  .lg-about-map img {
    max-width: 350px;
  }
  .solar-now-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .hero {
    padding: 20px;
    min-height: 100vh;
  }
  .content h1 {
    font-size: 2.3rem;
    line-height: 1.2;
  }
  .content p {
    font-size: 1rem;
  }
  .vision-section {
    padding: 60px 20px;
  }
  .vision-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }
  .vision-left h2 {
    font-size: 2.2rem;
  }
  .vision-left p {
    font-size: 1rem;
  }
  .vision-right img {
    width: 100%;
    max-width: 280px;
    padding-bottom: 200px;
  }
  .bg-text {
    font-size: clamp(2rem, 13vw, 12rem);
    -webkit-text-stroke: 1px #d6dbe5;
  }
  .about-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
  }
  .about-content h2 {
    font-size: 1.8rem !important;
    text-align: center;
  }
  .services-content h1 {
    font-size: 2.3rem;
  }
  .service-text h2 {
    font-size: 2rem;
  }
  .process-header h2,
  .why-header h2,
  .cta-content h2 {
    font-size: 2rem;
  }
  .stats,
  .stats-section {
    grid-template-columns: 1fr;
  }
  .stat h2,
  .stat-card h2 {
    font-size: 3rem;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .why-grid,
  .why-choose .why-grid {
    grid-template-columns: 1fr;
  }
  .why-top h2 {
    font-size: 2.2rem;
  }
  .offer {
    padding: 80px 6%;
  }
  .offer-header h2 {
    font-size: 2.2rem;
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .solar-section {
    flex-direction: column;
    padding: 50px 20px;
    margin-top: 80px;
    gap: 40px;
  }
  .solar-info {
    width: 100%;
    text-align: center;
  }
  .solar-info h2 {
    font-size: 2rem;
    line-height: 1.3;
  }
  .solar-desc {
    font-size: 1rem;
    line-height: 1.7;
  }
  .solar-features {
    grid-template-columns: 1fr;
    margin-top: 25px;
  }
  .calculator-card {
    width: 100%;
    padding: 25px 18px;
    border-radius: 15px;
  }
  .calculator-card h3 {
    font-size: 1.4rem;
  }
  .input-group label {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    font-size: 0.95rem;
  }
  .results {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .result-box span {
    font-size: 1.3rem;
  }
  .section-header h2 {
    font-size: 26px;
  }
  .section-header p {
    font-size: 12px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .trust-card {
    padding: 20px;
  }
  .trust-card i {
    font-size: 24px;
  }

  a.Contact-btn {
    width: 80%;
    margin: 15px auto;
    display: block;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none !important;
    color: inherit;
  }
  .Contact-btn {
    margin-left: 15px;
  }
}

@media (max-width: 480px) {
  .trust-section {
    padding: 50px 5%;
  }
  .section-header p {
    font-size: 12px;
  }
  .section-header h2 {
    font-size: 22px;
  }
  .trust-card p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .nested-dropdown:hover > .nested-menu {
    opacity: 1;
    visibility: visible;
  }

  .nested-dropdown > .nested-menu {
    display: none;
  }

  .nested-dropdown.active > .nested-menu {
    display: block;
  }
  .nested-menu {
    display: none;
  }

  .nested-dropdown.active > .nested-menu {
    display: block;
  }

  .nested-dropdown > a {
    justify-content: center;
  }

  .nested-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border-radius: 0;
  }

  .nested-menu a {
    padding-left: 40px;
  }
}
