body {
  font-family: 'Segoe UI', sans-serif;
}

/* TOP HEADER */
.top-header {
  background: #0b1c2d;
}

/* NAVBAR */
.main-navbar {
  background: linear-gradient(90deg, #1e3c72, #2a5298);
}

.navbar-brand span {
  color: #f4b400;
}

.nav-link {
  color: #fff !important;
  margin: 0 8px;
  transition: 0.3s;
}

.nav-link:hover {
  color: #f4b400 !important;
}

/* BUTTON */
.btn-gold {
  background: #f4b400;
  color: #000;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  transition: 0.4s;
}

.btn-gold:hover {
  background: #c49003;
  transform: translateY(-2px);
}

/* HERO */
.hero-section {
  background: linear-gradient(120deg, #0b1c2d, #1e3c72);
  padding: 100px 0;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-title span {
  color: #f4b400;
}

.hero-text {
  font-size: 18px;
  margin-top: 20px;
  color: #e0e0e0;
}

/* BADGE */
.premium-badge {
  background: #f4b400;
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
}

/* IMAGE */
.hero-img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: 0.5s;
}

.hero-img:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width:768px) {
  .hero-title {
    font-size: 34px;
  }
}


/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.about-badge {
  color: #f4b400;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-title {
  font-size: 42px;
  font-weight: 800;
  margin: 15px 0;
  color: #0b1c2d;
}

.about-title span {
  color: #1e3c72;
}

.about-text {
  color: #555;
  font-size: 17px;
  margin-bottom: 25px;
}

/* ===== PREMIUM IMAGE ALIGNMENT ===== */
.about-image-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
}

/* COMMON IMAGE */
.about-img {
  position: absolute;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  transition: 0.5s ease;
}

/* MAIN IMAGE */
.main-img {
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* TOP IMAGE */
.img-top {
  width: 190px;
  height: 150px;
  top: -35px;
  left: -35px;
  z-index: 2;
}

/* BOTTOM IMAGE */
.img-bottom {
  width: 190px;
  height: 150px;
  bottom: -35px;
  right: -35px;
  z-index: 2;
}

/* HOVER PREMIUM EFFECT */
.about-image-wrapper:hover .about-img {
  transform: scale(1.03);
}

/* CENTER POSITIONING (NO ROTATION HERE) */
.premium-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  z-index: 3;
}

/* ROTATION LAYER */
.circle-rotate {
  width: 100%;
  height: 100%;
  animation: spin 12s linear infinite;
}

.circle-rotate svg {
  width: 100%;
  height: 100%;
}

.circle-rotate text {
  fill: #fff;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ICON CENTER */
.circle-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  background: #f4b400;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ROTATION KEYFRAMES */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-image-wrapper {
    width: 300px;
    height: 300px;
  }

  .img-top,
  .img-bottom {
    width: 130px;
    height: 100px;
  }

  .premium-circle {
    width: 120px;
    height: 120px;
  }
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: #ffffff;
  padding: 50px 0;
  border-top: 1px solid #eee;
}

.stat-item {
  position: relative;
  padding: 30px 25px;
}

