/* ==============================
   🪶 Global Styles — Glint Studio
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Bona+Nova+SC:wght@400;700&family=Rosarivo&display=swap');

:root {
  --clr-primary: #006747;
   --clr-secondary:#00e676;
    --clr-accent: #9eff00;
     --clr-light: #14ff72;
      --clr-bg: #EEFAF2;
       --clr-dark: #00322a;
        --clr-white: #FFFFFF;
         --clr-lightgray: #6B7A78;
           --clr-gray:  #2C3A39;

  --font-heading: 'Bona Nova SC', serif;
  --font-body: 'Rosarivo', serif;

  --fs-h1: clamp(2.2rem, 4vw + 1rem, 3.5rem);
  --fs-h2: clamp(2rem, 3vw + 1rem, 2.5rem);
  --fs-body: clamp(1.2rem, 1vw + 0.8rem, 1.1rem);

  --space-section: clamp(3rem, 6vw, 6rem);
  --space-inner: clamp(1rem, 4vw, 2.5rem);

  --transition: all 0.3s ease-in-out;




}

/* ==============================
   🎨 Theme Variables
   ============================== */

/* Default theme is DARK. These variables are used by components. */
:root {
  --nav-bg: var(--clr-dark);
  --nav-text: var(--clr-white);
  --nav-border: rgba(255, 255, 255, 1);
  --nav-link-hover-bg: var(--clr-white);
  --nav-link-hover-text: var(--clr-dark);

  --mobile-menu-bg: var(--clr-dark);
  --mobile-menu-link: var(--clr-light);
  --mobile-menu-link-hover: var(--clr-white);

  --footer-bg: #fafafa;
  --footer-text: #444;
  --footer-contact: var(--clr-dark);
  --footer-border: rgba(0,0,0,0.6);
  --footer-heading: var(--clr-primary);
  --footer-link: var(--clr-dark);
  --footer-link-hover: var(--clr-secondary);
  --footer-bottom-border: rgba(0,0,0,0.4);
  --footer-bottom-text: #666;
}

/* Light theme overrides */
.theme-light {
  --nav-bg: var(--clr-bg);
  --nav-text: var(--clr-dark);
  --nav-border: rgba(0, 0, 0, 1);
  --nav-link-hover-bg: var(--clr-dark);
  --nav-link-hover-text: var(--clr-white);
  --nav-transparent-img: url('/assets/glint-studio-green.svg');

  --mobile-menu-bg: var(--clr-bg);
  --mobile-menu-link: var(--clr-dark);
  --mobile-menu-link-hover: var(--clr-primary);

  --footer-bg: var(--clr-dark);
  --footer-text: var(--clr-bg);
  --footer-contact: var(--clr-dark);
  --footer-border: rgba(255,255,255,1);
  --footer-heading: var(--clr-secondary);
  --footer-link: var(--clr-light);
  --footer-link-hover: var(--clr-white);
  --footer-bottom-border: rgba(255,255,255,2);
  --footer-bottom-text: var(--clr-lightgray);
  
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--clr-bg);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--clr-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--clr-light);
  font-weight: 500;
  margin-bottom: 0rem;
}

section {
  padding: var(--space-section) var(--space-inner);
}

.container {
  width: min(1500px, 90%);
  margin: 0 auto;
}

a { 
  color: var(--clr-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--clr-secondary);
}

/* =================================
   ✨ "Doconomy-Cell" Style Navbar
   ================================= */

.nav-transparent {
  position: fixed;
  top: 0;
  width: 100%;
  border-top: 1px solid var(--nav-border);
  border-bottom: 1px solid var(--nav-border);
  z-index: 1000;
  background: var(--nav-bg);
  color: var(--nav-text);
  border-left: 1px solid var(--nav-border);
  border-right: 1px solid var(--nav-border);
}

.nav-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  font-family: var(--font-heading);
  text-transform: uppercase;
  position: relative;
  width: 100%;
}

.logo {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--nav-text);
  display: flex;
  align-items: center;
  padding: 1.5rem 2.5rem;
}
.logo span {
  color: var(--clr-secondary);
}

.nav-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-right: 5rem;
  border-left: 1px solid var(--nav-border);
}

#last-nav-center-element {
  border-right: 1px solid var(--nav-border);
}

