/* ================= ROOT VARIABLES ================= */
:root {
  --primary-purple: #f28c28;
  --secondary-green: #6fbf4a;
  --dark-bg: #0f4c0f;
  --text-dark: #1a1a1a;
}

/* ================= GLOBAL ================= */
body {
  font-family: "Segoe UI", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
}

/* ================= TOP HEADER FIX ================= */
/* ================= TOP HEADER ================= */
.top-header {
  background: var(--dark-bg);
  color: #fff;
  font-size: 14px;
  min-height: 48px;
  display: flex;
  align-items: center;
}

/* Our own flex row (not Bootstrap utilities) */
.topbar-row {
  display: flex;
  align-items: center;
  width: 100%;
}

/* Left */
.top-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Push icons to EXTREME RIGHT */
.top-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto; /* ðŸ”¥ now works */
}

/* ================= MOBILE ================= */
/* ================= MOBILE TOP BAR FIX ================= */
@media (max-width: 768px) {
  .top-header {
    padding: 10px 0; /* ðŸ”‘ gives vertical breathing space */
  }

  .topbar-row {
    gap: 10px; /* spacing between text & icons */
  }

  /* Slightly smaller icons on mobile */
  .icon-circle {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

/* Remove Bootstrap default caret */
.dropdown-toggle::after {
  display: none !important;
}

/* Normal menu */
.nav-link {
  padding: 8px 16px;
  font-weight: 600;
  color: var(--text-dark) !important;
  background: transparent !important;
  transition: all 0.3s ease;
}

/* ================= PARENT MENU (HOVER = CLICK) ================= */
.nav-link {
  padding: 10px 16px;
  font-weight: 600;
  color: var(--text-dark) !important;
  background: transparent !important;
  transition: all 0.25s ease;
}

.hero-image {
  height: 450px !important;
  width: 100%;
}

/* Dropdown icon animation */
.dropdown-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Rotate icon when open */
.nav-item.show .dropdown-icon {
  transform: rotate(180deg);
}

/* ================= FIXED CLASSY TOP ICONS ================= */
.classy-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Perfect center fix */
.icon-circle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;

  /* HIGH CONTRAST */
  color: #ffffff !important;

  /* Glossy background */
  background: linear-gradient(145deg, #7b2cbf, #5a189a);

  /* Depth */
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.35),
    0 4px 10px rgba(0, 0, 0, 0.45);

  transition: all 0.3s ease;
}

/* Force icon centering */
.icon-circle i {
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Platform colors (still visible on dark bg) */
.icon-circle.fb {
  background: linear-gradient(145deg, #4e73df, #2e59d9);
}

.icon-circle.tw {
  background: linear-gradient(145deg, #36b9cc, #1da1f2);
}

.icon-circle.ig {
  background: linear-gradient(145deg, #f783ac, #c13584);
}

/* Hover â€“ subtle lift */
.icon-circle:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.4),
    0 6px 14px rgba(0, 0, 0, 0.55);
}

/* ================= STATS SECTION ================= */
.stats-section {
  padding: 80px 0;
  background: #fff;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

/* Box */
.stat-box {
  position: relative;
  padding: 0 40px;
}

/* Content */
.stat-content h2 {
  font-size: 64px;
  font-weight: 700;
  color: #0a2540;
  margin: 0;
}

.stat-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0 12px;
  color: #0a2540;
}

.stat-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  max-width: 280px;
}

/* Divider container */
.stats-wrapper {
  position: relative;
}

/* ================= HORIZONTAL LINE (FULL WIDTH) ================= */
.stats-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #dcdcdc;
}

/* ================= VERTICAL LINE ================= */
.divider-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #dcdcdc;
}

/* ================= RHOMBUS ================= */
.divider-diamond {
  position: absolute;
  left: -6px; /* centers on vertical line */
  top: -6px; /* centers on horizontal line */
  width: 12px;
  height: 12px;
  background: #21a667;
  transform: rotate(45deg);
  z-index: 3;
  animation: diamondPulse 1.8s infinite ease-in-out;
}

