/* ================= DESIGN SYSTEM ================= */
:root{
  --green:#C6F68D;
  --dark:#0f172a;
  --soft:#f7faf8;
  --text:#1e293b;
  --muted:#64748b;
  --radius:18px;
  --shadow:0 20px 50px rgba(0,0,0,.08);
}

/* ================= RESET ================= */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Poppins',sans-serif;
  color:var(--text);
  line-height:1.8;
}
img{width:100%;display:block}
a{text-decoration:none;color:inherit}

/* ================= UTILITIES ================= */
.container{max-width:76%;margin:auto;padding:0 20px}
.section{padding:100px 0}
.bg-soft{background:var(--soft)}
.bg-green{background:#FFF6E5;}
.text-center{text-align:center}
.btn{
  padding:14px 36px;
  background:var(--green);
  border-radius:999px;
  font-weight:600;
  display:inline-block;
}
.reveal{opacity:0;transform:translateY(40px);transition:.8s}
.reveal.active{opacity:1;transform:none}

/* ================= HEADER ================= */
header{
  position:sticky;top:0;z-index:999;
  background:#fff;border-bottom:1px solid #eee;
}
.header-wrap{
  display:flex;justify-content:space-between;align-items:center;
  padding:18px 30px;
}
.brand h1{font-size:1.4rem}
.brand p{font-size:.8rem;color:var(--muted)}
/* Desktop Nav */
.nav-desktop a {
  position: relative;
  margin-left: 22px;
  font-weight: 500;
  line-height: 40px;
  color: #111;
  text-decoration: none;
}

/* Underline effect */
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #123f6d;
  transition: width 0.3s ease;
}

/* Hover */
.nav-desktop a:hover {
  color: #123f6d;
}

.nav-desktop a:hover::after {
  width: 100%;
}

/* Hamburger */
.menu-btn {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Drawer */
.drawer {
  position: fixed;
  top: 0;
  right: -344px;
  width: 337px;
  height: 100vh;
  background: #0f172a;
  padding: 70px 30px;
  transition: right 0.35s ease;
  z-index: 1000;
}

.drawer.show {
  right: 0;
}

.drawer a {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 22px;
  font-weight: 500;
}

/* Close Button */
.drawer-close {
  position: absolute;
  top: 18px;
  right: 44px;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }
  .menu-btn {
    display: block;
  }
}

/* ================= HERO ================= */
.hero{
  min-height:100vh;
  display:flex;align-items:center;
  background:linear-gradient(90deg,#fff 60%,var(--green) 40%);
}
.hero h2{font-size:3rem}
.hero p{font-size:1.3rem;margin:20px 0}

/* ================= STATS ================= */
.stats{
  display:grid;grid-template-columns:repeat(3,1fr);gap:30px;
}
.stat{
  background:#fff;padding:40px;border-radius:var(--radius);
  box-shadow:var(--shadow);text-align:center;
}
.stat h3{font-size:2rem}

/* ================= CARDS ================= */
.card{
  background:#fff;padding:45px;border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* ================= GRID ================= */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:50px}

/* ================= LIST ================= */
ul{list-style:none}
ul li{margin-bottom:12px;padding-left:22px;position:relative}
ul li::before{content:"✔";position:absolute;left:0}

/* ================= FOOTER ================= */
footer{
  background:var(--dark);color:#fff;
  padding:30px;text-align:center;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .grid-2,.stats{grid-template-columns:1fr}
  .hero h2{font-size:2.3rem}
  nav{display:none}
}
.brand {width: 14%;}
.brand img{width: 100%;}
.hero-slider{
  position:relative;
  height:80vh;
  overflow:hidden;
}

.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease;
}

.slide::before{
  content:"";
  position:absolute;
  inset:0;
  
}

.slide.active{opacity:1}

/* Caption Container */
.hero-caption{
  position:absolute;
  z-index:2;
  max-width:650px;
  padding:40px 50px;
  /*! backdrop-filter: blur(6px); */
  border-radius:24px;
  text-align:left;
  animation: captionIn .9s ease;
  top: 33%;
  left: 12%;
}

/* Center Caption */
.hero-caption.center{
  top:40%;
  left:50%;
  transform:translate(-20%,-50%);
}

/* Bottom Caption */
.hero-caption.bottom{
  left:50%;
  bottom:60px;
  transform:translateX(-50%);
}

.hero-caption h2{
  font-size:3rem;
  line-height:1.2;
  color: #123f6d;
}

.hero-caption p{
  font-size:1.2rem;
  margin-top:14px;
  color: #000;
}

/* Decorative Line */
.caption-line{
  display:block;
  width:80px;
  height:4px;
  background:#123f6d;
  margin:16px 0;
  border-radius:10px;
}

/* Arrows */
.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:32px;
  color:#fff;
  background:rgba(0,0,0,.45);
  border:none;
  width:46px;
  height:46px;
  cursor:pointer;
  z-index:3;
}
.prev{left:20px}
.next{right:20px}

