/* ============================================================
   BRASS SOLAR ENERGY - Main Stylesheet
   Color Palette:
   --sun-gold:     #F5A623  (primary accent)
   --deep-navy:    #0A1628  (primary dark)
   --energy-amber: #E8821A  (secondary accent)
   --sky-blue:     #1E3A5F  (section dark)
   --light-cream:  #FFF8F0  (light bg)
   --mid-gray:     #5A6B7C  (body text)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --sun-gold:     #F5A623;
  --deep-navy:    #0A1628;
  --energy-amber: #E8821A;
  --sky-blue:     #1E3A5F;
  --light-cream:  #FFF8F0;
  --white:        #FFFFFF;
  --mid-gray:     #5A6B7C;
  --light-gray:   #F2F6FA;
  --border:       #D9E2EC;
  --shadow-sm:    0 2px 8px rgba(10,22,40,0.08);
  --shadow-md:    0 8px 32px rgba(10,22,40,0.14);
  --shadow-lg:    0 20px 60px rgba(10,22,40,0.18);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    24px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--deep-navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { font-size: 1rem; color: var(--mid-gray); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--energy-amber);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub   { max-width: 560px; margin-bottom: 2.5rem; }

/* ── LAYOUT UTILITIES ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 5rem 0; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-primary {
  background: var(--sun-gold);
  color: var(--deep-navy);
}
.btn-primary:hover {
  background: var(--energy-amber);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.4);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--deep-navy);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--deep-navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--sky-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── HEADER / NAV ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(
  135deg,
  #001f3f 0%,
  #003566 50%,
  #00509d 100%
);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245,166,35,0.15);
  transition: var(--transition);
}
.site-header.scrolled {
background: linear-gradient(
  135deg,
  #001f3f 0%,
  #003566 50%,
  #00509d 100%
);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
/* Logo image — replaces old svg mark + text blocks */
.logo img { height: 54px; width: auto; object-fit: contain; display: block; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 15px
  
  ;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--sun-gold);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { left: 1rem; right: 1rem; }

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--deep-navy);
  border-top: 1px solid rgba(245,166,35,0.15);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--sun-gold); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep-navy);
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A1628 0%, #1E3A5F 50%, #0A1628 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(245,166,35,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(30,58,95,0.8) 0%, transparent 60%);
}
/* Sun ray decorative lines */
.hero-rays {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 80%;
  opacity: 0.06;
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text .pre-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun-gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-text .pre-title::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--sun-gold);
  border-radius: 2px;
}
.hero-text h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero-text h1 span { color: var(--sun-gold); }
.hero-text p  { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--sun-gold);
  line-height: 1;
}
.stat-item .lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}

/* Hero visual side */
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img {
  width: 100%; height: 480px;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-badge-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--sun-gold), var(--energy-amber));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-icon svg { width: 24px; height: 24px; color: white; }
.hero-badge-text .val { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--deep-navy); }
.hero-badge-text .key { font-size: 0.72rem; color: var(--mid-gray); }

/* ── SLIDER ── */
.hero-slider { position: relative; overflow: hidden; }
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.slide { min-width: 100%; position: relative; }
.slider-dots {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot.active { background: var(--sun-gold); width: 24px; }
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(10,22,40,0.6);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 50%;
  color: white;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: var(--transition);
}
.slider-btn:hover { background: var(--sun-gold); color: var(--deep-navy); }
.slider-btn.prev { left: 1rem; }
.slider-btn.next { right: 1rem; }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--sun-gold);
  padding: 1.25rem 0;
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--deep-navy);
}
.strip-item svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── CARDS & GRIDS ── */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.cards-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.cards-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245,166,35,0.3);
}
.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(232,130,26,0.08));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.card:hover .card-icon {
  background: linear-gradient(135deg, var(--sun-gold), var(--energy-amber));
}
.card-icon svg { width: 28px; height: 28px; color: var(--sun-gold); transition: var(--transition); }
.card:hover .card-icon svg { color: var(--white); }
.card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.card p  { font-size: 0.92rem; }

/* Service card variant */
.service-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card-img { position: relative; height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-img .img-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--sun-gold);
  color: var(--deep-navy);
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
}
.service-card-body { padding: 1.5rem; }
.service-card-body h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.service-card-body p  { font-size: 0.9rem; margin-bottom: 1.25rem; }
.service-card-link {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--energy-amber);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: var(--transition);
}
.service-card-link:hover { gap: 0.75rem; }

