:root{
  --primary: #1E5D2E;
  --primary-soft: #2F7A3F;

  --blue: #0B4F8A;
  --blue-soft: #2E86C1;

  --dark: #061625;
  --text: #1E293B;
  --muted: #64748B;

  --bg: #ffffff;
  --bg-soft: #F5F8FA;

  --border: rgba(15, 23, 42, 0.12);

  --shadow: 0 18px 55px rgba(5, 20, 40, 0.10);
  --shadow-strong: 0 20px 70px rgba(5, 20, 40, 0.18);

  --radius: 20px;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

html{
  scroll-behavior: smooth;
}

body{
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.75;
}

a{
  text-decoration: none;
  color: inherit;
}

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

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

/* ===========================
   NAVBAR
=========================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 18px;
}

.logo{
  display: flex;
  align-items: center;
}

.logo img{
  height: 62px;
  width: auto;
  transition: 0.25s ease;
}

.desktop-nav ul{
  display: flex;
  gap: 14px;
  list-style: none;
  align-items: center;
}

.desktop-nav ul li a{
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.desktop-nav ul li a:hover,
.desktop-nav ul li a.active{
  background: rgba(30, 93, 46, 0.10);
  color: var(--dark);
}

.nav-cta{
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.95rem;
  transition: 0.25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--blue));
  color: white;
  box-shadow: 0 18px 45px rgba(11, 79, 138, 0.22);
}

.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(11, 79, 138, 0.28);
}

.btn-outline{
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
  color: var(--dark);
}

.btn-outline:hover{
  background: rgba(11, 79, 138, 0.08);
  transform: translateY(-2px);
}

/* MOBILE NAV */
.menu-toggle{
  display: none;
  font-size: 1.25rem;
  color: var(--dark);
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 10px;
  border-radius: 12px;
}

.menu-toggle:hover{
  background: rgba(15, 23, 42, 0.06);
}

.mobile-nav{
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 18px 0 25px;
  border-top: 1px solid var(--border);
}

.mobile-nav a{
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 900;
  color: var(--dark);
  background: rgba(15, 23, 42, 0.04);
  transition: 0.25s ease;
}

.mobile-nav a:hover{
  background: rgba(30, 93, 46, 0.12);
}

/* show when active */
.mobile-nav.active{
  display: flex;
}

/* ===========================
   HERO
=========================== */
.hero{
  padding: 95px 0 85px;
  background:
    radial-gradient(circle at top left, rgba(30,93,46,0.18), transparent 60%),
    radial-gradient(circle at bottom right, rgba(11,79,138,0.18), transparent 60%),
    linear-gradient(180deg, #ffffff, #f4fbf7);
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 55px;
  align-items: center;
}

.hero-content{
  position: relative;
}

.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(30,93,46,0.10);
  border: 1px solid rgba(30,93,46,0.18);
  color: var(--primary);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.hero h1{
  font-size: 3.4rem;
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--dark);
  margin-bottom: 18px;
  font-weight: 950;
}

.hero h1 span{
  background: linear-gradient(135deg, var(--primary), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p{
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 28px;
  font-weight: 650;
}

.hero-buttons{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 25px;
}

.stat{
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(10, 25, 55, 0.06);
}

.stat h3{
  font-size: 1rem;
  font-weight: 950;
  margin-bottom: 4px;
  color: var(--dark);
}

.stat p{
  font-size: 0.88rem;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.hero-image{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-strong);
  position: relative;
}

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

.hero-glass-card{
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 12px 40px rgba(10, 25, 55, 0.12);
}

.hero-glass-card h4{
  font-size: 1.05rem;
  font-weight: 950;
  margin-bottom: 6px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-glass-card p{
  font-size: 0.92rem;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

/* ===========================
   SECTIONS
=========================== */
section{
  padding: 95px 0;
}

.section-soft{
  background: var(--bg-soft);
}

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

.section-title h2{
  font-size: 2.5rem;
  color: var(--dark);
  letter-spacing: -0.8px;
  margin-bottom: 12px;
  font-weight: 950;
}

.section-title p{
  max-width: 850px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 650;
}

/* ===========================
   CARDS
=========================== */
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card{
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 30px;
  box-shadow: 0 12px 40px rgba(10, 25, 55, 0.08);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(30,93,46,0.12), transparent 55%);
  opacity: 0;
  transition: 0.3s ease;
}

.card:hover::before{
  opacity: 1;
}

.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(10, 25, 55, 0.14);
}

.card .icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 19px;
  margin-bottom: 16px;
  background: rgba(11, 79, 138, 0.12);
  color: var(--blue);
  position: relative;
  z-index: 2;
}

.card h3{
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: 950;
  position: relative;
  z-index: 2;
}

.card p{
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 650;
  position: relative;
  z-index: 2;
}

/* ===========================
   TWO COLUMN SECTION
=========================== */
.two-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.box{
  background: linear-gradient(135deg, rgba(30,93,46,0.08), rgba(11,79,138,0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 14px 45px rgba(10, 25, 55, 0.07);
  transition: 0.3s ease;
}

.box:hover{
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(10, 25, 55, 0.12);
}

.box h3{
  font-size: 1.4rem;
  font-weight: 950;
  color: var(--dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.box p{
  color: var(--muted);
  font-weight: 650;
  font-size: 1rem;
}

/* ===========================
   CTA STRIP
=========================== */
.cta-section{
  background: linear-gradient(180deg, #ffffff, #f4fbf7);
}

.cta-strip{
  background: linear-gradient(135deg, rgba(30,93,46,0.16), rgba(11,79,138,0.16));
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius);
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-strip::before{
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30,93,46,0.22), transparent 70%);
  top: -200px;
  left: -200px;
}

.cta-strip::after{
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(11,79,138,0.22), transparent 70%);
  bottom: -220px;
  right: -220px;
}

.cta-text, .cta-buttons{
  position: relative;
  z-index: 2;
}

.cta-strip h3{
  font-size: 1.75rem;
  font-weight: 950;
  color: var(--dark);
  margin-bottom: 10px;
}

.cta-strip p{
  color: var(--muted);
  font-weight: 650;
  max-width: 720px;
}

.cta-buttons{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===========================
   FORMS
=========================== */
form{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

input, textarea{
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  outline: none;
  font-size: 0.95rem;
  background: rgba(245, 247, 252, 0.9);
}

textarea{
  min-height: 140px;
  resize: vertical;
}

input:focus, textarea:focus{
  border-color: rgba(11,79,138,0.6);
  box-shadow: 0 0 0 5px rgba(11,79,138,0.10);
}

/* ===========================
   FOOTER
=========================== */
footer{
  background: #071421;
  color: white;
  padding: 75px 0 25px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 25px;
  margin-bottom: 45px;
}

.footer-logo img{
  height: 65px;
  margin-bottom: 16px;
}

footer p{
  color: rgba(255,255,255,0.72);
  font-weight: 600;
  font-size: 0.95rem;
  max-width: 420px;
}

footer h4{
  font-weight: 950;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.footer-links{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a{
  color: rgba(255,255,255,0.72);
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.footer-links a:hover{
  color: white;
  transform: translateX(3px);
}

.socials{
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials a{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  transition: 0.25s ease;
}

.socials a:hover{
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media(max-width: 1050px){
  .desktop-nav ul{
    gap: 8px;
  }
}

@media(max-width: 980px){
  .desktop-nav{
    display: none;
  }

  .menu-toggle{
    display: block;
  }

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

  .hero h1{
    font-size: 2.7rem;
  }

  .hero-image img{
    height: 430px;
  }

  .hero-stats{
    grid-template-columns: 1fr;
  }

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

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

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

  .cta-strip{
    flex-direction: column;
    align-items: flex-start;
    padding: 35px;
  }
}
 /* begining of mobile logo bid*/
@media(max-width: 520px){

  .navbar{
    padding: 14px 0;
  }

  /* Make logo larger and fully visible */
  .logo img{
    height: 65px;
    max-width: 220px;
    object-fit: contain;
  }

  /* Hide extra buttons to avoid squeezing logo */
  .nav-cta a.btn{
    display: none;
  }

  /* Keep only the hamburger menu */
  .menu-toggle{
    display: block;
    font-size: 1.4rem;
  }

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

  .hero{
    padding: 80px 0 65px;
  }

  .hero h1{
    font-size: 2.25rem;
  }

  .section-title h2{
    font-size: 2rem;
  }

  section{
    padding: 75px 0;
  }
}
 /* end of logo big */

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

  .nav-cta{
    gap: 8px;
  }

  .hero{
    padding: 80px 0 65px;
  }

  .hero h1{
    font-size: 2.25rem;
  }

  .section-title h2{
    font-size: 2rem;
  }

  section{
    padding: 75px 0;
  }
}