/* ================= ANIMATION ================= */
@keyframes diamondPulse {
  0% {
    transform: rotate(45deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: rotate(45deg) scale(1.5);
    opacity: 0.6;
  }
  100% {
    transform: rotate(45deg) scale(1);
    opacity: 1;
  }
}

/* ================= SERVICES ================= */
.services-section {
  padding: 100px 0 80px;
  background: #f8fafc;
}

.services-header {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.services-badge {
  display: inline-block;
  background: #21a667;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* Content */
.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0a2540;
}

.service-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-content a {
  font-weight: 600;
  color: #0a2540;
  text-decoration: underline;
}

/* Image */
.service-image {
  position: relative;
}

.service-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Icon box */
.service-icon {
  position: absolute;
  right: 20px;
  top: -26px;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
}

.service-icon.green {
  background: #21a667;
}

.service-icon.blue {
  background: #0a2540;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .stats-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .with-divider {
    padding-left: 40px;
  }

  .divider-line {
    display: none;
  }

  .divider-diamond {
    display: none;
  }
}

/* ================= SERVICES ================= */
.services-section {
  position: relative;
  padding: 100px 0 80px;
  background: #f8fafc;
  overflow: hidden;
}

/* Background pattern */
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0.03),
    rgba(0, 0, 0, 0.03) 1px,
    transparent 1px,
    transparent 8px
  );
  z-index: 0;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

/* Badge */
.services-badge {
  display: inline-block;
  background: #21a667;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.service-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* ================= CONTENT ================= */
.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #0a2540;
  position: relative;
  padding-bottom: 12px;
}

.service-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 2px;
  background: #21a667;
}

.service-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-content a {
  font-weight: 600;
  color: #0a2540;
  text-decoration: underline;
}

/* ================= IMAGE ================= */
.service-image {
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

/* ================= ICON ================= */
.service-icon {
  position: absolute;
  right: 20px;
  top: calc(100% - 248px);
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  z-index: 10;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(6deg);
}

.service-icon.green {
  background: #21a667;
}
.service-icon.blue {
  background: #0a2540;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= WHY CHOOSE ================= */
.why-choose {
  padding: 90px 20px;
  background: repeating-linear-gradient(
    -45deg,
    #f7f7f7,
    #f7f7f7 6px,
    #ededed 6px,
    #ededed 7px
  );
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.why-header {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 70px;
}

.up-workflow {
  padding: 80px 0;
}

.up-workflow .container {
  text-align: center; /* centers inline elements like span */
}

.why-tag {
  display: inline-block;
  background: #21a667;
  color: #fff;
  padding: 9px 26px;
  border-radius: 30px;
  font-size: 17px;
  margin-bottom: 16px;
}

.why-header h2 {
  font-size: 44px;
  line-height: 1.2;
  color: #0a2540;
  margin-bottom: 18px;
}

.why-header p {
  font-size: 17px;
  color: #555;
}

/* ================= LAYOUT ================= */
.why-wrapper {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 40px;
  align-items: flex-start;
}

/* ================= FEATURES ================= */
.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px 30px;
}

.why-item h4 {
  font-size: 20px;
  color: #0a2540;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ================= ICON ================= */
.why-icon {
  position: absolute;
  top: -28px;
  left: 30px;
  width: 56px;
  height: 56px;
  background: #21a667;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 12px 25px rgba(33, 166, 103, 0.35);
}

.why-icon i {
  color: #fff;
  font-size: 28px;
}

.why-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 35px 30px 32px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.why-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* ================= FORM ================= */
.appointment-box {
  background: #071e34;
  color: #fff;
  padding: 45px 35px;
  border-radius: 14px;
}

.appointment-box h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.appointment-box p {
  font-size: 15px;
  margin-bottom: 28px;
  opacity: 0.9;
}

.appointment-box input,
.appointment-box select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 6px;
  border: none;
  margin-bottom: 15px;
}

.appointment-box button {
  width: 100%;
  padding: 14px;
  background: #21a667;
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

.appointment-box button:hover {
  background: #1b8c4d;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .why-wrapper {
    grid-template-columns: 1fr;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 34px;
  }
}

/* ================= ABOUT SECTION ================= */
.about-company {
  background-color: #f6fdf9;
  padding: 100px 0;
}

.about-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ================= IMAGE GRID ================= */
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.about-images .img img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Custom placements */
.img-1 {
  grid-row: span 2;
}
.img-2 {
}
.img-3 {
}

/* ================= SPINNING LOGO ================= */
.spin-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-29%, -24%);
  background: #fff;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.spin-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: spin 14s linear infinite;
  transform-origin: center;
}

