:root{
  --bg:#fbfddc;
  --orange:#026749;
  --blue:#0b5aa2;
}


*{margin:0;padding:0;box-sizing:border-box}
body{font-family:Segoe UI,Arial,sans-serif;background:var(--bg)}

/* ================= HEADER ================= */
.header{
  background:#fff;
  text-align:center;
  padding:10px;
  box-shadow:0 2px 6px rgba(0,0,0,.1);

  position: sticky;   /* ✅ change */
  top: 0;             /* ✅ required */
  z-index:1000;       /* header above hero */
}

/* MOBILE VIEW */
@media (max-width:768px){
  .header{
    text-align:left;
  }
}

.logo{width:70px}
.tagline{color:var(--orange);font-size:13px}

/* NAV */
.nav{
  display:flex;
  justify-content:center;
  align-items: center;
  gap:36px;
  margin-top:1px;
  font-weight:600;
}

.nav-item{position:relative}
.nav a{text-decoration:none;color:#000;padding:8px 4px}

/* DROPDOWN */
.submenu{
  position:absolute;
  top:130%;
  left:50%;
  border-left: 5px solid green;
  transform:translateX(-50%) translateY(12px) rotateX(8deg);
  background:#fff;
  min-width:220px;
  list-style:none;
  border-radius:8px;
  box-shadow:0 25px 60px rgba(0,0,0,.15);
  opacity:0;
  visibility:hidden;
  transition:.4s cubic-bezier(.2,.9,.3,1);
  padding:10px 0;
  z-index:2000; /* 🔥 FIX: submenu always on top */
}

.nav-item:hover .submenu,
.nav-item.open .submenu{
  opacity:1;
  visibility:visible;
  transform:translateX(-50%) translateY(0) rotateX(0);
}

.submenu li a{
  display:block;
  padding:12px 20px;
  font-size:14px;
  transition:.3s;
}
.submenu li a:hover{
  background:#f9fbd9;
  color:var(--orange);
  padding-left:26px;
}

/* arrow rotation */
.arrow{
  transition:transform .3s ease;
}

.nav-item.open .arrow{
  transform:rotate(180deg);
}

/* MOBILE submenu animation (better UX) */
@media (max-width:768px){

  .submenu{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease, padding .3s ease;
    padding:0 0;
  }

  .nav-item.open .submenu{
    max-height:260px;
    padding:6px 0;
  }

  .submenu li a{
    padding:12px 28px;
    font-size:14px;
  }
}



/* ================= HAMBURGER ================= */
.menu-toggle{
  display:none;
  position:absolute;
  right:18px;
  background:none;
  border:none;
  cursor:pointer;
  top: 75px;
}

.menu-toggle span{
  display:block;
  width:24px;
  height:2px;
  background:#000;
  margin:5px 0;
  transition:.35s ease;
}

/* hamburger → cross */
.menu-toggle.active span:nth-child(1){
  transform:rotate(45deg) translate(6px,6px);
}
.menu-toggle.active span:nth-child(2){
  opacity:0;
}
.menu-toggle.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

/* arrow */
.arrow{
  font-size:12px;
  transition:.3s;
}
.nav-item.open .arrow{
  transform:rotate(180deg);
}

/* ================= MOBILE ================= */
@media (max-width:768px){

  /* ===== HEADER ===== */
  .header-top{
    justify-content:flex-start;
  }

  .brand-text{
    text-align:left;
  }

  .menu-toggle{
    display:block;
    margin-left:auto;
    font-size:22px;
    cursor:pointer;
  }

  /* ===== MAIN MOBILE NAV ===== */
  .nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    display:flex;
    flex-direction:column;
    gap:0;
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    z-index:999;
  }

  .nav.open{
    max-height:100vh;
  }

  /* ===== NAV ITEM ===== */
  .nav-item{
    display:flex;
    flex-direction:column;
    border-top:1px solid #eee;
  }

  /* ===== MAIN MENU LINKS ===== */
  .nav a{
    padding:14px 18px;
    display:flex;
    justify-content:flex-start; /* ✅ FIXED (no center) */
    align-items:center;
    width:100%;
    font-size:16px;
    font-weight:600;
    color:#000;
    text-decoration:none;
  }

  /* ===== LINK + ARROW WRAPPER ===== */
  .nav-link{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
  }

  /* ===== SUBMENU ===== */
  .submenu{
    position:relative;
    display:block;
    background:#f8fafc;
    transform:none;
    box-shadow:none;
    opacity:1;
    visibility:visible;
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
    padding:0;
    border-left:3px solid #026749;
  }

  .nav-item.open .submenu{
    max-height:500px;
  }

  .submenu li{
    border-top:1px solid #e5e7eb;
  }

  .submenu li a{
    padding:14px 20px 14px 40px;
    font-size:14px;
    font-weight:500;
    color:#333;
  }

  /* ===== SUBMENU TOGGLE BUTTON ===== */
  .submenu-toggle{
    background:none;
    border:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    padding:4px 6px;
    text-decoration: none;
  }

  .submenu-toggle .arrow{
    font-size:14px;
    transition:transform .3s ease;
  }

  .nav-item.open .arrow{
    transform:rotate(180deg);
  }

}