/* CENTER BORDER */
.stat-border {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

/* ROTATING ICON */
.stat-top-icon {
  width: 12px;
  height: 12px;
  background: #f4b400;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  animation: rotateDiamond 4s linear infinite;
}

/* NUMBER */
.stat-number {
  font-size: 46px;
  font-weight: 800;
  color: #0b1c2d;
  margin-bottom: 5px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

/* TITLE */
.stat-title {
  font-weight: 600;
  color: #f4b400;
  margin-bottom: 10px;
}

/* TEXT */
.stat-text {
  font-size: 15px;
  color: #c9c8c8;
  line-height: 1.6;
}

/* ACTIVE STATE (WHEN IN VIEWPORT) */
.stats-section.active .stat-number {
  opacity: 1;
  transform: translateY(0);
}

/* ROTATION */
@keyframes rotateDiamond {
  from {
    transform: translateX(-50%) rotate(45deg);
  }

  to {
    transform: translateX(-50%) rotate(405deg);
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .stat-border {
    border: none;
  }

  .stat-item {
    padding: 25px 15px;
  }

  .stat-number {
    font-size: 38px;
  }
}


/* ================= SERVICES SECTION ================= */
/* ===== SERVICES HOVER SECTION ===== */
.services-hover-section {
  background: #eafaf1;
  padding: 100px 0;
}

.service-card-hover {
  background: #ffffff;
  border-radius: 22px;
  padding: 35px 30px;
  height: 100%;
  position: relative;
  transition: all 0.5s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* ICON */
.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #1e3c72;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.4s;
}

/* TEXT */
.service-card-hover h4 {
  font-weight: 700;
  color: #0b1c2d;
  margin-bottom: 12px;
}

.service-card-hover p {
  color: #555;
  font-size: 15px;
}

.service-card-hover ul {
  padding-left: 0;
  margin-top: 15px;
}

.service-card-hover ul li {
  list-style: none;
  margin-bottom: 8px;
  font-size: 14px;
  color: #1e3c72;
}

.service-card-hover ul li::before {
  content: "›";
  color: #4caf50;
  margin-right: 8px;
  font-weight: bold;
}

/* BUTTON */
.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid #ddd;
  font-weight: 600;
  color: #0b1c2d;
  width: 160px;
  transition: 0.4s;
}

.service-btn span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1e3c72;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== HOVER = DARK PREMIUM CARD ===== */
.service-card-hover:hover {
  background: linear-gradient(135deg, #0b1c2d, #1e3c72);
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.service-card-hover:hover h4,
.service-card-hover:hover p,
.service-card-hover:hover ul li {
  color: #ffffff;
}

.service-card-hover:hover ul li::before {
  color: #7CFC00;
}

.service-card-hover:hover .icon-box {
  background: #ffffff;
  color: #1e3c72;
}

.service-card-hover:hover .service-btn {
  border-color: #7CFC00;
  color: #7CFC00;
}

.service-card-hover:hover .service-btn span {
  background: #7CFC00;
  color: #0b1c2d;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .services-hover-section {
    padding: 70px 0;
  }
}

.section-badge {
  font-size: 13px;
  font-weight: 600;
  color: #f4b400;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
}

.badge-dot {
  width: 10px;
  height: 10px;
  background: #f4b400;
  transform: rotate(45deg);
  margin-right: 8px;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  color: #0b1c2d;
  line-height: 1.2;
}

.core-beliefs-section {
  padding: 100px 0 0;
  background: #ffffff;
  position: relative;
}

/* IMAGE */
.belief-image {
  overflow: hidden;
  border-radius: 22px;
}

.belief-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 18s infinite alternate ease-in-out;
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* TEXT */
.section-tag {
  color: #f4b400;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: #0b1c2d;
  margin: 15px 0 30px;
}

/* BELIEF LIST */
.belief-list {
  position: relative;
  padding-left: 25px;
}

.belief-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  animation: floatUp 6s infinite alternate ease-in-out;
}

@keyframes floatUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-8px);
  }
}

.belief-item h5 {
  margin-bottom: 5px;
  font-weight: 700;
}

.belief-item p {
  font-size: 14px;
  color: #555;
}

.dot {
  width: 10px;
  height: 10px;
  background: #f4b400;
  border-radius: 50%;
  margin-top: 6px;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 180, 0, 0.6);
  }

  100% {
    box-shadow: 0 0 0 10px rgba(244, 180, 0, 0);
  }
}

/* STATS FLOATING CARDS */
.belief-stats {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 15px 18px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: floatCard 5s infinite ease-in-out;
}

.stat-card:nth-child(2) {
  animation-delay: 1s;
}