/* Rotation ONLY */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ================= CONTENT ================= */
.about-tag {
  display: inline-block;
  color: #21a667;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.about-content h2 {
  font-size: 42px;
  color: #0a2540;
  margin-bottom: 18px;
}

.about-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-content h5 {
  font-size: 18px;
  margin-bottom: 14px;
  color: #0a2540;
}

/* ================= LIST ================= */
.about-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.about-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: #333;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #21a667;
  font-weight: bold;
}

/* ================= BUTTON ================= */
.about-btn {
  display: inline-block;
  background: #f28c28;
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.about-btn:hover {
  background: #21a667;
}

.about-images {
  position: relative;
  width: 520px;
  height: 520px;
}

/* ADVANCED GRID PATTERN */
.grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  background-color: #f7fdf9;

  background-image:
    /* horizontal lines */
    linear-gradient(to bottom, rgba(140, 200, 160, 0.25) 1px, transparent 1px),
    /* vertical lines */
    linear-gradient(to right, rgba(140, 200, 160, 0.25) 1px, transparent 1px),
    /* diamond nodes */
    radial-gradient(rgba(140, 200, 160, 0.45) 3px, transparent 3.5px);

  background-size:
    40px 40px,
    40px 40px,
    40px 40px;

  background-position:
    0 0,
    0 0,
    20px 20px; /* centers diamonds */
}

.about-images {
  position: relative;
  width: 520px;
  height: 520px;
  background:
    linear-gradient(#eaf6ee 1px, transparent 1px),
    linear-gradient(90deg, #eaf6ee 1px, transparent 1px);
  background-size: 40px 40px;
}

/* IMAGES */
.img {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-left {
  width: 260px;
  height: 360px;
  left: 0;
  top: 80px;
}

.img-top {
  width: 240px;
  height: 300px;
  right: 0;
  top: 0;
}

.img-bottom {
  width: 240px;
  height: 300px;
  right: 0;
  bottom: 0;
  top: 316px;
}

.header-btn {
  text-decoration: none;
  display: inline-block;
}

.ask-more-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}


/* SPINNER */
.spin-logo {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.spin-logo img {
  width: 117px;
  z-index: 2;
}

/* TEXT CIRCLE */
.text-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 18s linear infinite;
}

.text-circle span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 0 78px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #21a667;
}

/* ROTATION */
@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.spin-logo {
  z-index: 10;
}

.text-circle {
  z-index: 1;
}

.text-circle span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.3px;
  color: #21a667;
  white-space: nowrap;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .spin-logo {
    width: 130px;
    height: 130px;
  }
}

/* MODAL CUSTOM */
.modal-custom {
  border-radius: 20px;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}

/* IMAGE */
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.modal-body-content {
  padding: 35px;
}

.modal-body-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0a2540;
}

.modal-body-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.modal-body-content ul {
  padding-left: 0;
  list-style: none;
}

.modal-body-content ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #21a667;
}

/* FAQ SECTION */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #eaf8f1, #f6fff9);
  position: relative;
}

/* LEFT CONTENT */
.faq-subtitle {
  color: #21a667;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
}

.faq-title {
  font-size: 44px;
  font-weight: 700;
  color: #0a2540;
  line-height: 1.2;
  margin-bottom: 20px;
}

