:root {
  --solar-yellow: #ffb400;
  --solar-orange: #ff7a00;
  --deep-navy: #0c1424;
  --soft-blue: #eef3f9;
  --card-shadow: 0 18px 40px rgba(10, 20, 40, 0.12);
  --ink: #0e182a;
  --ink-muted: #5b6b82;
  --mint: #1dd1a1;
  --sky: #5f8dff;
  --violet: #7c5cff;
  --coral: #ff6b6b;
}

* {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf2 55%, #ffffff 100%);
  color: #0f1b2d;
}

.topbar {
  background: linear-gradient(90deg, var(--coral), var(--solar-orange), var(--solar-yellow));
  color: #ffffff;
  font-weight: 600;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 27, 45, 0.06);
  box-shadow: 0 10px 30px rgba(12, 20, 36, 0.06);
  padding: 0.35rem 0;
}

.brand-logo {
  height: auto;
  width: 100px;
}

.navbar-brand span {
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--ink);
}

.navbar .nav-link {
  color: var(--ink-muted);
  font-weight: 500;
  padding: 0.75rem 1.1rem;
  transition: color 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

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

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.2rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--solar-orange), var(--solar-yellow));
}

.navbar .nav-link i {
  font-size: 1rem;
  color: var(--solar-orange);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffe8a3;
  color: #7a4d00;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-pill i {
  font-size: 1.1rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 27, 45, 0.08);
  font-size: 0.9rem;
  color: var(--ink);
  box-shadow: 0 8px 16px rgba(10, 20, 40, 0.08);
}

.feature-chip i {
  color: var(--solar-orange);
}

.navbar {
  min-height: 70px;
}

.btn-solar {
  background: linear-gradient(120deg, var(--coral), var(--solar-orange), var(--solar-yellow));
  border: none;
  color: #1b1b1b;
  box-shadow: 0 10px 24px rgba(255, 122, 0, 0.25);
}

.btn-solar:hover {
  color: #1b1b1b;
  opacity: 0.95;
}

.btn-solar:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(255, 122, 0, 0.3);
}

.hero-section {
  padding: 130px 0 110px;
  background: radial-gradient(circle at 20% 20%, #fff1d1 0%, #ffffff 55%);
  overflow: hidden;
  position: relative;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    135deg,
    rgb(255, 204, 86) 0%,
    rgba(255, 123, 0, 0.428) 40%,
    rgba(12, 20, 36, 0.45) 100%
  );
  /* backdrop-filter: blur(6px); */
}

.hero-section .container {
  position: relative;
  z-index: 3;
}

.hero-bg-slider {
  z-index: 2222;
  height: 450px;
  @media (max-width: 768px) { 
      height: 350px;
  }
}

.hero-slider-ui {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;        /* key property */
  background-repeat: no-repeat;  /* no repeat */
  background-position: center;   /* center image */
  opacity: 0;
  transition: opacity 0.8s ease;
  transform: scale(1.03);
  padding: 150px 0;
    @media (max-width: 768px) {  
      padding: 70px 40px;
    }
}

.hero-bg-slide.is-active {
  opacity: 1;
}

.hero-bg-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 20, 36, 0.25) 0%,
    rgba(12, 20, 36, 0.55) 70%,
    rgba(255, 255, 255, 0.15) 100%
  );
}

.slide-1 {
  background-image: linear-gradient(
    135deg,
    rgb(255, 204, 86) 0%,
    rgba(255, 123, 0, 0.428) 40%,
    rgba(12, 20, 36, 0.45) 100%
  ), url("../img/slider/slider-2.png");
}

.slide-2 {
 background-image: linear-gradient(
    135deg,
    rgb(255, 204, 86) 0%,
    rgba(255, 123, 0, 0.428) 40%,
    rgba(12, 20, 36, 0.45) 100%
  ),url("../img/slider/slider-3.png");
}

.slide-3 {
  background-image: linear-gradient(
    135deg,
    rgb(255, 204, 86) 0%,
    rgba(255, 123, 0, 0.428) 40%,
    rgba(12, 20, 36, 0.45) 100%
  ), url("../img/slider/slider-1.png");
}
.top-space {
  margin-top: 50px;
}