.stat-card:nth-child(3) {
  animation-delay: 2s;
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

/* VALUE STRIP */
.value-strip {
  background: #0b1c2d;
  color: #fff;
  padding: 60px 0;
  margin-top: 80px;
}

.value-strip h4 {
  margin-bottom: 15px;
}

.value-strip ul {
  padding-left: 0;
}

.value-strip li {
  list-style: none;
  margin-bottom: 8px;
}

.value-strip li::before {
  content: "✔";
  color: #7CFC00;
  margin-right: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .belief-stats {
    justify-content: center;
  }
}

.value-strip {
  background: #0b1c2d;
  color: #fff;
  padding: 60px 0;
  overflow: hidden;
}

.value-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.value-strip {
  background: #0b1c2d;
  color: #fff;
  padding: 60px 0;
  overflow: hidden;
}

.value-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: center;
  gap: 30px;
}

/* CONTENT */
.value-content {
  text-align: center;
}

.value-content h4 {
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: 700;
}

.value-content ul {
  padding-left: 0;
  margin: 0;
}

.value-content li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 15px;
}

.value-content li::before {
  content: "✔";
  color: #7CFC00;
  margin-right: 10px;
}

/* IMAGES */
.value-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  animation: floatImage 6s infinite ease-in-out;
  border-radius: 15px;
}

/* SUBTLE FLOAT */
@keyframes floatImage {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .value-strip-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Hide one image on mobile */
  .left-img {
    display: none;
  }

  .value-image {
    height: 150px;
    margin-top: 20px;
  }
}

.why-choose-section {
  padding: 100px 0;
  background: #fefefe;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header span {
  color: #f4b400;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0b1c2d;
  margin-top: 10px;
}

/* ROW */
.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  margin-bottom: 90px;
}

/* IMAGE */
.why-image {
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: imageFloat 12s infinite alternate ease-in-out;
}

/* CONTENT */
.why-content {
  padding: 40px;
  background: linear-gradient(145deg, #0b1c2d, #122d4f);
  border-radius: 22px;
  color: #fff;
  animation: contentFloat 10s infinite alternate ease-in-out;
}

.why-content h4 {
  color: #f4b400;
  margin-bottom: 12px;
  font-size: 22px;
}

.why-content p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.95;
}

/* REVERSE */
.why-row.reverse {
  grid-template-columns: 1fr 1fr;
}

/* INFINITE ANIMATION */
@keyframes imageFloat {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-14px) scale(1.04);
  }
}

@keyframes contentFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(10px);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .why-row,
  .why-row.reverse {
    grid-template-columns: 1fr;
  }

  .why-content {
    padding: 30px;
    text-align: center;
  }

  .why-image {
    height: 220px;
  }

  .section-header h2 {
    font-size: 30px;
  }
}

.faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #96a5e7, #f6fffb);
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.faq-left {
  animation: floatUpDown 6s infinite ease-in-out;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.faq-tag {
  color: #0b1c2d;
  font-weight: 600;
  letter-spacing: 1px;
}

.faq-tag {
  color: #0b1c2d;
}

.faq-left h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 20px 0 30px;
  color: #000;
}

.faq-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #0b1c2d;
  color: #ffd91f;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
}

.faq-btn:hover {
  background: #ffd91f;
  color: #0b1c2d;
}