.faq-text {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.ask-btn {
  background: #0a2540;
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.ask-btn:hover {
  background: #21a667;
  color: #fff;
}

/* ACCORDION */
.faq-accordion .accordion-item {
  border: none;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 16px;
  color: #0a2540;
  padding: 22px;
  background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #21a667;
  color: #fff;
}

.faq-accordion .accordion-button::after {
  background-size: 16px;
}

.faq-accordion .accordion-body {
  background: #fff;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  padding: 22px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-title {
    font-size: 32px;
  }
}

.ask-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 1.5px solid rgba(10, 37, 64, 0.2); /* subtle border */
  border-radius: 50px;
  padding: 8px 20px 8px 10px;
  font-size: 18px;
  font-weight: 600;
  color: #0a2540;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ask-icon {
  width: 42px;
  height: 42px;
  background: #f28c28;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.3s ease;
}

/* hover */
.ask-more-btn:hover {
  border-color: #21a667;
  color: #21a667;
}

.ask-more-btn:hover .ask-icon {
  background: #21a667;
}
.footer-section {
  background: radial-gradient(circle at top, #0f2027, #000);
  color: #cfd8dc;
  padding: 70px 0 30px;
  font-size: 15px;
}

.footer-brand h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-brand p {
  line-height: 1.7;
}

.support-box {
  margin: 20px 0;
}

.support-box span {
  color: #9e9e9e;
  font-size: 14px;
}

.support-box h5 {
  color: #6cc04a;
  margin-top: 5px;
}

.footer-title {
  color: #ffc107;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cfd8dc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #6cc04a;
}

.footer-contact i {
  color: #6cc04a;
  margin-right: 8px;
}

.social-links a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1c1c1c;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: #fff;
}

.social-links a:hover {
  background: #6cc04a;
}

.newsletter-form {
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 50px 12px 15px;
  border-radius: 30px;
  border: 1px solid #333;
  background: transparent;
  color: #fff;
}

.newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #6cc04a;
  border: none;
  color: #000;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 14px;
}

.navbar .dropdown-toggle::after {
  margin-left: 2px;
}
.dropdown-toggle::after {
  display: inline-block !important;
}

/* HERO */
.contact-hero {
  background: url("https://demo.casethemes.net/solarva/wp-content/uploads/2024/06/remove-bg1.webp")
    center/cover no-repeat;
  padding: 120px 0;
  color: #0b2c3d;
}
.contact-hero h1 {
  font-size: 48px;
  font-weight: 700;
}
.contact-hero p span {
  color: #6c757d;
}

/* CONTACT WRAPPER */
.contact-info {
  background: #0b2c3d;
  color: #fff;
  padding: 40px;
}
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}
.info-box i {
  font-size: 22px;
  background: #43b02a;
  padding: 15px;
  border-radius: 10px;
}

/* FORM */
.contact-form {
  background: #e9f6e5;
  padding: 40px;
}
.small-title {
  color: #43b02a;
  font-weight: 600;
  letter-spacing: 1px;
}
.contact-form h2 {
  font-weight: 700;
  margin-bottom: 20px;
}
.form-control {
  border-radius: 8px;
  padding: 12px;
}

/* MAP */
.map-section iframe {
  filter: grayscale(100%);
}

.bank-partners {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}

.bank-heading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 600;
}

.bank-heading span {
  color: #21a667; /* primary green */
}

