/* =========================
   RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Segoe UI", sans-serif;
}

html{
  scroll-behavior:smooth;
}

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

body{
  background:#dff3fb;
  color:#0d4d73;
  overflow-x:hidden;
}

/* =========================
   CONTAINER
========================= */
.container{
  width:100%;
  min-height:100vh;
  padding:30px 20px 60px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* =========================
   NAVBAR
========================= */
.navbar{
  width:100%;
  max-width:1400px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:70px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img{
  width:42px;
  height:42px;
}

.brand h2{
  font-size:30px;
  color:#0a4f77;
}

.contact-btn{
  text-decoration:none;
  color:#0a7bd8;
  font-weight:600;
  transition:0.3s;
}

.contact-btn:hover{
  opacity:0.8;
}

/* =========================
   HERO
========================= */
.hero{
  text-align:center;
  max-width:900px;
  animation:fadeUp 1s ease;
}

.hero h1{
  font-size:clamp(48px,10vw,110px);
  color:#0b8be6;
  font-weight:800;
  margin-bottom:10px;
}

.coming{
  font-size:42px;
  color:#607381;
  margin-bottom:20px;
}

.nepali-text{
  font-size:22px;
  color:#667c8a;
  margin-bottom:50px;
}

.logo-box{
  width:250px;
  height:250px;
  background:#bfe8ff;
  border-radius:50%;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:45px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.logo-box img{
  width:180px;
}

.description{
  font-size:22px;
  line-height:1.7;
  color:#5e6f7c;
  max-width:700px;
  margin:auto;
}

/* =========================
   ABOUT US
========================= */
.about-us{
  width:90%;
  max-width:1200px;
  margin-top:80px;
  padding:clamp(25px,5vw,60px);
  background:rgba(255,255,255,0.35);
  border-radius:35px;
  backdrop-filter:blur(12px);
  animation:fadeUp 1s ease;
}

.about-us h2{
  text-align:center;
  font-size:52px;
  margin-bottom:15px;
  color:#0b2940;
}

.about-text{
  text-align:center;
  max-width:700px;
  margin:auto;
  margin-bottom:50px;
  font-size:20px;
  line-height:1.7;
  color:#60717e;
}

/* =========================
   TEAM
========================= */
.team-container{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.team-card{
  background:rgba(255,255,255,0.55);
  border-radius:28px;
  padding:30px 20px;
  text-align:center;
  transition:0.3s;
}

.team-card:hover{
  transform:translateY(-8px);
}

.team-image{
  width:170px;
  height:170px;
  border-radius:50%;
  overflow:hidden;
  margin:auto;
  margin-bottom:25px;
  background:#c9ebff;
}

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

.team-card h3{
  font-size:28px;
  margin-bottom:10px;
  color:#13364d;
}

.team-card span{
  color:#5e7483;
  font-size:18px;
}

/* =========================
   LEADERSHIP
========================= */
.leadership-section{
  margin-top:70px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.message-card{
  background:rgba(255,255,255,0.6);
  border-radius:28px;
  padding:35px 28px;
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition:0.3s;
}

.message-card:hover{
  transform:translateY(-8px);
}

.message-card h3{
  font-size:26px;
  margin-bottom:18px;
  color:#12334a;
}

.message-card p{
  line-height:1.8;
  color:#5d6f7d;
  font-size:17px;
  margin-bottom:25px;
}

.read-more-btn{
  display:inline-block;
  text-decoration:none;
  background:#0b8be6;
  color:white;
  padding:12px 20px;
  border-radius:12px;
  width:fit-content;
  transition:0.3s;
}

/* =========================
   CONTACT
========================= */
.contact-section{
  width:90%;
  max-width:1100px;
  margin-top:70px;
  background:rgba(255,255,255,0.45);
  backdrop-filter:blur(15px);
  border-radius:30px;
  padding:60px;
  text-align:center;
  animation:fadeUp 1s ease;
}

.contact-section h2{
  font-size:52px;
  margin-bottom:10px;
}

.contact-section p{
  margin-bottom:50px;
  color:#5b7081;
}

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

.contact-card{
  background:#f7f7f7;
  border-radius:22px;
  padding:30px;
  text-align:left;
}

.icon-box{
  width:54px;
  height:54px;
  background:#d7eefb;
  border-radius:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}

.icon-box i{
  color:#0b8be6;
  font-size:22px;
}

.contact-card span{
  font-size:14px;
  color:#66788a;
  font-weight:700;
}

.contact-card h3{
  margin-top:10px;
  font-size:22px;
  color:#1a2a35;
  word-break:break-word;
}

/* =========================
   CONNECT
========================= */
.connect-section{
  width:90%;
  max-width:1100px;
  margin-top:60px;
  background:rgba(255,255,255,0.45);
  backdrop-filter:blur(15px);
  border-radius:30px;
  padding:70px 30px;
  text-align:center;
  animation:fadeUp 1s ease;
}

.connect-section h2{
  font-size:54px;
  margin-bottom:12px;
}

.connect-section p{
  color:#5b7081;
  margin-bottom:40px;
}

.whatsapp-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  background:linear-gradient(to right,#2b8fe7,#12a8f7);
  color:white;
  text-decoration:none;
  padding:18px 35px;
  border-radius:50px;
  font-size:20px;
  font-weight:600;
  transition:0.3s;
}

.social-icons{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:45px;
}

.social-icons a{
  width:60px;
  height:60px;
  border-radius:50%;
  background:white;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#617485;
  font-size:24px;
  transition:0.3s;
}

.social-icons a:hover{
  transform:translateY(-5px);
}

/* =========================
   BUTTON HOVERS
========================= */
.whatsapp-btn:hover,
.back-home-btn:hover,
.read-more-btn:hover{
  transform:translateY(-3px);
  opacity:0.95;
}

/* =========================
   FOOTER
========================= */
footer{
  margin-top:40px;
  color:#607483;
  text-align:center;
}

/* =========================
   ADVANCED MESSAGE PAGES
========================= */
.message-wrapper{
  width:100%;
  min-height:100vh;
  padding:60px 20px;
  background:#dff3fb;
  display:flex;
  justify-content:center;
  align-items:center;
}

.message-container{
  width:100%;
  max-width:1300px;
  background:rgba(255,255,255,0.65);
  backdrop-filter:blur(18px);
  border-radius:40px;
  overflow:hidden;
  display:grid;
  grid-template-columns:380px 1fr;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

/* LEFT SIDE */
.profile-side{
  background:linear-gradient(to bottom,#9ad9ff,#dff3fb);
  padding:50px 30px;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

.profile-image{
  width:240px;
  height:240px;
  border-radius:50%;
  overflow:hidden;
  margin-bottom:30px;
  border:8px solid rgba(255,255,255,0.6);
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

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

.profile-side h2{
  font-size:34px;
  color:#12334a;
  margin-bottom:10px;
}

.profile-side span{
  color:#4f6b7d;
  font-size:18px;
  margin-bottom:35px;
}

.social-links{
  display:flex;
  gap:18px;
}

.social-links a{
  width:50px;
  height:50px;
  border-radius:50%;
  background:white;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#0b8be6;
  font-size:20px;
  transition:0.3s;
}

.social-links a:hover{
  transform:translateY(-5px);
}

/* RIGHT SIDE */
.content-side{
  padding:70px 70px 60px;
}

.top-badge{
  display:inline-block;
  background:#d9efff;
  color:#0b8be6;
  padding:10px 18px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  margin-bottom:25px;
}

.content-side h1{
  font-size:64px;
  color:#0f2f45;
  margin-bottom:30px;
  line-height:1.1;
}

.quote-icon{
  width:70px;
  height:70px;
  border-radius:20px;
  background:#e8f5ff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:35px;
}

.quote-icon i{
  color:#0b8be6;
  font-size:30px;
}

.content-side p{
  font-size:22px;
  line-height:2;
  color:#587082;
  margin-bottom:25px;
}

.signature{
  margin-top:40px;
  font-size:24px;
  font-weight:700;
  color:#0b8be6;
}

.back-home-btn{
  margin-top:50px;
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  background:linear-gradient(to right,#1593eb,#0b8be6);
  color:white;
  padding:16px 28px;
  border-radius:16px;
  font-size:18px;
  font-weight:600;
  transition:0.3s;
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:1000px){

  .message-container{
    grid-template-columns:1fr;
  }

  .content-side{
    padding:50px 30px;
  }

  .content-side h1{
    font-size:48px;
  }

  .content-side p{
    font-size:18px;
  }
}

@media(max-width:900px){

  .hero h1{
    font-size:70px;
  }

  .team-container,
  .leadership-section,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-section,
  .connect-section,
  .about-us{
    padding:40px 25px;
  }
}

@media(max-width:600px){

  .navbar{
    flex-direction:column;
    gap:20px;
  }

  .brand h2{
    font-size:24px;
  }

  .contact-btn{
    font-size:14px;
  }

  .hero h1{
    font-size:52px;
  }

  .coming{
    font-size:30px;
  }

  .description{
    font-size:18px;
  }

  .profile-image{
    width:180px;
    height:180px;
  }

  .profile-side h2{
    font-size:28px;
  }

  .content-side h1{
    font-size:38px;
  }

  .content-side p{
    font-size:17px;
    line-height:1.8;
  }

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