@media (max-width: 768px) {
    .nav-link {
        margin-left: 70px;
    }
}



/* ================= HERO ================= */
.banner{
  padding:45px 0;
  position:relative;
  z-index:1; /* 🔥 FIX: hero below header */
}

.banner-inner{
  max-width:1450px;
  /* margin:auto; */
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
}
.hero-text::after {
  content: "|";
  margin-left: 4px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}


.side-col{
  display:flex;
  flex-direction:column;
  gap:26px;
}

/* SIDE IMAGES */
.thumb{
  width:270px;
  height:220px;
  background:#fff;
  padding:12px;
  position:relative;
}
/* Mobile */
@media (max-width: 768px){
  .thumb{
    width:176px;
    height:176px; /* keep square – optional but recommended */
    padding:10px; /* optional tweak */
  }
}

.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s;
}
.thumb:hover img{transform:scale(1.05)}

.thumb::before,.thumb::after{
  content:"";
  position:absolute;
  width:45px;height:45px;
}
.thumb::before{
  top:-8px;left:-8px;
  border-left:6px solid var(--blue);
  border-top:6px solid var(--blue);
}
.thumb::after{
  bottom:-8px;right:-8px;
  border-right:6px solid var(--orange);
  border-bottom:6px solid var(--orange);
}

/* CENTER IMAGE */
.hero-main{
  width:790px;
  padding:16px;
  background:#fff;
  position:relative;
  z-index:1; /* 🔥 FIX: do not overlap dropdown */
  animation:floatY 6s ease-in-out infinite;
}

.hero-main img{width:100%}

.hero-main::before,.hero-main::after{
  content:"";
  position:absolute;
  width:65px;height:65px;
}
.hero-main::before{
  top:-12px;left:-12px;
  border-left:8px solid var(--blue);
  border-top:8px solid var(--blue);
}
.hero-main::after{
  bottom:-12px;right:-12px;
  border-right:8px solid var(--orange);
  border-bottom:8px solid var(--orange);
}

.hero-text{
  position:absolute;
  top:25px;
  left:25px;
  right:25px;
  background:rgba(0,0,0,.55);
  color:#fff;
  padding:18px;
}

/* ANIMATION */
@keyframes floatY{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

/* MOBILE */
@media(max-width:900px){
  .banner-inner{flex-direction:column}
  .side-col{flex-direction:row}
  .hero-main{width:92%}
}







/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section{
  /* padding:80px 0; */
  background:#f9fbe6;
}

.why-choose-section .container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

.info-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.info-card{
  background:#fff;
  border-radius:18px;
  padding:40px 38px;
  box-shadow:0 25px 60px rgba(0,0,0,.08);
  position:relative;
  overflow:hidden;
}

/* soft background pattern feel */
.info-card::after{
  content:"";
  position:absolute;
  right:-40px;
  bottom:-40px;
  width:240px;
  height:240px;
  background:radial-gradient(circle, rgba(0,0,0,.04), transparent 70%);
}

/* Heading */
.info-card h2{
  font-size:26px;
  margin-bottom:26px;
  color:#222;
}

/* List */
.info-card ul{
  list-style:none;
}

.info-card li{
  position:relative;
  padding-left:36px;
  margin-bottom:18px;
  font-size:15.5px;
  line-height:1.6;
  color:#555;
}

/* Check icon */
.info-card li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:2px;
  font-size:16px;
  color:#0b5aa2;
  font-weight:700;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .info-grid{
    grid-template-columns:1fr;
  }
  .info-card{
    padding:32px 26px;
  }
}

@media(max-width:480px){
  .info-card h2{
    font-size:22px;
  }
  .info-card li{
    font-size:14px;
  }
}







/* ===== ADVANCED ABOUT SECTION ===== */
.about-advanced{
  background:linear-gradient(135deg,#FBFDDC);
  padding:100px 20px;
}

.about-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:center;
}

/* LEFT */
.about-tag{
  color:#026749;
  font-weight:700;
  letter-spacing:1px;
  font-size:13px;
}

