/* ============================
   WHITESHARK ENERGY — PREMIUM CSS
   White BG, Gold/Amber Accent
   Playfair Display + DM Sans
============================ */

/* ======= CSS VARIABLES ======= */
:root {
  --gold: #f59e0b;
  --gold-deep: #d97706;
  --orange: #ea580c;
  --white: #ffffff;
  --off-white: #fafaf8;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --ink: #0d1117;
  --green: #059669;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "Space Mono", monospace;

  --header-h: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* ======= RESET & BASE ======= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ======= HEADER ======= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  height: 68px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
/* .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
} */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-primary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.logo-sub {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--gold-deep);
  letter-spacing: 0.18em;
  margin-top: 2px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 28px);
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: transform var(--transition);
}

.nav-link:hover {
  color: var(--ink);
}
.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  background: var(--gold);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all var(--transition);
  margin-left: 8px;
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO PREMIUM ===== */
/* ===== HERO PREMIUM FIXED ===== */
/* ===== RESET (IMPORTANT FIX) ===== */
body {
  margin: 0;
  padding: 0;
}

/* ===== HERO ===== */
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* Slide full width */
.slide {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Background */
.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

/* Content Center */
/* .slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 700px;
  margin: auto;

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

  text-align: center;
  padding: 0 20px;
} */
.slide-content {
  position: relative;
  z-index: 2;
  height: 114%;
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
/* Tag */
.slide-tag {
  font-size: 11px;
  letter-spacing: 2px;
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 18px;
  background: rgba(245, 158, 11, 0.08);
}

/* Title */
.slide-title {
  font-size: clamp(2.2rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 13px;
}

.slide-title em {
  display: block;
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(90deg, #f59e0b, #ffcc33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.slide-desc {
  max-width: 580px;
  margin: 7px auto 44px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* Buttons */
.slide-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #ffb703);
  color: #fff;
  padding: 11px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 11px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Stats */
.slide-stats {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 12px 22px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Animation */
.slide-content > * {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.8s ease forwards;
}

.slide-content > *:nth-child(1) {
  animation-delay: 0.2s;
}
.slide-content > *:nth-child(2) {
  animation-delay: 0.4s;
}
.slide-content > *:nth-child(3) {
  animation-delay: 0.6s;
}
.slide-content > *:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ======= TICKER ======= */
.ticker-wrap {
  background: var(--ink);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}

.ticker-track span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  padding: 0 28px;
}

.ticker-dot {
  color: var(--gold) !important;
  padding: 0 4px !important;
  font-size: 0.6rem !important;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ======= BUTTONS ======= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245, 158, 11, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  transition: all var(--transition);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.btn-white {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== PREMIUM ABOUT SECTION ===== */

.about {
  background: #f9fafb;
  padding: 100px 0;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE */
.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.6s;
}

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

/* IMAGE OVERLAY GRADIENT */
.about-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
}

/* BADGE */
.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #f59e0b, #ffb703);
  color: #fff;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
}

.badge-num {
  font-size: 1.8rem;
  font-weight: 700;
}

.badge-label {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* CERTIFICATIONS */
.about-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.cert-pill {
  font-size: 0.75rem;
  padding: 8px 16px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #eee;
  transition: 0.3s;
}

.cert-pill:hover {
  background: #f59e0b;
  color: #fff;
  border-color: #f59e0b;
}

/* CONTENT */
.section-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #f59e0b;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title em {
  color: #f59e0b;
  font-style: normal;
}

/* TEXT */
.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #111;
}

.about-body {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* PILLARS (BIG IMPROVEMENT) */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 30px 0;
}

.pillar {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eee;
  transition: 0.3s;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ICON BOX */
.pillar-icon {
  width: 45px;
  height: 45px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* TEXT */
.pillar strong {
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}

.pillar p {
  font-size: 0.82rem;
  color: #666;
  margin: 0;
}

/* BUTTON */
.about .btn-primary {
  margin-top: 10px;
  background: linear-gradient(135deg, #f59e0b, #ffb703);
  padding: 12px 28px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
  transition: 0.3s;
}

.about .btn-primary:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-img {
    height: 350px;
  }
}

/* ===== PREMIUM STATS BAR ===== */

.stats-bar {
  background: linear-gradient(135deg, #0f172a, #111827);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* subtle glow effect */
.stats-bar::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(245, 158, 11, 0.08);
  filter: blur(120px);
  top: -100px;
  left: -100px;
}

/* GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD STYLE */
.stats-item {
  background: rgba(255, 255, 255, 0.04);
  padding: 32px 20px;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}

.stats-item:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* NUMBER */
.stats-number {
  font-size: 2.6rem;
  font-weight: 700;
  color: #f59e0b;
  line-height: 1;
}

/* SUFFIX */
.stats-suffix {
  font-size: 2rem;
  color: #f59e0b;
  margin-left: 2px;
}

/* LABEL */
.stats-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 10px;
  letter-spacing: 0.04em;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
/* ICON STYLE */
.stats-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #f59e0b;
  transition: 0.3s;
}

/* Hover effect */
.stats-item:hover .stats-icon {
  background: #f59e0b;
  color: #fff;
  transform: scale(1.1);
}
/* ======= SERVICES ======= */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.featured-card {
  background: linear-gradient(135deg, var(--ink) 0%, #1e293b 100%);
  border-color: transparent;
  color: white;
}

.featured-card h3,
.featured-card p {
  color: rgba(255, 255, 255, 0.9);
}
.featured-card .service-list li {
  color: rgba(255, 255, 255, 0.7);
}
.featured-card::before {
  display: none;
}
.featured-card .service-link {
  color: var(--gold);
}

.featured-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.12),
    rgba(234, 88, 12, 0.08)
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-deep);
  transition: all var(--transition);
}

.featured-card .service-icon {
  background: rgba(245, 158, 11, 0.2);
  color: var(--gold);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: white;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding-left: 18px;
  position: relative;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-deep);
  transition: all var(--transition);
}

.service-link:hover {
  letter-spacing: 0.03em;
}
.poupPlan {
  color: #fff !important;
}
/* ======= WHY SOLAR ======= */
.why-solar {
  background: var(--gray-50);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0;
}

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  background: rgba(245, 158, 11, 0.1);
  padding: 6px 10px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-point strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.why-point p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

.innovation-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.innov-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.innov-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.12);
}

.innov-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.innov-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.innov-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

/* ======= PROCESS ======= */
.process {
  background: var(--white);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}

.step-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.process-connector {
  flex: 0 0 2px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  align-self: center;
  margin-top: -60px;
  min-width: 32px;
  border-radius: 1px;
}

/* ======= TESTIMONIALS ======= */
.testimonials {
  background: var(--off-white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.featured-testimonial {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  border-color: transparent;
  color: white;
}

.featured-testimonial blockquote,
.featured-testimonial .testimonial-author strong,
.featured-testimonial .testimonial-author span {
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.featured-testimonial .testimonial-stars {
  color: rgba(255, 255, 255, 0.9);
}

blockquote {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
}

blockquote::before {
  content: '"';
  position: absolute;
  top: -12px;
  left: -8px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.featured-testimonial .author-avatar {
  background: rgba(255, 255, 255, 0.2);
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ======= CTA SECTION ======= */
/* ===== PREMIUM CTA SECTION ===== */

/* .cta-section {
  position: relative;
  padding: 140px 0; 
  overflow: hidden;
} */
.cta-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
/* BG */
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* VIDEO OR IMAGE */
.cta-bg video,
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05); /* slight zoom = premium */
}

/* OVERLAY (IMPROVED DEPTH) */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 17, 23, 0.85) 0%,
    rgba(30, 60, 80, 0.75) 60%,
    rgba(0, 0, 0, 0.85) 100%
  );
  backdrop-filter: blur(2px);
}

/* CONTENT */
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TITLE */
.cta-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

/* TEXT */
.cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* BUTTONS */
.cta-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

/* PRIMARY BUTTON */
.cta-section .btn-primary {
  background: linear-gradient(135deg, #f59e0b, #ffb703);
  box-shadow: 0 10px 35px rgba(245, 158, 11, 0.4);
  transition: 0.3s;
}

.cta-section .btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
}

/* OUTLINE BUTTON */
.cta-section .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
}