.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: linear-gradient(
    135deg,
    rgba(255, 180, 0, 0.5),
    rgba(255, 122, 0, 0.5)
  );
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 4;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, background 0.2s ease;
  pointer-events: auto;
}

.hero-slider-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 180, 0, 0.7),
    rgba(255, 122, 0, 0.7)
  );
  transform: translateY(-50%) scale(1.05);
}

.hero-slider-btn.prev {
  left: 18px;
}

.hero-slider-btn.next {
  right: 18px;
}

.hero-slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
  pointer-events: auto;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 26px;
  background: #fff;
}

.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.3), transparent 62%);
  top: -180px;
  left: -160px;
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.16), transparent 70%);
  right: -160px;
  bottom: -140px;
  z-index: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(12, 20, 36, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
  z-index: 0;
}

.hero-section .display-4,
.hero-section .display-5 {
  background: linear-gradient(120deg, var(--ink), #1d2b4a 40%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--solar-orange);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}

.metric {
  font-size: 1.4rem;
  font-weight: 700;
}

.metric-label {
  font-size: 0.85rem;
  color: #55637a;
}

.hero-card {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--card-shadow);
  position: relative;
}

.energy-calculator {
  display: grid;
  gap: 18px;
}

.calc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.calc-title {
  font-size: 0.95rem;
  color: #5b6b82;
  font-weight: 600;
}

.calc-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
}

.calc-range {
  font-size: 0.85rem;
  color: #6c7a92;
  background: rgba(12, 20, 36, 0.06);
  padding: 6px 10px;
  border-radius: 999px;
}

.energy-range {
  accent-color: var(--solar-orange);
}

.calc-outputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.output-box {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(12, 20, 36, 0.06);
  border: 1px solid rgba(12, 20, 36, 0.08);
}

.output-label {
  font-size: 0.8rem;
  color: #6c7a92;
  margin-bottom: 6px;
}

.output-value {
  font-size: 1.1rem;
  font-weight: 700;
}