/* marquee */
.logo-marquee {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

.logo-track img {
  height: 60px;
  /* filter: grayscale(100%); */
  opacity: 0.8;
  transition: all 0.3s ease;
}

/* .logo-track img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
} */

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* =========================================================
   FINAL MOBILE POLISH (ADDED â€“ NON-DESTRUCTIVE)
   Does NOT override your desktop styles
========================================================= */

/* -------- SMALL TABLETS & BELOW -------- */
@media (max-width: 768px) {
  /* Top header icons stay in bar */
  .topbar-row {
    flex-wrap: nowrap;
  }

  .top-left {
    font-size: 13px;
  }

  /* Hero */
  .contact-hero {
    text-align: start;
    height: 254px;
    padding: 0 !important;
  }

  .contact-hero h1 {
    font-size: 24px;
  }

  .contact-hero .container {
    margin-top: 14px;
    padding: 0 20px;
  }

  /* Stats spacing */
  .stat-box {
    padding: 0 10px;
  }

  /* Services icons position fix */
  .service-icon {
    top: 20px !important;
  }

  /* About images scale */
  .about-images {
    width: 100%;
    height: auto;
  }

  .img-left,
  .img-top,
  .img-bottom {
    position: relative;
    width: 100%;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  /* Spin logo */
  .spin-logo {
    position: relative;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    margin: 30px 0;
  }
}

/* -------- SMALL MOBILE -------- */
@media (max-width: 576px) {
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 24px;
  }

  .faq-title {
    font-size: 28px;
  }

  .why-header h2 {
    font-size: 28px;
  }

  .footer-section {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .logo-track img {
    height: 48px;
  }
}

/* -------- EXTRA SMALL -------- */
@media (max-width: 400px) {
  .icon-circle {
    width: 30px;
    height: 30px;
  }

  .contact-form,
  .contact-info {
    padding: 25px;
  }

  .ask-more-btn {
    font-size: 16px;
  }
}

/* ================= ABOUT UNIVERSAL POWER SECTION ================= */

.about-universal-power {
  padding: 100px 0;
  background: #ffffff;
}

.up-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* LEFT SIDE */
.up-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #3aaa35;
  font-size: 14px;
}

.up-section-label .up-line {
  width: 30px;
  height: 2px;
  background: #3aaa35;
}

.up-section-label .up-diamond {
  width: 10px;
  height: 10px;
  background: #3aaa35;
  transform: rotate(45deg);
}

.up-left h2 {
  font-size: 56px;
  line-height: 1.15;
  color: #0b2233;
  font-weight: 800;
  margin: 0;
}

/* RIGHT SIDE */
.up-right p {
  font-size: 18px;
  line-height: 1.7;
  color: #5a6a78;
  margin-bottom: 25px;
}

/* BUTTON */
.up-btn-outline {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 42px;
  border: 2px solid #f28c28;
  border-radius: 60px;
  color: #f28c28;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.up-btn-outline:hover {
  background: #0b2233;
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .up-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .up-left h2 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .up-left h2 {
    font-size: 34px;
  }

  .up-right p {
    font-size: 16px;
  }
}
/* ================= WHY CHOOSE US ================= */

.choose-us {
  background: #062648;
  padding: 100px 0;
  color: #fff;
}

.cu-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* TOP */
.cu-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.cu-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3aaa35;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.cu-diamond {
  width: 10px;
  height: 10px;
  background: #3aaa35;
  transform: rotate(45deg);
}

.cu-content h2 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cu-content p {
  color: #c7d4e0;
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
}

.cu-image img {
  width: 100%;
  border-radius: 6px;
}

/* FEATURES */
.cu-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.cu-box h4 {
  font-size: 20px;
  margin: 15px 0 10px;
}

.cu-box p {
  color: #c7d4e0;
  font-size: 16px;
  line-height: 1.6;
}

.cu-icon {
  font-size: 36px;
  color: #3aaa35;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cu-top {
    grid-template-columns: 1fr;
  }
  .cu-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cu-content h2 {
    font-size: 38px;
  }
  .cu-features {
    grid-template-columns: 1fr;
  }
}
.cu-icon {
  width: 70px;
  height: 70px;
  background: #21a667;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 30px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.cu-box:hover .cu-icon {
  transform: rotate(8deg) scale(1.1);
}

/* ================= SECTION ================= */
.up-workflow {
  padding: 100px 0;
  background: #ffffff;
}

.up-title {
  text-align: center;
  font-size: 42px;
  color: #0a2540;
  margin-bottom: 70px;
}