.cta-section .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* TRUST ROW */
.cta-trust {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* TRUST ITEMS */
.cta-trust span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 18px;
}

/* ICON CHECK */
.cta-trust span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: bold;
}

/* SUBTLE ANIMATION */
.cta-content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.cta-content > *:nth-child(1) {
  animation-delay: 0.2s;
}
.cta-content > *:nth-child(2) {
  animation-delay: 0.4s;
}
.cta-content > *:nth-child(3) {
  animation-delay: 0.6s;
}
.cta-content > *:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-section {
    padding: 100px 0;
  }

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

  .cta-actions {
    gap: 12px;
  }
}
/* ======= CONTACT ======= */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.12),
    rgba(234, 88, 12, 0.08)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-item p,
.contact-item a {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.contact-form-wrap {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.93rem;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

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

/* ===== FINAL PREMIUM FOOTER ===== */

.footer {
  position: relative;
  background: #020617;
  color: rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

/* ===== SOLAR BACKGROUND (IMPROVED VISIBILITY) ===== */
.footer-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.95)),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=1600")
      center/cover no-repeat;
  opacity: 0.75; /* increased visibility */
  filter: contrast(1.1) brightness(0.9);
}

/* CONTENT ABOVE */
.footer-top,
.footer-bottom {
  position: relative;
  z-index: 2;
}