.nav-center a {
  color: var(--nav-text);
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  transition: var(--transition);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  border-left: 1px solid var(--nav-border);
  height: 100%;
 
}
.nav-center a:hover {
  background: var(--nav-link-hover-bg);
  color: var(--nav-link-hover-text);
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  border-left: 1px solid var(--nav-border);
}

.btn-book {
  font-size: 0.85rem;
  letter-spacing: 0.05rem;
  color: var(--clr-white);
  text-transform: uppercase;
  background: transparent;
  transition: var(--transition);
  display: flex;
  align-items: center;
  padding: 1.5rem 2.5rem;
}
.btn-book:hover {
  background: var(--nav-link-hover-bg);
  color: var(--nav-link-hover-text);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 1.5rem 2rem;
  border-left: 1px solid var(--nav-border);
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--nav-text);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: var(--mobile-menu-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  z-index: 999;
}
.mobile-menu.active { left: 0; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-menu a {
  color: var(--mobile-menu-link);
  font-size: 1.3rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
}
.mobile-menu a:hover {
  color: var(--mobile-menu-link-hover);
}
.btn-book-mobile {
    border: 1px solid var(--clr-accent); 
    padding: 0.8rem 1.5rem;
    margin-top: 1.5rem;
    display: inline-block;
    font-size: 0.5rem;
    text-align: center;

}
.btn-book-mobile:hover {
    color: var(--clr-dark);
    background: var(--clr-bg);
    border: 1px solid var(--clr-dark);
}
/* =============================
   Hero Section (Your Styles)
   ============================= */
.hero {
  height:auto;
  background: var(--clr-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 1);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  padding: 3rem;
  padding-top: 12rem;
  padding-bottom: 8rem;
}
.hero-inner {
  max-width: 1200px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing:  0.03em;
  margin-bottom: 1.5rem;
  color: var(--clr-secondary);
}
.hero-title span {
text-decoration: underline;
text-decoration-color: var(--clr-accent);
text-decoration-thickness: 3px;
text-underline-offset: 0.1em;
}
.hero-subtext {
  font-family: var(--font-body);
  max-width: 550px;
  font-size: 1.1rem;
  color: rgba(255,255,255,1);
  margin-bottom: 2.5rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
}
.btn-primary, .btn-secondary {
  padding: 1rem 2rem;
  border: none;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: var(--clr-light);
  color: var(--clr-dark);
}
.btn-primary:hover {
  background: transparent;
  border: 1px solid var(--clr-light);
  color: var(--clr-white);
}
.btn-secondary {
  background: transparent;
  border: 1px solid var(--clr-light);
  color: var(--clr-white);
}
.btn-secondary:hover {
  background: var(--clr-light);
  color: var(--clr-dark);
}

/* =============================
   Responsive (Your Styles)
   ============================= */
@media (max-width: 992px) {
  .nav-center, .btn-book { display: none; }
  .hamburger { display: flex; 
  margin-left: auto;
  }
  .nav-grid {
    display: flex;
    align-items: stretch;
    grid-template-columns: 1fr auto;
    justify-content: space-between;
  }
  .nav-right {
    border-left: none; /* Remove border on mobile */
  }
}
@media (max-width: 600px) {
  .hero { padding: 0 1.5rem; 
  padding-bottom: 5rem;
  padding-top: 10rem;

}
  .hero-cta { flex-direction: column; align-items: flex-start; }
  
  .nav-transparent {
    border-left: none;
    border-right: none;
  }
  .logo, .hamburger {
      padding: 1.5rem;
  }
}



/* =============================
   ✨ Social Proof Bar Styles
   ============================= */

.trust-text {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--clr-light);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.logo-marquee {
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
}

.logo-track {
  
    display: inline-block;
    display: flex;
    animation: scroll-left-to-right 40s linear infinite;
}

.logo-track img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(60%) opacity(80%);
    transition: var(--transition);
    flex-shrink: 0;
    padding: 0 2.5rem; /* Increased from 1rem to create more space */
}

.logo-track img:hover {
    filter: grayscale(0%) opacity(100%);
}

/* =============================
   ✨ Marquee Keyframes (The Animation)
   ============================= */