/* ── WHY CHOOSE US (dark section) ── */
.section-dark {
  background: var(--deep-navy);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p  { color: rgba(255,255,255,0.65); }
.section-dark .section-label { color: var(--sun-gold); }

.dark-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}
.dark-card:hover {
  background: rgba(245,166,35,0.08);
  border-color: rgba(245,166,35,0.25);
  transform: translateY(-4px);
}
.dark-card .card-icon {
  background: rgba(245,166,35,0.12);
}
.dark-card:hover .card-icon { background: linear-gradient(135deg, var(--sun-gold), var(--energy-amber)); }

/* ── PROCESS STEPS ── */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem; left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem);
  height: 2px;
  background: linear-gradient(90deg, var(--sun-gold), var(--energy-amber));
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--sun-gold), var(--energy-amber));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 800;
  color: var(--deep-navy);
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
}
.step h4 { margin-bottom: 0.5rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--sky-blue) 0%, var(--deep-navy) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(245,166,35,0.15) 0%, transparent 65%);
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-inner p  { color: rgba(255,255,255,0.7); max-width: 500px; }

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--sun-gold);
  opacity: 0.2;
  position: absolute;
  top: -0.5rem; left: 1rem;
  line-height: 1;
}
.stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.star  { color: var(--sun-gold); font-size: 1rem; }
.testimonial-author {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sun-gold), var(--energy-amber));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
  color: var(--deep-navy);
  flex-shrink: 0;
}
.author-info .name { font-weight: 600; font-size: 0.9rem; color: var(--deep-navy); }
.author-info .role { font-size: 0.78rem; color: var(--mid-gray); }

/* ── CONTACT FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--sky-blue);
}
input, textarea, select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--deep-navy);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--sun-gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}
textarea { resize: vertical; min-height: 140px; }
.error-msg { color: #e53e3e; font-size: 0.78rem; display: none; }
.error-msg.show { display: block; }
input.invalid, textarea.invalid { border-color: #e53e3e; }

/* ── CONTACT INFO CARDS ── */
.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--border);
  display: flex; gap: 1rem; align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.info-card:hover { border-color: rgba(245,166,35,0.35); box-shadow: var(--shadow-md); }
.info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(232,130,26,0.08));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.info-icon svg { width: 22px; height: 22px; color: var(--sun-gold); }
.info-card-body h4 { font-size: 0.92rem; margin-bottom: 0.3rem; }
.info-card-body p, .info-card-body a {
  font-size: 0.88rem; color: var(--mid-gray);
  transition: var(--transition);
}
.info-card-body a:hover { color: var(--energy-amber); }

/* ── MAP PLACEHOLDER ── */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
  background: linear-gradient(135deg, var(--light-gray), var(--border));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ── TEAM ── */
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card-img { height: 220px; overflow: hidden; background: linear-gradient(135deg, var(--light-gray), var(--border)); display: flex; align-items: center; justify-content: center; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-avatar-placeholder {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sun-gold), var(--energy-amber));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--deep-navy);
}
.team-card-body { padding: 1.5rem; }
.team-card-body h4 { margin-bottom: 0.25rem; }
.team-card-body .role { font-size: 0.8rem; color: var(--energy-amber); font-weight: 600; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── ABOUT HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--sky-blue) 100%);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(245,166,35,0.1) 0%, transparent 65%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,0.7); max-width: 560px; font-size: 1.05rem; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--sun-gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── MISSION / VALUES ── */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.mission-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mission-img img { width: 100%; height: 420px; object-fit: cover; }
.check-list { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0 2rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-item .icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--sun-gold); margin-top: 2px; }
.check-item p  { font-size: 0.95rem; margin: 0; }

/* ── SERVICES PAGE ── */
.services-filter {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem; justify-content: center;
}
.filter-btn {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  color: var(--mid-gray);
  background: var(--white);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--sun-gold);
  border-color: var(--sun-gold);
  color: var(--deep-navy);
}