/* ================= GRID ================= */
.up-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.up-step {
  position: relative;
  background: linear-gradient(180deg, rgba(33, 166, 103, 0.08), #ffffff 55%);
  padding: 44px 28px;
  border-radius: 22px;
  text-align: center;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.45s ease;
}

.up-step:hover {
  transform: translateY(-14px);
  box-shadow: 0 22px 45px rgba(33, 166, 103, 0.25);
}

/* ================= NUMBER ================= */
.up-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #21a667;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(33, 166, 103, 0.4);
}

/* ================= ICON ================= */
.up-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #21a667;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.12),
    inset 0 0 0 3px rgba(33, 166, 103, 0.12);
  transition: all 0.45s ease;
}

.up-step:hover .up-icon {
  transform: scale(1.1) rotateY(180deg);
  box-shadow: 0 14px 35px rgba(33, 166, 103, 0.45);
}

/* ================= TEXT ================= */
.up-step h4 {
  font-size: 20px;
  color: #0a2540;
  margin-bottom: 12px;
}

.up-step p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
  .up-steps {
    grid-template-columns: 1fr;
  }
}

/* ====== SECTION ====== */
.solar-calculator {
  background: url("solar-bg.jpg") center/cover no-repeat;
  padding: 60px 20px;
}

/* ====== LAYOUT ====== */
.calc-container {
  max-width: 1200px;
  margin: auto;
  background: rgba(32, 77, 55, 0.95);
  border-radius: 18px;
  padding: 30px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 25px;
}

/* ====== LEFT PANEL ====== */
.left-panel h2 {
  color: #fff;
}

.left-panel p {
  color: #e0e0e0;
}

.toggle {
  display: flex;
  margin: 20px 0;
  background: #1b5e45;
  border-radius: 50px;
}

.toggle button {
  flex: 1;
  padding: 12px;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 600;
}

.toggle button.active {
  background: #b4d455;
  color: #000;
}

.bill-box {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
}

.bill-box span {
  color: #666;
}

.bill-box h3 {
  margin-top: 10px;
  font-size: 26px;
}

/* ====== RIGHT PANEL ====== */
.top-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  position: relative;
}

.info-card.highlight {
  background: #f3fdf7;
  border: 2px solid #b4d455;
}

.card-icon {
  font-size: 28px;
  color: var(--secondary-green);
}

.info-card h2 {
  margin: 10px 0 0;
  color: var(--secondary-green);
}

/* ====== COST BOX ====== */
.cost-box {
  margin-top: 25px;
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cost-item i {
  font-size: 26px;
  color: #b4d455;
}

.cost-item h2 {
  color: var(--secondary-green);
  font-size: 28px;
}

.cost-item.final {
  background: #f5fff8;
  border-radius: 16px;
  padding: 20px;
}

/* ====== CTA ====== */
.cta {
  text-align: center;
  margin-top: 40px;
}

.finance-btn {
  background: #b4d455;
  border: none;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: bold;
  margin-bottom: 15px;
}

.quote-btn {
  background: #f28c28;
  color: #fff;
  border: none;
  padding: 16px 35px;
  border-radius: 10px;
  font-size: 16px;
}

/* ====== MOBILE ====== */
@media (max-width: 992px) {
  .calc-container {
    grid-template-columns: 1fr;
  }

  .top-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cost-box {
    grid-template-columns: 1fr;
  }
}

.cost-box {
  margin-top: 25px;
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  display: grid;
  gap: 20px;
}

.cost-item i {
  font-size: 26px;
  color: #b4d455;
}

.cost-item h2 {
  color: var(--secondary-green);
  font-size: 32px;
}

.cost-item.full {
  text-align: center;
}

.cost-item.full h2 {
  font-size: 38px;
}

.d-none {
  display: none;
}

.finance-section {
  background: #f6fbf8;
  padding: 70px 20px;
}

.finance-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.finance-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.finance-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.finance-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  color: #fff;
}

.finance-content h3 {
  margin: 0;
  font-size: 20px;
}

.finance-content p {
  margin: 6px 0;
  font-size: 14px;
}

.finance-content .amount {
  font-size: 22px;
  font-weight: bold;
  color: #b4d455;
}