@keyframes scroll-left-to-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 8 * 5rem)); /* 8 images * (2 * 2.5rem padding) */
  }
}
@media screen and (max-width: 600px) {
    .logo-track img {
        height: 100px;
    }

    .trust-text {
        font-size: 1rem;
    }
    .logo-track {
      animation: scroll-left-to-right 40s linear infinite;
}}








/* ================================
   VALUE PROPOSITION SECTION
================================ */

.value-section {
  background: var(--clr-dark);
  border-top: 1px solid rgba(255,255,255,1
  );
  border-bottom: 1px solid rgba(255,255,255,1);
}

.gs-how-subtitle {
  text-align: left;
  max-width: 400px;
  margin: 0 auto 4rem auto;
  font-size: 1.2rem;
  color: var(--clr-light);
}

.value-grid {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 4rem;
  align-items: start; 
  
}

.value-heading {
  font-family: var(--font-heading);
  color: var(--clr-light);
  font-size: var(--fs-h2);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 2rem;
  font-weight: 400;

}

.value-text {
  color: var(--clr-white);
  max-width: 550px;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.value-right {
  border-left: 1px solid rgba(255,255,255,1);
  padding-left: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: stretch;
}
/* Cards */
.value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--clr-accent);
  padding: 2rem;
  border-radius: 0;
  transition: var(--transition);
}

.value-card h3 {
  font-family: var(--font-heading);
  color: var(--clr-secondary);
  font-size: 1.3rem;
  margin-bottom: .8rem;
  letter-spacing: .03em;
    font-weight: 500;

}

.value-card p {
  font-size: 1rem;
  line-height: 1.5;
}

.value-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--clr-accent);
  box-shadow: 0 0 15px rgba(68, 169, 158, 0.25);

}

/* Responsive */
@media (max-width: 900px) {
  .value-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .value-right {
    /* Remove the separator line on mobile */
    border-left: none;
    padding-left: 0;
    grid-template-columns: 1fr; /* Stack cards in a single column */
  }
}



















/* ================================
   Glint Studio — How It Works Section
   ================================ */

.gs-how {
  background: var(--clr-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 1);
  color: var(--clr-light);
}

.gs-how-title {
  color: var(--clr-light);
  text-align: center;
  margin-bottom: 3rem;
  font-size: var(--fs-h2);
  letter-spacing: 0.05em;
  font-weight: 500;
}

.gs-how-subtitle{
  color: var(--clr-bg);
  text-align: center;
}

.gs-how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.gs-how-card {
  padding: 2.5rem;
  border: 1px solid var(--clr-accent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0;
  transition: var(--transition);
}

.gs-how-card:hover {
  background: rgba(255, 255, 255, 0.07);
   box-shadow: 0 0 15px rgba(68, 169, 158, 0.25);

}

.gs-how-card h3 {
  font-weight: 500;
  color: var(--clr-secondary);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.gs-how-desc {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--clr-bg);
  opacity: 0.9;
}

.gs-how-list {
  list-style: none;
  margin-bottom: 2rem;
  color: var(--clr-bg);

}

.gs-how-list li {
  margin-bottom: 0.6rem;
  padding-left: 1rem;
  position: relative;
}

.gs-how-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--clr-accent);
}

.gs-how-btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
}
  
/* Mobile */
@media (max-width: 850px) {
  .gs-how-grid {
    grid-template-columns: 2fr;
  }
}


/* Container */
.package-section {
  padding: 0rem;
  padding-top: 3rem;
  position: relative;
  padding-bottom: 4rem;
}

/* Header */
.package-header {
  color: var(--clr-light);
  margin-bottom: 2rem;
}


.package-header .section-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--clr-light);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--clr-bg);
  font-size: larger;
}
.category-title {
  margin-bottom: 20px;
  margin-top: 20px;
  color: var(--clr-secondary);
}
/* Grid */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.2rem;
}

.package-item {
  padding: 0.7rem 0.7rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--clr-bg);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
  transition: var(--transition);
}

.package-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--clr-accent);
  transform: translateY(-2px);
}

.package-cta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}






















/* ============================
   READY-TO-ACQUIRE COMPANIES
============================ */

.companies {
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 1);
}

.companies .section-title {
  color: var(--clr-light);
}
.companies .section-subtitle{
    margin-bottom: 1rem;
}

/* Filters */
.filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem; /* Space between filters and cards */
}