/* ── FOOTER ── */
.site-footer {
  background: #060E1C;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.88rem; max-width: 260px; line-height: 1.7; }
.footer-social {
  display: flex; gap: 0.6rem; margin-top: 1.25rem;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--sun-gold);
  border-color: var(--sun-gold);
  color: var(--deep-navy);
}
.social-btn svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--sun-gold);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-links a::before { content: '›'; color: var(--sun-gold); font-size: 1rem; }
.footer-links a:hover { color: var(--sun-gold); padding-left: 4px; }
.footer-contact-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
  margin-bottom: 0.9rem; font-size: 0.88rem;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--sun-gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--sun-gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: var(--sun-gold); }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--sun-gold);
  color: var(--deep-navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; }

/* ── SECTION BG VARIANTS ── */
.bg-cream  { background: var(--light-cream); }
.bg-light  { background: var(--light-gray); }
.bg-amber-light { background: linear-gradient(135deg, #FFF8EC, #FFF3DF); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.4); }
  50%      { box-shadow: 0 0 0 16px rgba(245,166,35,0); }
}
.animate-fade-up { opacity:0; transform:translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-fade-up.in-view { opacity:1; transform:translateY(0); }
.delay-1 { transition-delay:0.1s; }
.delay-2 { transition-delay:0.2s; }
.delay-3 { transition-delay:0.3s; }
.delay-4 { transition-delay:0.4s; }

/* ── NUMBERS / COUNTERS ── */
.counter-section { background: var(--sky-blue); }
.counter-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.counter-item { text-align: center; }
.counter-item .num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--sun-gold);
  line-height: 1;
}
.counter-item .suffix { font-size: 1.5rem; font-weight: 700; color: var(--sun-gold); }
.counter-item .lbl { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-top: 0.5rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cards-4 { grid-template-columns: repeat(2,1fr); }
  .counter-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .mission-grid { grid-template-columns: 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .cards-3 { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 0.75rem; }
}

@media (max-width: 560px) {
  .cards-3, .cards-4, .cards-2 { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .strip-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}


/* slider  */


.solar-hero{
  margin-top: 70px;
    min-height:100vh !important;
background: linear-gradient(
  135deg,
  #001f3f 0%,
  #003566 50%,
  #00509d 100%
);
    position:relative !important;
    overflow:hidden !important;
}

.solar-hero::before{
    content:'' !important;
    position:absolute !important;
    width:500px !important;
    height:500px !important;
    border-radius:50% !important;
    background:rgba(255,255,255,.08) !important;
    left:-150px !important;
    top:-150px !important;
    filter:blur(50px) !important;
}

.solar-hero::after{
    content:'' !important;
    position:absolute !important;
    width:400px !important;
    height:400px !important;
    border-radius:50% !important;
    background:rgba(255,255,255,.06) !important;
    right:-120px !important;
    bottom:-120px !important;
    filter:blur(50px) !important;
}

.solar-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    position:relative;
    z-index:2;
}

/* LEFT CONTENT */

.solar-content{
    width:50%;
}

.solar-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 25px;
  
    backdrop-filter:blur(12px);
    border-radius:50px;
    color:#fff;
    font-size:0.75rem;
    font-weight:600;
    margin-bottom:25px;
}

.solar-title{
    font-size:2.8rem;
    line-height:1.05;
    font-weight:700;
    color:#fff;
    margin-bottom:25px;
}

#solarTyping{
    display:block;
    color:#f5a623;
    min-height:100px;
}

.solar-desc{
  margin-top: -67px;
    font-size:1rem;
    line-height:1.8;
    color:#fff  ;
    max-width:650px;
    opacity:.95;
    font-family:  'Montserrat', sans-serif;
}

.solar-btns{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:40px;
}


/* STATS */

.solar-stats{
    display:flex;
    gap:20px;
    margin-top:50px;
}

.solar-stat-box{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:15px;
    padding:20px;
    min-width:140px;
    text-align:center;
}

.solar-stat-box h3{
    color:#fff;
    font-size:30px;
    margin-bottom:5px;
}

.solar-stat-box span{
    color:#fff;
    font-size:14px;
}

/* RIGHT SIDE */

.solar-visual{
    width:45%;
    position:relative;
}

.solar-grid{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}

/* MAIN IMAGE */

.solar-main-img{
  
  margin-top: 30px;
    width:260px;
    height:400px;
    object-fit:cover;
   border-radius: 76px 7px 96px 1px;
    border:5px solid rgba(255,255,255,.9);
    box-shadow:0 25px 50px rgba(0,0,0,.25);
    animation:floatMain 6s ease-in-out infinite;
    transition:.4s;
}