/* ===== TOP ===== */
.footer-top {
  padding: 100px 0 60px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 60px;
}

/* ===== BRAND ===== */
.footer-brand img {
  height: 55px;
}

.footer-brand p {
  margin-top: 18px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
}

/* ===== SOCIAL ===== */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.footer-social a:hover {
  background: #f59e0b;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

/* ===== HEADINGS ===== */
.footer-col h5 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
}

.footer-col h5::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #f59e0b;
  display: block;
  margin-top: 6px;
}

/* ===== LINKS ===== */
.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== SMOOTH HOVER (FIXED) ===== */
.footer-col a {
  position: relative;
  padding-left: 20px; /* fixed spacing */
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

/* ICON ALWAYS STABLE */
.footer-col a::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #f59e0b;
  opacity: 0.5;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* HOVER */
.footer-col a:hover {
  color: #f59e0b;
  transform: translateX(5px);
}

.footer-col a:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(4px);
}

/* CONTACT FIX */
.footer-col a[href^="tel"],
.footer-col a[href^="mailto"] {
  padding-left: 0;
}

.footer-col a[href^="tel"]::before,
.footer-col a[href^="mailto"]::before {
  display: none;
}

/* ===== BOTTOM ===== */
.footer-bottom {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== EXTRA GLOW ===== */
.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 400px;
  height: 200px;
  background: rgba(245, 158, 11, 0.08);
  filter: blur(100px);
  transform: translateX(-50%);
  z-index: 0;
}
/* CONTACT ITEMS */
.contact-item {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ICON */
.contact-item i {
  color: #f59e0b;
  font-size: 14px;
  margin-top: 3px;
  min-width: 16px;
}

/* REMOVE ARROW FROM THESE */
.contact-item::before {
  display: none !important;
}

/* HOVER */
.footer-col a.contact-item:hover {
  color: #f59e0b;
  transform: translateX(4px);
}
/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
/* ======= REVEAL ANIMATIONS ======= */
[data-reveal] {
  opacity: 0;
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal="up"] {
  transform: translateY(40px);
}
[data-reveal="left"] {
  transform: translateX(-40px);
}
[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

[data-delay="100"] {
  transition-delay: 0.1s;
}
[data-delay="200"] {
  transition-delay: 0.2s;
}
[data-delay="150"] {
  transition-delay: 0.15s;
}
[data-delay="300"] {
  transition-delay: 0.3s;
}
[data-delay="450"] {
  transition-delay: 0.45s;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img {
    height: 360px;
  }
  .about-badge {
    bottom: -16px;
    right: 16px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stats-item:nth-child(2) {
    border-right: none;
  }
  .stats-item:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stats-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 40px;
  }
  .process-connector {
    display: none;
  }
  .process-step {
    flex: 0 0 calc(50% - 20px);
  }

  .slide-content-right {
    padding-left: 10%;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 68px;
  }

  .nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--gray-200);
  }
  .nav.open {
    display: flex;
  }
  .nav-link {
    padding: 12px 16px;
    border-radius: 10px;
  }
  .nav-cta {
    margin: 8px 0 0;
    text-align: center;
    border-radius: 10px;
  }

  .hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .innovation-cards {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .slide-content {
    padding: 0 6%;
    padding-top: var(--header-h);
  }
  .slide-content-right {
    padding-left: 6%;
  }
  .slide-stats {
    display: none;
  }

  .slider-btn {
    display: none;
  }
  .slider-dots {
    bottom: 60px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-trust {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
  }
  .stats-item:last-child {
    border-bottom: none;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .process-step {
    flex: 0 0 100%;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 64px 0;
  }
  .about-certifications {
    gap: 6px;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }
}
/*project start*/
/* ===== PROJECTS ===== */

.projects {
  background: #f9fafb;
  padding: 100px 0;
}

/* SLIDER */
.projects-slider {
  overflow: hidden;
  margin-top: 50px;
}

.projects-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollProjects 30s linear infinite;
}

/* STOP ON HOVER */
.projects-slider:hover .projects-track {
  animation-play-state: paused;
}

/* CARD */
.project-card {
  min-width: 320px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

/* IMAGE */
.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.project-content {
  padding: 18px;
}

.project-content h4 {
  font-size: 1rem;
  font-weight: 600;
}

.project-content p {
  font-size: 0.85rem;
  color: #666;
}

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

/* ANIMATION */
@keyframes scrollProjects {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .project-card {
    min-width: 260px;
  }
}
/*project end*/

/*our partnesrs section start*/
/* ===== PARTNERS ===== */

/* ===== PREMIUM PARTNERS SECTION ===== */

.partners {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

/* HEADER FIX */
.partners .section-header {
  margin-bottom: 50px;
}

/* SLIDER */
.partners-slider {
  overflow: hidden;
  position: relative;
}

/* TRACK */
.partners-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: scrollPartners 35s linear infinite;
}

/* PAUSE ON HOVER */
.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

/* ===== LOGO CARD (PREMIUM GLASS) ===== */
.partner-logo {
  min-width: 160px;
  height: 90px;

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

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);

  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);

  transition: all 0.35s ease;

  opacity: 0.7;
}

/* LOGO IMAGE */
.partner-logo img {
  max-width: 110px;
  max-height: 40px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.35s ease;
}

/* HOVER EFFECT */
.partner-logo:hover {
  transform: translateY(-8px) scale(1.05);
  opacity: 1;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
}

/* LOGO COLOR ON HOVER */
.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===== SMOOTH INFINITE SCROLL ===== */
@keyframes scrollPartners {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== FADE EDGES (VERY PREMIUM) ===== */
.partners-slider::before,
.partners-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.partners-slider::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc, transparent);
}