.calc-note {
  font-size: 0.8rem;
  color: #6c7a92;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 180, 0, 0.18);
  color: #7a4d00;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.hero-visual {
  position: relative;
  height: 280px;
  border-radius: 20px;
  background: linear-gradient(180deg, #0c1424, #15253f);
  overflow: hidden;
}

.sun {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe8a3, #ffb400);
  top: -25px;
  right: 30px;
  animation: float 6s ease-in-out infinite;
}

.orbit {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 2px dashed rgba(255, 180, 0, 0.3);
  border-radius: 50%;
  top: -70px;
  left: -60px;
  animation: spin 18s linear infinite;
}

.panel-grid {
  position: absolute;
  inset: 60px 35px 35px 35px;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.carousel {
  position: relative;
  z-index: 1;
}

.carousel-inner {
  border-radius: 32px;
  min-height: 520px;
}

.carousel-item {
  padding: 24px 0;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.carousel-item .container {
  width: 100%;
}

.slide-a {
  background: linear-gradient(135deg, #fff5e6 0%, #ffffff 60%, #fef9f3 100%);
}

.slide-b {
  background: linear-gradient(135deg, #eef6ff 0%, #ffffff 60%, #f3f8ff 100%);
}

.slide-c {
  background: linear-gradient(135deg, #f7efff 0%, #ffffff 60%, #faf5ff 100%);
}

.carousel-indicators [data-bs-target] {
  background-color: var(--solar-orange);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) grayscale(1);
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 70% 70%;
}

.hero-media {
  height: 360px;
  border-radius: 28px;
  background-image: linear-gradient(120deg, rgba(12, 20, 36, 0.35), rgba(12, 20, 36, 0.25)),
    url("../img/solar-panels-roof-solar-cell.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.hero-media-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #fff;
}

.card-tilt {
  transform: perspective(900px) rotateY(-6deg);
}

.stats-glass {
  display: grid;
  gap: 16px;
}

.stat-pill {
  background: rgba(12, 20, 36, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(12, 20, 36, 0.1);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(10, 20, 40, 0.12);
}

.stat-value {
  font-size: 1.2rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.9rem;
  color: #4a5a72;
}

.hero-card,
.hero-media,
.stats-glass {
  border: 1px solid rgba(15, 27, 45, 0.06);
}

.hero-section .display-4,
.hero-section .display-5 {
  letter-spacing: -0.6px;
  color: var(--ink);
}

.hero-section .lead {
  color: var(--ink-muted) !important;
}

.btn-outline-dark {
  border-color: rgba(15, 27, 45, 0.2);
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: #fff;
}

.section-pad {
  padding: 90px 0;
}

.section-title {
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--solar-orange), var(--solar-yellow));
}

.bg-soft {
  background: linear-gradient(180deg, #f1f6ff 0%, #ffffff 55%, #fff7ed 100%);
}

.image-stack {
  position: relative;
  min-height: 340px;
}

.img-card {
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--card-shadow);
}

.img-one {
  height: 400px;
  background-image: linear-gradient(120deg, rgba(12, 20, 36, 0.2), rgba(12, 20, 36, 0)),
    url("../img/solar-panel.jpg");
}

.img-two {
  position: absolute;
  bottom: -20px;
  right: 20px;
  height: 220px;
  width: 240px;
  background-image: linear-gradient(120deg, rgba(255, 180, 0, 0.1), rgba(12, 20, 36, 0.5)),
    url("https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?q=80&w=1200&auto=format&fit=crop");
  border: 4px solid #fff;
}

.feature-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 26px;
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--solar-orange);
  position: absolute;
  left: 0;
  top: 14px;
}

.service-card {
  border: none;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  background: linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card .card-body {
  padding: 28px;
}

.icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  border: 1px solid rgba(15, 27, 45, 0.08);
  box-shadow: 0 10px 22px rgba(10, 20, 40, 0.08);
}

.icon-circle i {
  background: linear-gradient(135deg, var(--solar-orange), var(--solar-yellow), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.icon-circle.fill i {
  background: none;
  color: #ffffff;
}
.icon-sun i {
  background: linear-gradient(135deg, #ffb400, #ff7a00);
  -webkit-background-clip: text;
  background-clip: text;
}

.icon-design i {
  background: linear-gradient(135deg, #5f8dff, #7c5cff);
  -webkit-background-clip: text;
  background-clip: text;
}

.icon-install i {
  background: linear-gradient(135deg, #ff6b6b, #ff9f43);
  -webkit-background-clip: text;
  background-clip: text;
}

.icon-monitor i {
  background: linear-gradient(135deg, #1dd1a1, #10ac84);
  -webkit-background-clip: text;
  background-clip: text;
}

.icon-savings i {
  background: linear-gradient(135deg, #ff9f43, #ffb400);
  -webkit-background-clip: text;
  background-clip: text;
}

.icon-energy i {
  background: linear-gradient(135deg, #54a0ff, #00d2d3);
  -webkit-background-clip: text;
  background-clip: text;
}

.icon-eco i {
  background: linear-gradient(135deg, #1dd1a1, #55efc4);
  -webkit-background-clip: text;
  background-clip: text;
}

.icon-value i {
  background: linear-gradient(135deg, #ff6b6b, #f368e0);
  -webkit-background-clip: text;
  background-clip: text;
}

.icon-survey i {
  background: linear-gradient(135deg, #576574, #48dbfb);
  -webkit-background-clip: text;
  background-clip: text;
}

.icon-plan i {
  background: linear-gradient(135deg, #5f27cd, #54a0ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.icon-tools i {
  background: linear-gradient(135deg, #ff6b6b, #ee5253);
  -webkit-background-clip: text;
  background-clip: text;
}

.icon-switch i {
  background: linear-gradient(135deg, #00d2d3, #1dd1a1);
  -webkit-background-clip: text;
  background-clip: text;
}
/* Colorful Gradient Styles */

.bg-dark-1 {
  background: linear-gradient(135deg, #ff7e5f, #feb47b); /* orange */
}

.bg-dark-2 {
  background: linear-gradient(135deg, #36d1dc, #5b86e5); /* blue */
}

.bg-dark-3 {
  background: linear-gradient(135deg, #11998e, #38ef7d); /* green */
}

.bg-dark-4 {
  background: linear-gradient(135deg, #ee0979, #ff6a00); /* pink-orange */
}

/* Gradient Colors */
.bg-gradient-orange { background: linear-gradient(135deg, #ff7e5f, #feb47b); }
.bg-gradient-blue   { background: linear-gradient(135deg, #36d1dc, #5b86e5); }
.bg-gradient-green  { background: linear-gradient(135deg, #11998e, #38ef7d); }
.bg-gradient-pink   { background: linear-gradient(135deg, #ee0979, #ff6a00); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(10, 20, 40, 0.16);
}

.service-card:hover .icon-circle {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(124, 92, 255, 0.16));
}

.service-card:hover .icon-circle.fill {
  background: seagreen;
}

.project-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card .p-3 {
  padding: 24px !important;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(10, 20, 40, 0.16);
}

.project-thumb {
  background-size: cover;
  background-position: center;
}
/* 
.thumb-one {
  background-image: url("https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?q=80&w=1400&auto=format&fit=crop");
}

.thumb-two {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1400&auto=format&fit=crop");
}

.thumb-three {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1400&auto=format&fit=crop");
} */

.pricing-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  margin: 12px 0;
}

.pricing-card.featured {
  background: #ffffff;
  color: #0f1b2d;
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.pricing-card.featured .price {
  color: #0f1b2d;
}

.contact-card {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-shell {
  background: linear-gradient(120deg, #0f172a 0%, #132b50 55%, #0f1b2d 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(10, 20, 40, 0.18);
}

.contact-left {
  padding: 40px 34px;
  color: #fff;
  background: radial-gradient(circle at top left, rgba(255, 180, 0, 0.2), transparent 55%);
}

.contact-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.contact-items {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 180, 0, 0.18);
  color: #ffd78b;
}

.contact-badge {
  margin-top: 26px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.contact-right {
  padding: 40px 36px;
  background: #fff;
  position: relative;
}

.contact-right .form-label {
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-weight: 600;
}

.contact-right .form-control,
.contact-right .form-select {
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 27, 45, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.contact-right .form-control:focus,
.contact-right .form-select:focus {
  border-color: rgba(255, 122, 0, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 122, 0, 0.15);
}

.contact-dialog {
  border-radius: 20px;
  border: none;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10, 20, 40, 0.2);
}

.contact-dialog .modal-header,
.contact-dialog .modal-footer {
  border: none;
}

.contact-dialog .modal-header {
  background: linear-gradient(120deg, #f9efe1, #ffffff);
}

.contact-dialog .modal-footer {
  background: #fff;
}

.contact-dialog .form-control:focus {
  border-color: rgba(255, 122, 0, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(255, 122, 0, 0.15);
}

.contact-right .badge {
  border-radius: 999px;
}

.contact-right::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 120px;
  height: 120px;
  border-radius: 30px;
  background: radial-gradient(circle at top left, rgba(255, 122, 0, 0.18), transparent 65%);
  z-index: 0;
}

.contact-right form {
  position: relative;
  z-index: 1;
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(15, 27, 45, 0.06);
}

.footer {
  padding: 30px 0 40px;
  background: linear-gradient(120deg, #f6f7fb, #eef3f9, #fff2e3);
}

.footer-link {
  color: #4a5a72;
  margin-left: 18px;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.hero-bg-slide .reveal{
  max-width: 900px;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(15, 27, 45, 0.22);
  z-index: 999;
  animation: whatsapp-blink 1.6s ease-in-out infinite;
}

.whatsapp-float i {
  font-size: 1.8rem;
  line-height: 1;
  z-index: 1;
}

.whatsapp-pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: whatsapp-pulse 2.2s ease-out infinite;
  pointer-events: none;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-2px);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes whatsapp-blink {
  0%,
  100% {
    box-shadow: 0 16px 30px rgba(15, 27, 45, 0.22);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45);
    filter: brightness(1.1);
  }
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 110px;
  }
  .hero-card-footer {
    grid-template-columns: 1fr 1fr;
  }
  .img-two {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 20px;
  }
  .card-tilt {
    transform: none;
  }
}


.unique-card {
  position: relative;
  padding: 30px 20px;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  height: 100%;
  transition: all 0.35s ease;
  border: 1px solid #f1f1f1;
  min-height: 240px;

  /* Default soft shadow */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.unique-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.unique-card p {
  color: #777;
  font-size: 14px;
}

/* BIG NUMBER */
.big-number {
  position: absolute;
  bottom: -10px;
  right: 10px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(0,0,0,0.04);
  pointer-events: none;
}

/* 🔥 Hover Effect (Premium Lift + Shadow) */
.unique-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Accent Borders */
.card-1 { border-top: 8px solid #ff7e5f; }
.card-2 { border-top: 8px solid #36d1dc; }
.card-3 { border-top: 8px solid #38ef7d; }
.card-4 { border-top: 8px solid #ff6a00; }



.subsidy-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.subsidy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Highlight Amount */
.subsidy-highlight {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
}

.subsidy-highlight h2 {
  margin: 5px 0;
  font-size: 32px;
}

/* Mini Icons */
.mini-icon {
  font-size: 22px;
  width: 45px;
  height: 45px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

/* Subsidy Rows */
.subsidy-box {
  padding: 15px 20px;
  border-radius: 12px;
  background: #f9f9f9;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.subsidy-box:hover {
  background: #f1f1f1;
}

.subsidy-box.highlight {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
  color: #fff;
  font-weight: 600;
}


/* Card */
.step-card {
  position: relative;
  padding: 25px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Top strip */
.step-top {
  height: 4px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Big number */
.step-number {
  position: absolute;
  right: 15px;
  bottom: 10px;
  font-size: 65px;
  font-weight: 800;
  color: rgba(0,0,0,0.04);
}

/* ICON BOX */
.step-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.step-icon-box i {
  color: #fff;
  font-size: 20px;
}

/* Gradient icon colors */
.icon-1 { background: linear-gradient(135deg, #ff7e5f, #feb47b); }
.icon-2 { background: linear-gradient(135deg, #36d1dc, #5b86e5); }
.icon-3 { background: linear-gradient(135deg, #7f00ff, #e100ff); }
.icon-4 { background: linear-gradient(135deg, #11998e, #38ef7d); }
.icon-5 { background: linear-gradient(135deg, #f7971e, #ffd200); }
.icon-6 { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.icon-7 { background: linear-gradient(135deg, #fc466b, #3f5efb); }
.icon-8 { background: linear-gradient(135deg, #ff512f, #dd2476); }
.icon-9 { background: linear-gradient(135deg, #00b09b, #96c93d); }
.icon-10 { background: linear-gradient(135deg, #8e2de2, #4a00e0); }

/* Top colors */
.step-1 { background: #ff7e5f; }
.step-2 { background: #36d1dc; }
.step-3 { background: #7f00ff; }
.step-4 { background: #11998e; }
.step-5 { background: #f7971e; }
.step-6 { background: #00c6ff; }
.step-7 { background: #fc466b; }
.step-8 { background: #ff512f; }
.step-9 { background: #00b09b; }
.step-10 { background: #8e2de2; }

/* Text */
.step-card h5 {
  font-weight: 600;
}

.step-card p {
  font-size: 14px;
  color: #666;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 25px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  flex-wrap: wrap;
}

/* Item */
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Divider */
.divider {
  width: 1px;
  height: 50px;
  background: #eee;
}

/* Icon Box */
.contact-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-box i {
  color: #fff;
  font-size: 18px;
}

/* Colors */
.phone { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.email { background: linear-gradient(135deg, #ff7e5f, #feb47b); }
.location { background: linear-gradient(135deg, #11998e, #38ef7d); }

/* Text */
.contact-item h6 {
  margin: 0;
  font-weight: 600;
}

.contact-item p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-strip {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .divider {
    display: none;
  }
}


.topbar {
  color: #fff;
}

/* Social Icons */
.topbar-social {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* Brand Colors */
.youtube {
  background: #ff0000;
}

.facebook {
  background: #1877f2;
}

.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

/* Hover Effect */
.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .topbar .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}


.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Responsive iframe */
.video-card iframe {
  width: 100%;
  height: 220px;
  border: none;
}