.solar-main-img:hover{
    transform:scale(1.04);
}

/* SIDE IMAGE */

.solar-side-img{
  margin-top: 10px;
    width:286px;
    height:450px;
    object-fit:cover;
    border-radius:140px;
    border:5px solid rgba(255,255,255,.9);
    box-shadow:0 20px 40px rgba(0,0,0,.20);
    animation:floatSide 5s ease-in-out infinite;
}

/* ICONS */

.solar-icons{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.solar-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:35px;
    box-shadow:0 15px 30px rgba(0,0,0,.15);
    animation:floatIcon 4s ease-in-out infinite;
}

.solar-icon:nth-child(2){
    animation-delay:.5s;
}

.solar-icon:nth-child(3){
    animation-delay:1s;
}

/* SERVICES */

.solar-services{
    height:280px;
    overflow:hidden;
    margin-top:25px;
    position:relative;
}

.solar-services::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:50px;
   
    z-index:5;
}

.solar-services::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:50px;
    
    z-index:5;
}

.solar-track{
    animation:solarScroll 18s linear infinite;
}

.solar-track:hover{
    animation-play-state:paused;
}

.solar-card{
    background:#fff;
    padding:18px 20px;
    border-radius:14px;
    margin-bottom:15px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.10);
    transition:.3s;
}

.solar-card:hover{
    transform:translateX(10px);
}

.green{
    border-left:5px solid #00c853;
}

.orange{
    border-left:5px solid #ff7a00;
}

.blue{
    border-left:5px solid #2196f3;
}

/* ANIMATIONS */

@keyframes solarScroll{
    0%{
        transform:translateY(0);
    }
    100%{
        transform:translateY(-50%);
    }
}

@keyframes floatMain{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-20px);
    }
}

@keyframes floatSide{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(15px);
    }
}

@keyframes floatIcon{
    0%,100%{
        transform:translateX(0);
    }
    50%{
        transform:translateX(12px);
    }
}

/* TABLET */

@media(max-width:991px){

    .solar-container{
        flex-direction:column;
        padding:25px 0;
        gap:50px;
    }

    .solar-content,
    .solar-visual{
        width:100%;
        text-align:center;
    }

    .solar-title{
        font-size:60px;
    }

    .solar-btns,
    .solar-stats{
        justify-content:center;
    }

    .solar-grid{
        justify-content:center;
    }

    .solar-main-img{
        width:220px;
        height:420px;
    }

    .solar-side-img{
        width:170px;
        height:350px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .solar-title{
        font-size:42px;
    }

    #solarTyping{
        min-height:60px;
    }

    .solar-desc{
      margin-top: -33px;
        font-size:16px;
    }

    .solar-btns{
        flex-direction:column;
    }

    .solar-grid{
        flex-direction:column;
    }

    .solar-icons{
        flex-direction:row;
        justify-content:center;
    }

    .solar-main-img{
        width:240px;
        height:320px;
        border-radius:40px;
    }

    .solar-side-img{
        width:240px;
        height:320px;
        border-radius:40px;
    }

    .solar-icon{
        width:70px;
        height:70px;
        font-size:28px;
    }

    .solar-stats{
        flex-direction:column;
        align-items:center;
    }

    .solar-services{
        height:220px;
    }
}

@media(max-width:480px){

    .solar-title{
        font-size:34px;
    }

    .solar-main-img,
    .solar-side-img{
        width:100%;
        max-width:280px;
        height:280px;
    }

    .solar-badge{
        font-size:13px;
    }
}


/* solar image  */



.solar-gallery{
    position:relative;
    padding:10px 0;
    overflow:hidden;
    background:
    linear-gradient(
    135deg,
    #f8fcff 0%,
    #eef7ff 100%);
}

/* Sun Glow */

.solar-gallery::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    top:-250px;
    right:-250px;

    background:
    radial-gradient(circle,
    rgba(255,193,7,.25),
    transparent 70%);

    animation:sunPulse 8s ease-in-out infinite;
}

/* Background Solar Rings */

.solar-ring{
    position:absolute;
    border:2px dashed rgba(226, 100, 5, 0.559);
    border-radius:50%;
}