.partners-slider::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc, transparent);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .partner-logo {
    min-width: 120px;
    height: 70px;
  }

  .partner-logo img {
    max-width: 80px;
  }
}
.partner-logo {
  min-width: 160px;
  height: 90px;

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

  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);

  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);

  transition: all 0.35s ease;

  opacity: 0.85; /* FIX: not too faded */
}

/* LOGO */
.partner-logo img {
  max-width: 110px;
  max-height: 40px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.35s ease;
}

/* ===== PREMIUM HOVER (FIXED) ===== */
.partner-logo:hover {
  transform: translateY(-6px) scale(1.04);

  border-color: rgba(245, 158, 11, 0.25); /* softer */

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(245, 158, 11, 0.15); /* subtle glow */

  opacity: 1;
}

/* LOGO COLOR */
.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
/*our partners section end*/
/* ===== CLIENTS SECTION ===== */

.clients {
  padding: 100px 0;
  background: #ffffff;
}

/* SLIDER */
.clients-slider {
  overflow: hidden;
  margin-top: 50px;
  position: relative;
}

/* TRACK */
.clients-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: scrollClients 40s linear infinite;
}

/* PAUSE ON HOVER */
.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

/* CLIENT CARD */
.client-logo {
  min-width: 160px;
  height: 90px;

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

  background: #fff;
  border-radius: 12px;

  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);

  transition: all 0.3s ease;

  opacity: 0.85;
}

/* IMAGE */
.client-logo img {
  max-width: 110px;
  max-height: 40px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}

/* HOVER */
.client-logo:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
  opacity: 1;
}

/* COLOR ON HOVER */
.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* SCROLL */
@keyframes scrollClients {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* FADE EDGES */
.clients-slider::before,
.clients-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}

.clients-slider::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.clients-slider::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .client-logo {
    min-width: 120px;
    height: 70px;
  }

  .client-logo img {
    max-width: 80px;
  }
}