/* Custom styling for the filter dropdowns */
.filters select {
  background-color: var(--clr-dark);
  color: var(--clr-light);
  border: 1px solid var(--clr-accent);
  padding: 0.8rem 2.5rem 0.8rem 1.2rem; /* Extra right padding for the arrow */
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);

  /* Remove default browser appearance and add custom arrow */
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2381CDC0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 1.2em;
}

.filters select:focus {
  outline: none; /* Removes the default orange outline */
  box-shadow: 0 0 0 2px var(--clr-dark), 0 0 0 4px var(--clr-secondary); /* Custom focus ring */
}

.filters select:hover {
  background-color: var(--clr-primary);
  border-color: var(--clr-secondary);
}

/* Cards Grid */
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; /* Space between cards */
}

.company-card {
  background: #f3f3f3;
  padding: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.979);
  transition: var(--transition);
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.75);
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
}

.tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  color: white;
  border-radius: 4px;
}

.tag-hot { background: #0537a3; }
.tag-new { background: #c51407; }
.tag-fast { background: #005c59; }

.company-card h3 {
  margin-top: 1rem;
  font-size: 1.3rem;
  color: var(--clr-primary);
}

.sector{
  font-size: 0.99rem;
  color: var(--clr-dark);
}
/**
.sector span {
  border: 1px solid var(--clr-secondary);
  background-color: var(--clr-secondary);
  padding: 0.1rem 0.4rem;
}**/

.price {
  font-weight: bold;
  margin: 0.5rem 0 1rem;
  color: var(--clr-dark);
}

.highlights li {
  margin-bottom: 0.4rem;
  color: var(--clr-dark);
}

.btn-view {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  padding: 0.7rem 1.2rem;
  background: var(--clr-primary);
  color: white;
  font-family: var(--font-heading);
}

.center {
  text-align: center;
}

.btn-main {
  margin-top: 3rem;
  display: inline-block;
  padding: 0.9rem 1.7rem;
  background: var(--clr-secondary);
  color: var(--clr-white);
  font-family: var(--font-heading);
}

.btn-main:hover{
color: var(--clr-dark);
}

/* Responsive adjustments for filters on mobile */
@media (max-width: 600px) {
  .filters {
    flex-direction: column; 
    align-items: stretch; 
  }
}

/* ==============================
   Why Nigeria - Dashboard Section
   ============================== */


.why-nigeria.section-light {
  border-top: 1px solid rgba(255, 255, 255, 0.75); 
  border-bottom: 1px solid rgba(255, 255, 255, 0.75); 

}


.why-nigeria {
  padding: var(--space-section) 0;
  
}

.why-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;

}

.why-header h2 {
  margin-bottom: 2rem;
  color: var(--clr-light);
  
}

.why-sub {
  color: var(--clr-bg);
  margin-top: -0.5rem;
  font-size: 1.05rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.why-narrative h3 {
  margin-bottom: 1rem;
  color: var(--clr-light);

}

.why-grid-p {
  color: var(--clr-bg); /* Corrected color for readability */
  word-wrap: break-word;
}

.why-list {
  color: lightgray; /* Corrected color for readability */
  margin-top: 1.5rem;
  list-style: none;
      word-wrap: break-word;

}

.why-list li {
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid var(--clr-secondary);
}

/* Stats Grid */
.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-dark);
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-50px);
  border-color: var(--clr-secondary);
}

.stat-card h4 {
  font-size: 2rem;
  color: var(--clr-primary);
  margin-bottom: 0.25rem;
}
.stat-card p {
  color: var(--clr-gray);
  font-size: 1rem;
}
/* Chart Card */
.why-chart {
  background: var(--clr-white);
  border: 1px solid var(--clr-dark);
  padding: 1.5rem;
  border-radius: 1rem;
}

.chart-wrap {
  width: 100%;
  height:250px; /* Increased height for axis labels */
}

.chart-label {
  text-align: center;
  margin-top: 1rem;
  color: var(--clr-dark);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr; /* Stack the three main columns vertically */

  }
  .chart-wrap {
  width: 100%;
  height:100%; /* Increased height for axis labels */
}
  .why-narrative, .why-stats, .why-chart {
    width: 100%; /* Ensure grid items don't overflow their container */
  }
}

@media (max-width: 600px) {
  .stat-card, .why-chart {
    padding: 0.2rem; /* Reduce padding on mobile */
  }
}