.about-content h2{
  font-size:42px;
  margin:12px 0 20px;
  line-height:1.2;
}
.about-content h2 span{
  color:#026749;
}

.about-content p{
  color:#555;
  line-height:1.8;
  font-size:16px;
  margin-bottom:16px;
}

.about-btn{
  display:inline-block;
  margin-top:18px;
  padding:14px 30px;
  background:#0B5AA2;
  color:#fff;
  text-decoration:none;
  border-radius:30px;
  font-weight:600;
  transition:.3s;
}
.about-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(86, 78, 233, 0.35);
}

/* RIGHT VISUAL */
.about-visual{
  position:relative;
  display:grid;
  gap:20px;
}

.stat-card{
  background:rgba(255,255,255,.8);
  backdrop-filter:blur(10px);
  padding:28px;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
  text-align:center;
  transition:.4s;
}
.stat-card:hover{
  transform:translateY(-8px);
}

.stat-card h3{
  font-size:36px;
  color:#0b5aa2;
}
.stat-card span{
  display:block;
  margin-top:6px;
  font-size:14px;
  color:#666;
}

/* ===== ANIMATION ===== */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:1s cubic-bezier(.2,.8,.2,1);
}
.reveal.active{
  opacity:1;
  transform:none;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
  .about-wrapper{
    grid-template-columns:1fr;
    gap:40px;
  }
  .about-content h2{
    font-size:32px;
  }
}

@media(max-width:480px){
  .about-content h2{
    font-size:26px;
  }
  .stat-card h3{
    font-size:28px;
  }
}






/* footercss */

:root{
  --bg-dark:#090909;
  --card:#0f0f10;
  --accent:#00346E;
  --text:#d1d5db;
}

.footer-modern{
  background:
    radial-gradient(circle at top left,#ff6a0020,transparent 40%),
    radial-gradient(circle at bottom right,#0b5aa220,transparent 40%),
    var(--bg-dark);
  color:#fff;
  padding-top:90px;
  font-family:Inter,Segoe UI,Arial,sans-serif;
}

.footer-wrap{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1.3fr;
  gap:50px;
}

/* BRAND */
.footer-brand h2{
  font-size:32px;
  font-weight:700;
}
.footer-brand h2 span{
  color:var(--accent);
}
.footer-brand p{
  color:var(--text);
  margin:18px 0 24px;
  line-height:1.7;
}
.footer-social{
  display:flex;
  flex-direction:row;      /* always horizontal */
  flex-wrap:nowrap;        /* no wrap in mobile */
  justify-content:flex-start;
  align-items:center;
  gap:12px;
}
.footer-social a{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#222;
  color:#fff;
  font-size:16px;
  transition:0.3s;
  text-decoration:none;
}
.footer-social a:hover{
  opacity:1;
  background-color:var(--accent);
  color:#faf6f6;
}

/* LINKS */
.footer-title{
  font-size:15px;
  margin-bottom:18px;
  letter-spacing:.5px;
  position:relative;
}
.footer-title::after{
  content:"";
  width:26px;
  height:2px;
  background:var(--accent);
  display:block;
  margin-top:8px;
}

.footer-links ul{
  list-style:none;
  padding:0;
}
.footer-links li{
  margin-bottom:12px;
}
.footer-links a{
  text-decoration:none;
  color:var(--text);
  transition:.3s;
}
.footer-links a:hover{
  color:#fff;
  transform:translateX(4px);
}

/* NEWSLETTER */
.footer-newsletter p{
  color:var(--text);
  margin-bottom:16px;
}

.footer-newsletter form{
  display:flex;
  background:var(--card);
  border-radius:50px;
  padding:6px;
  max-width:320px;
}

.footer-newsletter input{
  flex:1;
  background:none;
  border:none;
  color:#fff;
  padding:12px 16px;
  outline:none;
}

.footer-newsletter button{
  background:var(--accent);
  border:none;
  width:46px;
  height:46px;
  border-radius:50%;
  color:#fff;
  cursor:pointer;
  font-size:18px;
  transition:.3s;
}
.footer-newsletter button:hover{
  transform:rotate(45deg);
}

.newsletter-msg{
  display:block;
  margin-top:10px;
  font-size:13px;
}

/* BOTTOM */
.footer-bottom{
  margin-top:70px;
  padding:26px 20px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:1200px;
  margin-inline:auto;
  color:var(--text);
}
.footer-bottom a{
  color:var(--text);
  text-decoration:none;
  margin-left:16px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .footer-wrap{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .footer-wrap{
    grid-template-columns:1fr;
    gap:40px;
  }
  .footer-bottom{
    flex-direction:column;
    gap:14px;
    text-align:center;
  }
}