/* RIGHT */
.faq-item {
  margin-bottom: 18px;
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {

  color: #fff;
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question.yellow {
  /* background: #2f3f63; */
  background: #ffd91f;
  /* color: #000; */
  color: #000;
}

.faq-answer {
  background: #f4f7fb;
  padding: 18px 22px;
  display: none;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-left h2 {
    font-size: 30px;
  }

  .faq-question {
    text-align: left;
  }
}

/* ===== FOOTER BASE ===== */
.solar-footer {
  background: linear-gradient(rgba(3, 18, 30, 0.9), rgba(3, 18, 30, 0.9)),
    url('./assets/footer-bg.jpg') center/cover no-repeat;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* ===== CTA ===== */
.footer-link {
  color: #f4b400;
}

.footer-cta {
  text-align: center;
  padding: 90px 20px;
}

.footer-cta .cta-call {
  color: #ffd200;
  font-weight: 500;
}

.footer-cta h2 {
  font-size: 42px;
  margin: 20px 0;
  animation: floatText 6s infinite ease-in-out;
}

.cta-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #ffd200;
  color: #000;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #fff;
}

/* ===== FOOTER CONTENT ===== */
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 70px 0;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer-col h4 {
  color: #ffd400;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #ffd200;
}

/* ===== CONTACT ===== */
.contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-list i {
  color: #ffd200;
}

/* ===== SOCIAL ===== */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: #ffd200;
  margin-right: 12px;
  font-size: 20px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

/* ===== ANIMATIONS ===== */
@keyframes floatText {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cta h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-list li {
    justify-content: center;
  }
}

/* ABOUT HERO */
.about-hero {
  background: linear-gradient(135deg, #0a2342, #123c6d);
}

/* ABOUT CARDS */
.about-card {
  background: #ffffff;
  padding: 30px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.about-card i {
  font-size: 40px;
  color: #fcec11;
  margin-bottom: 15px;
}

.about-card:hover {
  transform: translateY(-10px);
}

/* MISSION VISION */
.mission-vision {
  background: #0a2342;
  color: #fff;
}

.mv-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 18px;
}

/* STATS */
.stats-section {
  background: linear-gradient(135deg, #123c6d, #0a2342);
  color: #fff;
}

.stats-section h2 {
  color: #fcec11;
  font-size: 42px;
  font-weight: 700;
}

/* PRODUCT HERO */
.product-hero {
  background: linear-gradient(135deg, #0a2342, #123c6d);
}

/* PRODUCT CARD (Mirror Effect) */
.product-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.product-body {
  padding: 20px;
  text-align: center;
}

.product-body h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

/* Hover Effect */
.product-card:hover {
  transform: translateY(-12px) scale(1.02);
}

/* GOLD BUTTON */
.btn-gold {
  background: #fcec11;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 20px;
}

.btn-gold:hover {
  background: #e6d900;
}


/* CONTACT HERO */
.contact-hero {
  background: linear-gradient(135deg, #0a2342, #123c6d);
}

/* CONTACT INFO */
.contact-info-box {
  background: linear-gradient(135deg, #123c6d, #0a2342);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
}

.contact-info-box ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.contact-info-box ul li {
  margin-bottom: 15px;
  font-size: 15px;
}

.contact-info-box i {
  color: #fcec11;
  margin-right: 10px;
}

/* FORM BOX */
.contact-form-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

/* INPUTS */
.contact-form-box .form-control {
  border-radius: 12px;
  padding: 12px 15px;
  border: 1px solid #ddd;
}

.contact-form-box .form-control:focus {
  border-color: #fcec11;
  box-shadow: 0 0 0 0.15rem rgba(252, 236, 17, 0.35);
}

/* BUTTON */
.btn-gold {
  background: #fcec11;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px;
}

.btn-gold:hover {
  background: #e6d900;
}

/* MAP */
.map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(20%) contrast(1.1);
}

/* SUCCESS TOAST */
.success-toast {
  position: fixed;
  top: 30px;
  right: -400px;
  background: #0a2342;
  color: #fff;
  padding: 18px 25px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  transition: 0.5s ease;
}

.success-toast i {
  color: #fcec11;
  font-size: 22px;
}

.success-toast.show {
  right: 30px;
}

/* SERVICES HERO */
.services-hero {
  background: linear-gradient(135deg, #0a2342, #123c6d);
}

/* SERVICE CARD */
.service-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  text-align: center;
  height: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.service-card i {
  font-size: 42px;
  color: #fcec11;
  margin-bottom: 18px;
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  color: #555;
  font-size: 15px;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* WHY SERVICES */
.why-services {
  background: linear-gradient(135deg, #0a2342, #123c6d);
}

.why-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 15px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
}

.why-box i {
  font-size: 34px;
  color: #fcec11;
  margin-bottom: 10px;
}

/* PROCESS */
.process-box {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.process-box span {
  display: inline-block;
  background: #fcec11;
  color: #000;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* CTA */
.service-cta {
  background: linear-gradient(rgba(10, 35, 66, 0.9), rgba(10, 35, 66, 0.9)),
    url('./assets/solar-bg.jpg') center/cover;
  padding: 80px 0;
  color: #fff;
}