.stat-card:hover {
  transform: translateY(-7px) scale(1.02);
  border-color: var(--clr-secondary);
  box-shadow: 0 10px 25px rgba(16, 81, 79, 0.12);
}

.why-list li:hover {
  padding-left: 1.3rem;
  border-left-color: var(--clr-accent);
  color: var(--clr-light);
}

.why-chart:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(16, 81, 79, 0.10);
}


/* ============================
   Ownership Transfer Timeline
   ============================ */

.ownership-process {
  position: relative;
}

.ownership-process .subtext {
  max-width: 650px;
  word-wrap: break-word;
  margin: 0 auto 3rem auto;
  color: var(--clr-bg);
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  margin-bottom: 3rem;
}

.timeline .step {
  width: 100%;
  text-align: center;
  padding: var(--space-inner);
  position: relative; /* ScrollReveal will handle the animation */
}
.timeline .step h3 {
  font-size: 1.3rem;
  color: var(--clr-light);
}
.timeline .step p{
  color: var(--clr-bg);
  font-size: 1rem;
  margin-top: 1rem;
  line-height: 1.4;
}

.step-number {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-weight: 500;
}

.timeline .line {
  width: 500px;
  height: 3px;
  background: var(--clr-light);
  align-self: center;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

/* CTA */
.cta-btn {
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 0.9rem 2rem;
  border-radius: 0;
  display: inline-block;
  transition: var(--transition);
}

.cta-btn:hover {
  background: var(--clr-secondary);
  color: var(--clr-dark);

}

/* Mobile Layout */
@media (max-width: 900px) {
  .timeline {
    flex-direction: column;
    gap: 3rem;
  }

  .timeline .line {
    width: 3px;
    height: 60px;
    transform-origin: top;
    margin: 0 auto;
  }
}
/* ==============================
   Edits Made Recently
   ============================== */


     .case-study-section {
    padding: 80px 0;
     /* background: #fafafa; */
    background: #f3f3f3;
  }

.section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 40px;
    font-weight: 500;
    color: var(--clr-dark);
}
.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.case-study-controls {
    display: flex;
    gap: 0.1rem;
}

.case-study-controls button {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.case-study-controls button:hover {
    background: #f3f3f3;
    border-color: #ccc;
    transform: translateY(-2px);
}

.case-study-controls button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.2);
}

.case-study-carousel {
    overflow: hidden;
}

.case-study-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.case-study-card {
    display: flex;
    gap: 40px;
    background: var(--clr-dark);
    padding: 40px;
    border: 1px solid var(--clr-dark);
    min-width: 100%;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cs-left, .cs-right {
    flex: 1;
}

.cs-left h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--clr-light);
}

.cs-left h4 {
  color: var(--clr-light);
}

.cs-problem {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: var(--clr-bg)
}

.cs-list {
    margin-top: 10px;
}

.cs-list li {
    margin-bottom: 8px;
    color: var(--clr-bg)
}

.cs-outcome-box {
    background: rgba(255,255,255,0.07);
    padding: 25px;
    border: 1px solid var(--clr-primary);
    margin-bottom: 20px;
    color: var(--clr-bg);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
}

.cs-outcome-box blockquote {
    margin-top: 10px;
    padding-left: 15px;
    border-left: 3px solid var(--clr-secondary);
    color: var(--clr-light);
}

.cs-btn {
    display: inline-block;
    padding: 12px 22px;
    background-color: var(--clr-secondary);
    color: var(--clr-dark);
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.cs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: var(--clr-bg);
    background-color: var(--clr-dark);
    border: 1px solid var(--clr-secondary);
}

.cs-btn:active {
    transform: translateY(1px);
}

.testimonial-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.7rem;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: var(--clr-dark);
    border-radius: 0;
    padding: 30px;
    border: 1px solid var(--clr-dark);
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.15);
}

.testimonial-title {
  color: var(--clr-dark);
}

.t-text {
    font-size: 1.04rem;
    color: var(--clr-light);
    margin-bottom: 15px;
}

.t-client {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--clr-bg);
}

