/* =============================================
   RESET & VARIABLES
============================================= */
:root {
  --navy: #06101F;
  --navy-mid: #0C1A30;
  --blue: #2224A9;
  --blue-bright: #0D99FF;
  --green: #1F7A3F;
  --green-hover: #00B85C;
  --amber: #FFB020;
  --purple: #8B5CF6;
  --cyan: #06B6D4;
  --rose: #F43F5E;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-tertiary: #94A3B8;
  --bg-page: #FAFBFC;
  --bg-white: #FFFFFF;
  --border-light: rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.25);
  --radius-sm: 10px;
  --radius-md: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  line-height: 1.65;
  background: var(--bg-page);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 70px;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =============================================
   BADGE
============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
}

.specialty-badge {
  display: inline-block;
  position: relative;
  padding: 1px;
  margin-bottom: 30px;
  border: 3px solid #1F7A3F;
  border-radius: 20px;
}

.specialty-badge .inner-badge {
  padding: 8px 24px;
  border: 3px solid #2224A9;
  border-radius: 20px;
}

/* .specialty-badge::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 3px solid #2224A9;
  border-radius: 20px;
  transform: translate(-3px, -2px);
} */

.specialty-badge span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.gradient-text {
  background: linear-gradient(120deg, #1F7A3F 5%, #2224A9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* =============================================
   SECTION HEADING
============================================= */
.section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--blue);
}

.section-heading .accent {
  color: var(--green);
}

.section-sub {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  color: var(--blue);
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  /* width: 32px;
  height: 32px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.logo-icon img {
  width: 50%;
  margin-left: -10px;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-cloma {
  color: var(--navy);
}

.logo-link {
  color: var(--green);
}

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

.nav-menu a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green);
  padding: 4px 0;
  position: relative;
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--blue);
}

.nav-menu a.active {
  color: var(--blue);
  font-weight: 600;
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

/* Get Started CTA */
.nav-cta {
  background: var(--green) !important;
  color: var(--bg-white) !important;
  padding: 11px 26px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 400 !important;
  font-size: 0.8rem !important;
}

.nav-cta:hover {
  background: var(--green-hover) !important;
  transform: translateY(-1px);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  flex-direction: column;
  padding: 80px 32px 40px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav a:hover {
  color: var(--green);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* =============================================
   HERO
============================================= */
.hero {
  background: var(--bg-white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 .green {
  color: var(--green);
}

.hero-desc {
  color: var(--blue);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 380px;
  margin: 50px 0;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: fit-content;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #2224A9 0%, #1F7A3F 100%);
  color: white;
  padding: 14px 16px 14px 32px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.92rem;
  min-width: 270px;
  transition: var(--transition);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #2224A9 50%, #1F7A3F 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 210, 106, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  color: var(--blue);
  padding: 14px 16px 14px 32px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid #ACDAF7;
  min-width: 270px;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: rgba(6, 16, 31, 0.3);
  transform: translateY(-2px);
}

.btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  flex-shrink: 0;
}

.btn-primary .btn-icon {
  background: rgba(255, 255, 255, 0.2);
}

.btn-secondary .btn-icon {
  background: rgba(6, 16, 31, 0.06);
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 10/9;
  box-shadow: var(--shadow-xl);
  height: 100%;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.35) 40%,
      rgba(0, 0, 0, 0.1) 70%,
      rgba(0, 0, 0, 0.05) 100%);
}

.hero-image-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}

.hero-image-text p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 2vw, 2rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

/* =============================================
   SERVICES
============================================= */
.services-section {
  margin-bottom: 120px;
  background: var(--bg-white);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-heading {
  margin-bottom: 16px;
}

.services-header .section-sub {
  margin: 0 auto;
}

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

.service-card {
  background: #2224A9;

  /* background: linear-gradient(180deg, #1F7A3F 30%, #2224A9 100%); */
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  color: white;
  display: block;
}

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

.service-card .svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  /* background: #1F7A3F; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card .svc-icon i {
  font-size: 24px;
  color: white;
}

.service-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 120%;
}

.service-card p {
  font-size: 0.8rem;
  color: white;
  line-height: 1.65;
  margin: 30px 0;
}

.service-card .svc-link {
  color: #0D99FF;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card .svc-link iconify-icon {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}

.service-card:hover .svc-link iconify-icon {
  transform: translateX(4px);
}

/* =============================================
   SHOWCASE
============================================= */
.showcase-section {
  padding: 0 0 100px;
  background: var(--bg-white);
}


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

.showcase-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 10/9;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.showcase-card:hover img {
  transform: scale(1.06);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 16, 31, 0.85) 0%, rgba(6, 16, 31, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.showcase-overlay h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
  text-align: center;
}



.showcase-overlay span {
  font-size: 0.7rem;
  color: red;
}

/* Placeholder for missing images */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2d4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

/* =============================================
   CTA BAND
============================================= */

.cta-section {
  padding: 60px 0;
  margin: 0 clamp(0px, 8vw, 150px);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--blue);
  border-radius: 20px;
}

/* .cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 400px at 20% 50%, rgba(0, 210, 106, 0.1) 0%, transparent 100%),
    radial-gradient(circle 300px at 80% 30%, rgba(255, 176, 32, 0.08) 0%, transparent 100%);
} */

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 1.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 1rem;
  color: white;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--bg-white);
  color: white;
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-about .logo {
  margin-bottom: 18px;
}

.footer-about p,
.footer-about span {
  color: var(--blue);
  font-size: 0.92rem;
  line-height: 1.4;
  max-width: 300px;
}

.social-row {
  display: flex;
  gap: 10px;
  margin: 30px 0;
}



.social-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--navy);
}

.footer-col h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
}

.footer-col a {
  display: block;
  color: var(--blue);
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.footer-col a:hover {
  color: var(--green);
}

/* Newsletter */
.footer-newsletter p {
  color: var(--blue);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.nl-form {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}

.nl-form input {
  flex: 1;
  padding: 15px;
  border-radius: 10px 0 0 10px;
  border: none;
  background: var(--blue);
  color: white;
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: var(--transition);
}

.nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.nl-form input:focus {
  border-color: var(--green);
}

.nl-form button {
  background: var(--green);
  color: var(--bg-white);
  border: none;
  padding: 15px;
  border-radius: 0 10px 10px 0;
  font-size: 0.85rem;
  transition: var(--transition);
  margin-right: 10px;
}

.nl-form button:hover {
  background: var(--green-hover);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   PAGE HERO (inner pages)
============================================= */
.page-hero {
  background: var(--navy);
  padding: 140px 0 64px;
  color: white;
}

.page-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
}

.page-hero .breadcrumb a:hover {
  color: var(--green);
}

.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.page-hero>.container>p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-top: 16px;
  max-width: 500px;
}

/* Under construction */
.under-construction {
  padding: 100px 0;
  text-align: center;
}

.uc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 176, 32, 0.1);
  color: var(--amber);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
}

.under-construction>.container>p {
  color: var(--text-secondary);
  margin-top: 20px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   SCROLL ANIMATIONS
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 {
  transition-delay: 0.3s;
}

.reveal-d4 {
  transition-delay: 0.4s;
}

.reveal-d5 {
  transition-delay: 0.5s;
}

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

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

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

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

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .btn-primary,
  .btn-secondary {
    min-width: 100%;
  }
}

/* Poppins fonts */

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}