/* Dots */
.dots{
  position:absolute;
  bottom:24px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:3;
}
.dots span{
  width:12px;height:12px;
  border-radius:50%;
  background:#bbb;
  cursor:pointer;
}
.dots span.active{background:#0f172a}

/* Caption Animation */
@keyframes captionIn{
  from{opacity:0;transform:translate(-50%,-40%)}
  to{opacity:1}
}

/* Responsive */
@media(max-width:768px){
  .hero-caption{
    padding:28px;
    max-width:90%;
  }
  .hero-caption {
  position: absolute;
  z-index: 2;
  max-width: 650px;
  padding: 40px 50px;
  /*! backdrop-filter: blur(6px); */
  border-radius: 24px;
  text-align: left;
  animation: captionIn .9s ease;
  top: 10% !important;
  left: 12%;
}
  .hero-caption h2{font-size:2.1rem}
}
/* ABOUT SECTION */
.about-wrap{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:60px;
  align-items:center;
}

/* IMAGE */
.about-media{
  position:relative;
}

.about-media img{
  border-radius:24px;
  /*! box-shadow:var(--shadow); */
  filter:grayscale(20%);
}

/* Floating Badge */
.about-badge{
  position:absolute;
  bottom:-20px;
  left:20px;
  background:var(--green);
  padding:14px 22px;
  border-radius:999px;
  font-weight:600;
  box-shadow:var(--shadow);
}

/* CONTENT */
.about-content h2{
  font-size:2.6rem;
  line-height:1.2;
  margin-bottom:20px;
  color: #123f6d;
}

.about-label{
  display:inline-block;
  margin-bottom:12px;
  letter-spacing:2px;
  font-weight:600;
  color:#3b3b3b;
}

.about-content p{
  margin-bottom:18px;
  color:var(--text);
}

/* STATS */
.about-stats{
  margin-top:30px;
  display:flex;
  gap:40px;
}

.about-stats h3{
  font-size:1.8rem;
  color: #e3a61d;
}

.about-stats span{
  font-size:.9rem;
  color:#123f6d;
  font-weight: bold;
}

/* RESPONSIVE */
@media(max-width:900px){
  .about-wrap{
    grid-template-columns:1fr;
  }
  .about-media{
    order:2;
  }
  .about-content h2{
    font-size:2.1rem;
  }
  .about-stats{
    flex-direction:column;
    gap:18px;
  }
}
/* SECTION HEADING */
.section-heading {
  max-width: 720px;
  margin: 0 auto 70px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--muted);
}

.section-heading h2 {
  font-size: 2.8rem;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* 3 GRID LAYOUT */
.vm-3grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

/* IMAGE BLOCK */
.vm-image {
  position: relative;
}

.vm-image img {
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
  filter: grayscale(15%);
}

.vm-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #FFF6E5;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

/* CARDS */
.vm-card {
  background: #fff;
  padding: 42px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.vm-card:hover {
  transform: translateY(-6px);
}

.vm-icon {
  font-size: 38px;
  margin-bottom: 14px;
}

.vm-card h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: #123f6d;
}

/* LIST */
.vm-card ul {
  list-style: none;
  margin-top: 10px;
}

.vm-card ul li {
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
}

.vm-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
}

/* ACCENTS */
.vision-card {
  border-top: 6px solid #F5C851;
}

.mission-card {
  border-top: 6px solid #f5c851;
}
/* SECTION HEADING */
.section-heading {
  max-width: 720px;
  margin: 0 auto 70px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--dark);
}