.t-role {
    color: #e4e4e4;
    font-size: 0.9rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    background-color: transparent;
    color: var(--clr-light);
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: 1px solid var(--clr-accent);
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    margin-left: 25px;
    margin-right: 25px;
    
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn:active {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.carousel-btn.prev { left: -20px; }
.carousel-btn.next { right: -20px; }

@media(max-width: 850px) {
  
    .case-study-card {
        flex-direction: column;
        padding: 25px;
    }

    .case-study-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .case-study-controls {
        align-self: end;
    }
    .carousel-btn.prev { left: 5px; }
    .carousel-btn.next { right: 5px; }
    .carousel-btn {
     margin: 0px;
    }
}


/* ============================
   MODAL STYLES
============================ */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.modal-container {
    position: relative;
    background: var(--clr-dark);
    border: 1px solid var(--clr-accent);
    width: min(1100px, 90%);
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.modal.is-open .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--clr-light);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--clr-secondary);
}

body.modal-is-open {
    overflow: hidden;
}
/** ============================
   END OF SECTION
   ============================ **/

   /* ===========================================
   🌟 CTA Section — Glint Studio
   =========================================== */

#cta {
  position: relative;
  padding: var(--space-section) var(--space-inner);
  overflow: hidden;
}

/* Radial Glow Background */
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(17, 80, 79, 0.25),
    transparent 70%
  );
  opacity: 0.6;
  z-index: 0;
}

.cta-container {
  position: relative;
  text-align: center;
  z-index: 2;
  max-width: 800px;
}

.cta-title {
  font-size: var(--fs-h1);
  margin-bottom: 1rem;
  color: var(--clr-light);
}

.cta-subtitle {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--clr-bg);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Primary Button */



/* Outline Button */
.btn-outline {
  border: 2px solid var(--clr-primary);
  padding: 0.9rem 2rem;
  color: var(--clr-primary);
  background: transparent;
  font-weight: 400;
  border-radius: 0;
  transition: var(--transition);
}

.btn-outline:hover {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

/* Proof Text */
.cta-proof {
  font-size: 0.95rem;
  color: var(--clr-lightgray);
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
  }
}








/* =============================
  end of dsection  Styles
  ============================= */
/





/** ============================
   -map (add to your -main css)
   ============================ **/
/* Container + header */
.coverage-section {
  padding: var(--space-section) var(--space-inner);
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,1);
}

#coverage-section {
  background-color: var(--clr-dark);
  border-bottom: 1px solid rgba(255,255,255,1);

}
.coverage-title { font-size: var(--fs-h1); text-align:center; margin-bottom:8px; color:var(--clr-secondary); }
.coverage-subtitle { text-align:center; color:var(--clr-bg); margin-bottom:24px; }

/* Map wrapper */
.coverage-map-wrapper {
  position: relative;
  width: min(1100px, 95%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  max-height: 640px;
}

/* SVG map image (crisp) */
.coverage-map-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: saturate(.95) contrast(.98);
  border-radius: 6px;
}

/* Connectors SVG covers the same area absolutely */
.connectors-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* lines should not block pin clicks */
}

/* Pin base style */
.map-pin.pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--clr-primary);
  box-shadow: 0 6px 16px rgba(16,81,79,0.18);
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 6;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* center pin styling */
.map-pin.pin-center {
  width: 20px;
  height: 20px;
  background: var(--clr-secondary);
  box-shadow: 0 10px 26px rgba(68,169,158,0.18);
}

/* pulse ring around pins */
.map-pin.pin::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(68,169,158,0.06);
  z-index: -1;
  transition: opacity 0.2s;
}

/* hover */
.map-pin.pin:hover { transform: translate(-50%, -50%) scale(1.25); box-shadow: 0 12px 30px rgba(16,81,79,0.22); }
.map-pin.pin-center:hover { transform: translate(-50%, -50%) scale(1.2); }

/* Tooltip */
.pin-tooltip {
  position: absolute;
  min-width: 160px;
  max-width: 260px;
  padding: 10px 12px;
  background: var(--clr-white);
  color: var(--clr-dark);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  font-size: 0.95rem;
  transform: translate(-50%, -120%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 12;
  border: 1px solid rgba(16,81,79,0.06);
}

/* small pointer triangle */
.pin-tooltip::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 8px 0 8px;
  border-style: solid;
  border-color: var(--clr-white) transparent transparent transparent;
}