.ring1{
    width:600px;
    height:600px;
    top:-180px;
    left:-180px;
    animation:rotateRing 40s linear infinite;
}

.ring2{
    width:450px;
    height:450px;
    bottom:-150px;
    right:-100px;
    animation:rotateRingReverse 30s linear infinite;
}

/* Floating Particles */

.energy{
    position:absolute;
    border-radius:50%;
    background:
    radial-gradient(circle,
    rgba(244, 183, 0, 0.911),
    rgba(255,193,7,0));

    animation:floatEnergy 8s ease-in-out infinite;
}

.e1{
    width:140px;
    height:140px;
    top:10%;
    left:10%;
}

.e2{
    width:220px;
    height:220px;
    bottom:10%;
    left:5%;
    animation-delay:2s;
}

.e3{
    width:180px;
    height:180px;
    top:20%;
    right:10%;
    animation-delay:4s;
}

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:5;
}

/* Heading */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:48px;
    color:#0a2540;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
}

/* Gallery Grid */

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

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:30px;

    background:#fff;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    transition:.5s;
}

/* Different Sizes */

.gallery-item:nth-child(1){
    height:450px;
}

.gallery-item:nth-child(2){
    height:320px;
    margin-top:50px;
}

.gallery-item:nth-child(3){
    height:380px;
}

.gallery-item:nth-child(4){
    height:320px;
}

.gallery-item:nth-child(5){
    height:450px;
    margin-top:-50px;
}

.gallery-item:nth-child(6){
    height:350px;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:1s;
}

/* Overlay */

.gallery-item::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.6),
    transparent);

    opacity:0;
    transition:.5s;
    z-index:1;
}

.gallery-item:hover::before{
    opacity:2;
}


.gallery-item:hover{
    transform:translateY(-10px);
}

/* Floating Effect */

.gallery-item{
    animation:floatCard 6s ease-in-out infinite;
}

.gallery-item:nth-child(2){
    animation-delay:1s;
}

.gallery-item:nth-child(3){
    animation-delay:2s;
}

.gallery-item:nth-child(4){
    animation-delay:3s;
}

.gallery-item:nth-child(5){
    animation-delay:4s;
}

.gallery-item:nth-child(6){
    animation-delay:5s;
}

/* Animations */

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

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

@keyframes floatEnergy{

    0%,100%{
        transform:translateY(0);
        opacity:.4;
    }

    50%{
        transform:translateY(-50px);
        opacity:.9;
    }
}

@keyframes floatCard{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }
}

@keyframes sunPulse{

    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.15);
    }
}

/* Responsive */

@media(max-width:991px){

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

.gallery-item{
    margin-top:0 !important;
    height:320px !important;
}

}

@media(max-width:768px){

.section-title h2{
    font-size:34px;
}

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-item{
    height:280px !important;
}

}


/* Banner  */