.section-heading h2 {
  font-size: 2.8rem;
  margin-bottom: 14px;
  color: #123f6d;
}

.section-heading p {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* GRID */
.work-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.work-image img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* CARDS */
.work-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.work-card {
  background: rgba(255,255,255,0.9);
  padding: 32px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

.work-card:hover {
  transform: translateY(-6px);
}

/* ICON */
.work-icon {
  font-size: 34px;
  display: inline-block;
  margin-bottom: 12px;
}

/* CARD TEXT */
.work-card h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

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

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

  .section-heading h2 {
    font-size: 2.3rem;
  }
}
/* GRID */
.selection-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.selection-image {
  position: relative;
}

.selection-image img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* BADGE */
.selection-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--green);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

/* CONTENT */
.selection-intro {
  font-size: 1.15rem;
  margin-bottom: 30px;
}

/* STEPS */
.selection-steps {
  display: grid;
  gap: 20px;
}

.step {
  display: flex;
  gap: 18px;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
}

.step-num {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--dark);
  min-width: 40px;
}

/* ETHICS LINE */
.selection-highlight {
  margin-top: 30px;
  padding: 16px 22px;
  background: rgba(255,255,255,0.7);
  border-left: 5px solid var(--dark);
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

  .selection-image {
    order: 2;
  }

  .selection-highlight {
    text-align: center;
  }
}
/* FOUNDER GRID */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.founder-image img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
  filter: grayscale(10%);
}

/* QUOTE */
.founder-quote blockquote {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
  position: relative;
  margin-bottom: 24px;
}

.founder-quote blockquote::before {
  content: "“";
  font-size: 4rem;
  position: absolute;
  left: -20px;
  top: -10px;
  color: var(--green);
}

/* TEXT */
.founder-quote p {
  font-size: 1.05rem;
  margin-bottom: 26px;
}

/* NAME */
.founder-name {
  font-weight: 700;
}

.founder-name span {
  display: block;
  font-weight: 400;
  color: var(--muted);
}

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

  .founder-image {
    max-width: 360px;
    margin: 0 auto;
  }

  .founder-quote blockquote {
    font-size: 1.35rem;
    text-align: center;
  }

  .founder-quote {
    text-align: center;
  }
}
/* GRID */
.gov-grid{
  display:grid;
  grid-template-columns:1.1fr 1.3fr;
  gap:60px;
  align-items:center;
}

/* IMAGE */
.gov-image{
  position:relative;
}
.gov-image img{
  border-radius:28px;
  box-shadow:var(--shadow);
  object-fit:cover;
}

/* BADGE */
.gov-badge{
  position:absolute;
  bottom:20px;
  left:20px;
  background:var(--green);
  padding:12px 22px;
  border-radius:999px;
  font-weight:600;
  box-shadow:var(--shadow);
}

/* CONTENT */
.gov-intro{
  font-size:1.15rem;
  margin-bottom:28px;
}

/* CARDS */
.gov-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.gov-card{
  background:#fff;
  padding:28px;
  border-radius:20px;
  box-shadow:var(--shadow);
  transition:.3s ease;
}
.gov-card:hover{
  transform:translateY(-5px);
}

/* ICON */
.gov-icon{
  font-size:30px;
  display:inline-block;
  margin-bottom:10px;
}

/* RESPONSIVE */
@media (max-width: 992px){
  .gov-grid{
    grid-template-columns:1fr;
  }
  .gov-cards{
    grid-template-columns:1fr;
  }
}
/* GRID */
.timeline-grid{
  display:grid;
  grid-template-columns:1.1fr 1.3fr;
  gap:60px;
  align-items:center;
}

/* IMAGE */
.timeline-image{
  position:relative;
}
.timeline-image img{
  border-radius:28px;
  box-shadow:var(--shadow);
  object-fit:cover;
}

/* BADGE */
.timeline-badge{
  position:absolute;
  bottom:20px;
  left:20px;
  background:var(--green);
  padding:12px 22px;
  border-radius:999px;
  font-weight:600;
  box-shadow:var(--shadow);
}

/* CONTENT */
.timeline-intro{
  font-size:1.15rem;
  margin-bottom:30px;
}

/* STEPS */
.timeline-steps{
  position:relative;
  padding-left:20px;
  display:grid;
  gap:26px;
}