/* Connectors line style */
.connector-line {
  stroke: var(--clr-accent);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.95;
  /* line animation by dash */
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 900ms ease, opacity 500ms ease;
  filter: drop-shadow(0 6px 12px rgba(16,81,79,0.14));
}

/* modal (reuse your modal style but include here for completeness) */
.modal-overlay {
  position: fixed;
  inset:0;
  background: rgba(0,0,0,0.55);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 10020;
}
.modal-box {
  background: var(--clr-white);
  width: min(820px, 95%);
  max-height: 86vh;
  overflow:auto;
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
  position: relative;
}
.modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: var(--clr-dark);
  cursor: pointer;
}

/* hidden helper */
.hidden { display: none; }

/* responsive pins and tooltip adjustments */
@media (max-width: 900px) {
  .map-pin.pin { width: 14px; height: 14px; }
  .pin-tooltip { transform: translate(-50%, -110%); font-size: 0.9rem; }
}

/** =============================
FOOTER STYLES
   ============================ **/

   /* FOOTER */
.footer {
    background: var(--footer-bg);
    padding: 60px 8%;
    border-top: 1px solid var(--footer-border);
    animation: fadeIn 1.2s ease;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-about {
    color: var(--footer-text);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 260px;
}

.footer-col {
    border-right: 1px solid var(--footer-border);
}

.footer-col h4 {
    margin-bottom: 18px;
    font-size: 1.15rem;
    color: var(--footer-heading);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--footer-link);
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--footer-link-hover);
}

.footer-socials a {
    font-size: 1.25rem;
    margin-right: 12px;
    color: var(--footer-link);
    transition: 0.3s;
}

.footer-socials a:hover {
    color: var(--footer-link-hover);
}

.footer-contact {
    color: var(--clr-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-cta {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 18px;
    background: var(--clr-dark);
    color: #fff;
    font-size: 0.92rem;
    transition: 0.3s;
}

.footer-cta:hover {
    background: var(--footer-link-hover);
    color: #000;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--footer-bottom-border);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: var(--footer-bottom-text);
    font-size: 0.9rem;
}

.footer-policy a {
    color: var(--footer-bottom-text);
    margin-left: 10px;
}

.footer-policy a:hover {
    color: var(--footer-link-hover);
}

/* Fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
    .footer-col {
  
    border-right: none;
}
}

/* NEWSLETTER BAR — Glint Studio */
.container .newsletter-container{
  box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
}
.newsletter-bar {
  background-color: var(--clr-white);
  padding: var(--space-section) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, .6);
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}

.newsletter-container {
  text-align: center;
  max-width: 700px;
  animation: fadeIn 1.2s ease;
}

.newsletter-bar h3 {
  font-family: var(--font-heading);
  color: var(--clr-dark);
  margin-bottom: 0.6rem;
  font-size: var(--fs-h2);
}

.newsletter-bar p {
  color: var(--clr-gray);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsletter-form input {
  padding: 14px 18px;
  width: 320px;
  border: 1px solid rgba(0,0,0,0.2);
  font-size: 1rem;
  outline: none;
  background: var(--clr-bg);
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--clr-secondary);
  box-shadow: 0 0 0 3px rgba(68,169,158,0.25);
}

.newsletter-form button {
  padding: 14px 22px;
  background: var(--clr-dark);
  color: var(--clr-white);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--clr-primary);
}

@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input, 
  .newsletter-form button {
    width: 100%;
  }
}

/* HIDE initially */
#newsletterLoading,
#newsletterSuccess {
  display: none;
}

/* SPINNER STYLE */
.newsletter-loading {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.spinner {
  width: 35px;
  height: 35px;
  border: 4px solid var(--clr-light);
  border-top-color: var(--clr-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* SUCCESS BOX */
.newsletter-success {
  text-align: center;
  margin-top: 1.5rem;
  animation: fadeInUp 0.6s ease-out forwards;
}

.success-checkmark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto;
  background: var(--clr-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.5);
  opacity: 0;
  animation: popIn 0.5s ease forwards 0.2s;
}

.checkmark {
  width: 20px;
  height: 40px;
  border: solid var(--clr-white);
  border-width: 0 8px 8px 0;
  transform: rotate(45deg) translate(5px, -5px);
}

/* SUCCESS ANIMATIONS */
@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* CONFETTI CANVAS (fills screen but ignores clicks) */
#confettiCanvas {
  pointer-events: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
}