/* HOVER POPUP */
.finance-hover {
  position: absolute;
  inset: 0;
  background: rgba(11, 107, 58, 0.95);
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
}

.finance-hover h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #b4d455;
}

.finance-card:hover .finance-hover {
  opacity: 1;
  transform: translateY(0);
}

/* CTA */
.finance-cta {
  text-align: center;
  margin-top: 45px;
}

.loan-btn {
  background: #f28c28;
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.loan-btn i {
  margin-right: 8px;
}

/* MOBILE */
@media (max-width: 992px) {
  .finance-grid {
    grid-template-columns: 1fr;
  }

  .finance-card img {
    height: 220px;
  }
}

.join-team-section {
  padding: 70px 20px;
  background: #f7f7f7;
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.small-title {
  color: #ff6a00;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 42px;
  margin: 10px 0;
  color: #0b1c3d;
}

.section-header p {
  color: #666;
  font-size: 15px;
}

.form-map-wrapper {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.career-form input {
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 12px;
  border: 1.5px solid #1b5e20;
  border-radius: 4px;
  font-size: 14px;
}

.career-form button {
  width: 100%;
  padding: 14px;
  background: #0b1c3d;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.map-box {
  border: 4px solid #1b5e20;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 900px;
  border: none;
}

/* ADDRESS */
.address-wrapper {
  margin: 50px auto 20px;
  display: flex;
  justify-content: center;
}

.address-card {
  border: 1.5px solid #ffb38a;
  padding: 25px;
  max-width: 420px;
  text-align: center;
}

.address-card i {
  font-size: 26px;
  color: #ff6a00;
}

.address-card h4 {
  margin: 10px 0;
  color: #0b1c3d;
}

/* CONTACT INFO */
.contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.info-card {
  border: 1.5px solid #ffb38a;
  padding: 25px;
  text-align: center;
}

.info-card i {
  font-size: 24px;
  color: #ff6a00;
}

.info-card h4 {
  margin: 10px 0;
  color: #0b1c3d;
}

@media (max-width: 992px) {
  .form-map-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }
}

:root {
  --primary-blue: #2e5e7e;
  --dark-green: #21a667;
  --orange: #f7941d;
  --text-dark: #444;
  --light-bg: #f4f9f7;
}

body {
  font-family: "Segoe UI", sans-serif;
}

/* COMMON */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

section {
  overflow: hidden;
}

/* SECTION 1 */
.solar-guide-section {
  padding: 90px 0;
  background: #fff;
}

.solar-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.solar-content h1 {
  font-size: 38px;
  color: var(--dark-green);
  line-height: 1.3;
  margin-bottom: 22px;
}

.solar-content h1 span {
  display: block;
  font-size: 20px;
  color: var(--dark-green);
  margin-top: 6px;
}

.solar-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.solar-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.solar-images img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* SECTION 2 */
.solar-loan-info {
  padding: 90px 0;
  background: var(--light-bg);
}

.loan-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.loan-image img {
  width: 100%;
  border-radius: 20px;
}

.loan-text h2 {
  font-size: 34px;
  color: var(--dark-green);
  margin-bottom: 20px;
}

.loan-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 16px;
}

/* SECTION 3 */
.loan-features {
  padding: 90px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 34px;
  color: var(--dark-green);
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 35px 25px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.feature-item i {
  font-size: 34px;
  color: var(--orange);
  margin-bottom: 15px;
}

.feature-item h4 {
  font-size: 18px;
  color: var(--dark-green);
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14.5px;
  color: var(--text-dark);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .solar-grid,
  .loan-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .solar-content h1 {
    font-size: 28px;
  }

  .loan-text h2 {
    font-size: 26px;
  }
}

.solar-structures {
  padding: 90px 0;
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #21a667; /* dark green */
}

.section-header p {
  max-width: 600px;
  margin: 12px auto 0;
  color: #555;
  font-size: 16px;
}

/* GRID */
.structure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.structure-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.structure-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.structure-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.structure-overlay {
  position: absolute;
  bottom: 20px;
  left: 48%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.65);
  padding: 10px 26px;
  border-radius: 30px;
}

.structure-overlay span {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .structure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .structure-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 30px;
  }
}