.page-hero{
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Background Image */
.hero-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

/* Main Overlay */
.hero-overlay{
    position: absolute;
    inset: 0;
 background:
    linear-gradient(
        90deg,
        rgba(12,25,40,.55) 0%,
        rgba(25,50,80,.45) 40%,
        rgb(208 125 15 / 15%) 75%, rgb(227 171 18 / 28%) 100%);
    
    z-index: 1;
}


/* Content */
.hero-content{
    position: relative;
    z-index: 5;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1{
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0,0,0,.35);
}

.hero-content p{
    color: rgba(255,255,255,.9);
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}

/* Breadcrumb */
.breadcrumb{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 17px;
}

.breadcrumb a{
    color: #ffd24d;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb span{
    color: #fff;
}


/* =========================
   TABLET
========================= */

@media (max-width: 992px){

    .page-hero{
        height: 320px;
    }

    .hero-content h1{
        font-size: 48px;
    }

    .hero-content p{
        font-size: 16px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px){

    .page-hero{
        height: 260px;
    }

    .hero-content h1{
        font-size: 34px;
        margin-bottom: 10px;
    }

    .breadcrumb{
        font-size: 14px;
        gap: 6px;
    }

    .hero-content::before{
        display:none;
    }

    .page-hero::before{
        width:350px;
        height:350px;
        top:-120px;
        right:-120px;
    }

    .page-hero::after{
        width:250px;
        height:250px;
    }
}





/* =========================
   SOLAR COUNTER SECTION
========================= */

.solar-counter-section{
    position:relative;
    padding: 1px;
    background:
    linear-gradient(
        90deg,
        rgba(16, 31, 50, 0.689),
        rgba(13, 33, 59, 0.742) 40%,
        rgba(30, 17, 1, 0.226) 75%, rgb(227 171 18 / 28%) 100%),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=2070&auto=format&fit=crop") center/cover no-repeat;
}

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

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header span{
    display:inline-block;
    color:#fbbf24;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-header h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.section-header p{
    max-width:700px;
    margin:auto;
    color:rgba(255,255,255,.8);
    line-height:1.8;
}

/* Counter Grid */

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

.counter-card{
    
   
  
   
    padding:30px 30px;
    text-align:center;
    transition:all .4s ease;
}

.counter-card:hover{
    transform:translateY(-10px);
    border-color:#fbbf24;
}

.counter-icon{
 
    width:70px;
    height:70px;
    margin:0 auto 25px;
    background:rgba(251,191,36,.15);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.counter-value{
    display:flex;
    justify-content:center;
    align-items:flex-end;
    gap:2px;
    margin-bottom:15px;
}

.counter-number{
    font-size:60px;
    font-weight:800;
    color:#fbbf24;
    line-height:1;
}

.unit{
    font-size:30px;
    font-weight:700;
    color:#fbbf24;
    line-height:1;
    margin-bottom:6px;
}

.counter-card h3{
    color:#fff;
    font-size:24px;
    margin-bottom:12px;
}

.counter-card p{
    color:#fff;
    font-weight: 500;
    line-height:1.7;
    font-size:15px;
}

/* Tablet */

@media(max-width:991px){

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

    .section-header h2{
        font-size:34px;
    }

    .counter-number{
        font-size:52px;
    }
}

/* Mobile */

@media(max-width:768px){

    .solar-counter-section{
        padding:70px 15px;
    }

    .counter-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:28px;
    }

    .counter-card{
        padding:35px 25px;
    }

    .counter-number{
        font-size:48px;
    }

    .unit{
        font-size:24px;
    }

    .counter-card h3{
        font-size:22px;
    }
}




.journey-section{
    padding:100px 0;
    background:#08121f;
}

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-header span{
    color:#f5b400;
    text-transform:uppercase;
    letter-spacing:2px;
   font-size: 0.75rem;
}

.section-header h2{
    color:#fff;
    font-size:2.8rem;
    margin:15px 0;
}

.section-header p{
    color:rgba(255,255,255,.7);
    max-width:700px;
    margin:auto;
    font-size: 1rem;
}

.journey-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:40px;
}


 

.journey-card{
  margin-top: 15px;
    position:relative;
    background:#f8e7dc;
    border-radius:250px 250px 30px 30px;
    padding:90px 30px 35px;
    text-align:center;
    overflow:visible;
    transition:.4s;
}

.journey-card:hover{
    transform:translateY(-10px);
}

.journey-icon{
    position:absolute;
    top:-45px;
    left:50%;
    transform:translateX(-50%);
    width:95px;
    height:95px;
    border-radius:50%;
    background:#ffffff;
    color:#f5b400;
    font-size:22px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    border:8px solid #f2f2f2;
}

.journey-content span{
    color:#f5b400;
   
    letter-spacing:1px;
}

.journey-content h3{
    font-size:1.15rem;
    margin:12px 0;
    color:#08121f;
   
}

.journey-content p{
    color:#555;
    line-height:1.8;
    font-size: 0.92rem;
   
}




.journey-card:hover .journey-icon{
    transform:translateX(-50%) scale(1.1);
    transition:.4s;
    background:#f5b400;
    color:#fff;
}

@media(max-width:991px){

    .journey-grid{
        grid-template-columns:1fr;
    }

    .journey-card:nth-child(2),
    .journey-card:nth-child(4){
        margin-top:0;
    }

    .section-header h2{
        font-size:38px;
    }
}

@media(max-width:576px){

    .journey-section{
        padding:70px 0;
    }

    .journey-card{
        border-radius:180px 180px 25px 25px;
        padding:80px 20px 30px;
    }

    .journey-content h3{
        font-size:24px;
    }

    .journey-icon{
        width:80px;
        height:80px;
        font-size:18px;
    }
}