.timeline-steps::before{
  content:"";
  position:absolute;
  left:6px;
  top:0;
  bottom:0;
  width:2px;
  background:rgba(0,0,0,0.15);
}

.timeline-step{
  display:flex;
  gap:20px;
  position:relative;
}

.timeline-dot{
  width:14px;
  height:14px;
  background:var(--dark);
  border-radius:50%;
  margin-top:6px;
  flex-shrink:0;
}

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

  .timeline-image{
    order:2;
  }

  .timeline-steps::before{
    left:7px;
  }
}
/* CONTACT GRID */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr 1fr;
  gap:40px;
  align-items:stretch;
}

/* CARDS */
.contact-card{
  background:rgba(255,255,255,0.95);
  padding:36px;
  border-radius:26px;
  box-shadow:var(--shadow);
}

.contact-card h4{
  font-size:1.4rem;
  margin-bottom:16px;
}

/* INFO */
.contact-info{
  margin-top:20px;
  font-size:0.95rem;
}

/* MAP */
.contact-map iframe{
  width:100%;
  height:100%;
  min-height:320px;
  border:0;
  border-radius:26px;
  box-shadow:var(--shadow);
}

/* FORM */
.contact-form{
  display:grid;
  gap:14px;
}

.contact-form input,
.contact-form textarea{
  padding:14px;
  border-radius:12px;
  border:1px solid #ddd;
  font-family:inherit;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:#111;
}

/* RESPONSIVE */
@media(max-width:767px){
  .contact-grid{
    grid-template-columns:1fr;
  }
.brand {
  width: 46% !important;
}
  .contact-map iframe{
    min-height:280px;
  }
  .vm-3grid {
  display: grid;
  grid-template-columns: auto !important;
  gap: 40px;
  align-items: stretch;
}
  .hero-slider {
    position: relative;
    height: 64vh !important;
    overflow: hidden;
  }
.container {
  max-width: 100% !important;
  margin: auto;
  padding: 0 20px;
}
.section {
  padding: 52px 0 !important;
}
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #eee;
  height: 66px !important;
  padding-top: 9px;
}
}
.founder-name2 {
  font-weight: lighter;
}
.contact-info {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info a {
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

.contact-info a:hover {
  color: #123f6d;
  text-decoration: underline;
}
@media (max-width: 768px) {

  .hero-slider {
    height: auto;
  }

    .slides {
    position: relative;
    height: 30vh !important;
  }

   .hero-caption {
    position: relative;
    max-width: 95%;
    margin: -39px -77px 10px -35px;
    padding: 0px;
    background: #ffffff;
    backdrop-filter: none;
    border-radius: 20px;
    text-align: center;
  }

  .hero-caption.center {
    top: auto;
    left: auto;
    transform: none;
  }

  .hero-caption h2 {
    font-size: 1.8rem;
  }

  .hero-caption p {
    font-size: 1rem;
  }

  .caption-line {
    margin: 12px auto;
  }

  /* Hide arrows on mobile (optional but recommended) */
  .arrow {
    display: none;
  }
  .slide {
  position: absolute;
  inset: 0;
  background-size: 192% !important;
  background-position: -290px !important;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;

}
.hero-caption {
  
  animation: none !important;
 
}
}.footer-social {
  margin-top: 20px;
  display: flex;
  justify-content: left;
  gap: 18px;
}

.footer-social a {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-white);
  font-size: 18px;
  transition: 0.3s ease;
}

/* Hover brand behavior */
.footer-social a:hover {
  transform: translateY(-4px);
}

/* Individual brand colors on hover */
.footer-social a.ig {
  background: var(--instagram);
}

.footer-social a.fb {
  background: var(--facebook);
}

.footer-social a.x {
  background: var(--twitter);
}
.footer-social a.yt {
  background: var(--youtube);
}
:root {
  --brand-primary: #123f6d;   /* Main brand blue */
  --brand-accent: #C6F68D;    /* Soft green */
  --brand-dark: #0f172a;
  --brand-white: #ffffff;
   --youtube: #FF0000;

  --instagram: #E1306C;
  --facebook: #1877F2;
  --twitter: #000000; /* X */
  --whatsapp: #25D366;
}