.contact-premium {
  padding: 90px 0;
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}

/* LEFT PANEL */
.contact-info-panel {
  background: linear-gradient(160deg, #0b6b3a, #21a667);
  color: #fff;
  padding: 50px;
  border-radius: 18px;
}

.contact-tag {
  display: inline-block;
  background: #ffffff22;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-info-panel h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-desc {
  opacity: 0.9;
  margin-bottom: 35px;
}

.contact-card {
  display: flex;
  gap: 16px;
  margin-bottom: 25px;
}

.contact-card i {
  font-size: 22px;
  color: #ffb703;
  margin-top: 4px;
}

.contact-card h5 {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 14px;
  opacity: 0.9;
}

/* RIGHT FORM */
.contact-form-panel {
  background: #fff;
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.contact-form-panel h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: #0b6b3a;
}

.contact-form-panel form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #dfe6e9;
  font-size: 14px;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus,
.contact-form-panel select:focus {
  outline: none;
  border-color: #21a667;
}

.contact-btn {
  margin-top: 10px;
  align-self: flex-start;
  background: #21a667;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #179157;
}

.contact-btn i {
  transition: transform 0.3s ease;
}

.contact-btn:hover i {
  transform: translateX(5px);
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 420px;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.main-navbar {
  border-bottom: 1px solid #0b6b3a;
}

#homeCost {
  display: contents;
}

.nav-link:hover {
  color: #0b6b3a;
  font-weight: 700;
}

.navbar-collapse {
  flex-grow: unset !important;
}

.header-btn {
  display: inline-block;
  background-color: #ff9500;
  color: #fff;
  padding: 9px 26px;
  border-radius: 30px;
  font-size: 17px;
  border: 0;
}

.navbar .container {
   display: block !important;
}



@media (min-width: 320px) and (max-width: 767px) {
 

  .navbar-brand img {
    max-height: 50px !important;
  }

  .top-left {
    align-items: start !important;
    flex-direction: column;
  }

  .tof-left span {
    margin: 0 !important;
  }

  .responsive-topbar {
    display: flex;
    flex-direction: column;
  }

  .responsive-topbar span {
    margin: 0 !important;
  }

  .spin-logo {
    transform: translate(-122%, -90%) !important;
  }

  .why-choose .about-btn {
    margin-top: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .spin-logo {
    transform: translate(-186%, -78%) !important;
  }

  .spin-logo img {
    width: 96px;
  }

  .why-choose .about-btn {
    margin-top: 24px;
  }

  .toggle-bar {
    display: none;
  }
}


.solar-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 30px;
}

.solar-points-grid li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.solar-points-grid i {
  font-size: 0.9rem;   /* small icon */
  color: #21a667;      /* solar green */
}




/* SECTION */
.scheme-hero {
  padding: 80px 20px;
  background: #ffffff;
}

/* CONTAINER */
.scheme-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.scheme-content {
  flex: 1;
}

.scheme-tag {
     color: #21a667;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
  font-size: 24px;
}

.scheme-content h1 {
  font-size: 44px;
  line-height: 1.2;
  margin: 16px 0;
  color: #222;
}

.scheme-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  max-width: 520px;
}

/* BUTTONS */
.scheme-actions {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #21a667;
  color: #fff;
}

.btn-secondary {
  background:#21a667;
  color: #fff;
}

/* RIGHT IMAGE */
.scheme-image {
  flex: 1;
  text-align: right;
}

.scheme-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ---------- TABLET ---------- */
@media (max-width: 991px) {
  .scheme-container {
    gap: 40px;
  }

  .scheme-content h1 {
    font-size: 36px;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
  .scheme-container {
    flex-direction: column;
    text-align: center;
  }

  .scheme-content p {
    max-width: 100%;
  }

  .scheme-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .scheme-image {
    text-align: center;
  }
}
