html, body {
  overflow-x: hidden;
}

/* RESET */
*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif;}
body{background:#0f172a;color:#fff;}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

/* 🔥 NAVBAR SCROLL EFFECT */
.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: 0.3s;
}

/* 🔥 HIDE/SHOW NAVBAR */
.navbar.hide {
  transform: translateY(-100%);
  transition: 0.3s;
}

/* 🔥 LOGO GLOW */
.logo {
  position: relative;
  transition: 0.3s;
}

.logo:hover {
  color: #60a5fa;
  text-shadow: 0 0 10px rgba(59,130,246,0.7);
}

.logo img {
  height: 45px;   /* adjust size */
  width: auto;
  object-fit: contain;
  cursor: pointer;
  transition: 0.3s;
}

/* 🔥 Hover effect */
.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(59,130,246,0.6));
}

/* 🔥 NAV LINK UNDERLINE ANIMATION */
.nav-links a {
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #3b82f6;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* 🔥 MOBILE MENU ANIMATION */
.nav-links {
  transition: all 0.4s ease;
}

.logo {
  font-size: 22px;
  font-weight: 600;
  color: #3b82f6;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #3b82f6;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}
/* HERO */
.hero{
height:90vh;
background:url('../asset/image/about bg.png') center/cover;
display:flex;align-items:center;padding:8%;
position:relative;
}

.hero::after{
content:"";position:absolute;width:100%;height:100%;
background:rgba(0,0,0,0.6);top:0;left:0;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:600px;
  animation:fadeUp 1s;
  padding-top: 20%;
}

.hero h1{font-size:48px;}

.hero span{color:#3b82f6;}

.hero p{margin:15px 0;color:#ccc;}

.hero button{
padding:12px 20px;
margin-right:10px;
border: 1px solid #fff;
cursor:pointer;
border-radius: 35px;
}

.primary{background:#3b82f6;color:#fff;}

.secondary{background:transparent;border:1px solid #fff;color:#fff;}

/* ============ mobile view fix ============ */
@media(max-width:768px){

  .menu-toggle{
    display:block;
    color:#fff;
    z-index:1100;
  }

  .nav-links{
    position:absolute;
    top:70px;
    right:-100%;
    flex-direction:column;
    background:#020617;
    width:100%;
    text-align:center;
    padding:20px 0;
    transition:0.4s;
  }

  .nav-links.active{
    right:0;
  }

}

/* ABOUT */
/* ===== ABOUT SECTION UPGRADE ===== */

.about {
  padding: 50px 8%;
  background: #020617;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT IMAGE CARD */
.about-left {
  position: relative;
  flex: 1;
  background: #020617;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.about-left img {
  width: 100%;
  border-radius: 15px;
}

/* EXPERIENCE BOX (GLASS EFFECT) */
.experience-box {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(12px);
  padding: 20px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.experience-box h3 {
  color: #3b82f6;
  font-size: 26px;
}

.experience-box p {
  font-size: 12px;
  color: #ccc;
}

/* RIGHT CONTENT */
.about-right {
  flex: 1;
}

.about-right h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* BLUE LINE */
.about-right .line {
  width: 50px;
  height: 3px;
  background: #3b82f6;
  margin: 15px 0;
}

.about-right p {
  color: #aaa;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
}

/* STATS */
.stats {
  display: flex;
  gap: 60px;
  margin-top: 25px;
}

.stats h3 {
  color: #fff;
  font-size: 22px;
}

.stats span {
  font-size: 12px;
  color: #888;
}

/* RESPONSIVE */
@media(max-width:600px){
  .about-container {
    flex-direction: column;
    gap: 25px;
  }

  .stats {
    justify-content: space-between;
    gap: 20px;
  }

  .about-right h2 {
    font-size: 26px;
  }

  .about-left img{
    height: 300px;   /* increase height */
    object-fit: cover;
  }

}

/* CARDS */
/* ===== MISSION & VISION SECTION ===== */

.mission {
  padding: 80px 8%;
  display: flex;
  gap: 30px;
}

/* CARD DESIGN */
.mission-card {
  flex: 1;
  background: #0b1a3a;
  padding: 35px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;

  /* glow border */
  border: 1px solid rgba(59,130,246,0.2);

  /* animation */
  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s ease;
}

/* 🔥 HOVER EFFECT */
.mission-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 40px rgba(59,130,246,0.3);
}

/* ICON */
.mission-card .icon {
  width: 45px;
  height: 45px;
  background: rgba(59,130,246,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #3b82f6;
  font-size: 20px;
  margin-bottom: 15px;
}

/* TITLE */
.mission-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

/* TEXT */
.mission-card p {
  color: #aab;
  line-height: 1.6;
  font-size: 14px;
}

/* 🔥 TOP GRADIENT LINE EFFECT */
.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #3b82f6, transparent);
}

/* RESPONSIVE */
@media(max-width:600px){
  .mission {
    flex-direction: column;
  }
}

/* ===== CORE VALUES ===== */
/* TEXT */
.section-tag {
  color: #3b82f6; 
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #9ca3af;
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto 60px;
}

.values {
  padding: 100px 8%;
  background: linear-gradient(to bottom, #020617, #0f172a);
}

/* HEADER */
.values-header {
  text-align: center;
  margin-bottom: 50px;
}

.values-header h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.values-header p {
  color: #9aa;
  font-size: 14px;
}

/* GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.value-card {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.05);
  width: 100%;
  min-width: 0;
  transition: 0.4s ease;

  opacity: 0;
  transform: translateY(50px);
}

/* HOVER EFFECT */
.value-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 30px rgba(59,130,246,0.2);
  border-color: rgba(59,130,246,0.3);
}

/* ICON */
.value-card .icon {
  width: 45px;
  height: 45px;
  background: rgba(59,130,246,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 15px;
  color: #3b82f6;
}

.value-card .icon i {
  font-size: 20px;
  transition: 0.3s;
}

.value-card:hover .icon i {
  transform: scale(1.2);
}

/* TITLE */
.value-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* TEXT */
.value-card p {
  color: #aab;
  font-size: 14px;
  line-height: 1.5;
}

/* RESPONSIVE */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Tablet */
@media(max-width:600px){

  .values {
    padding: 80px 5%;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; /* reduce gap */
  }

  .value-card {
    padding: 18px; /* reduce padding */
  }

  .value-card h3{
    font-size: 15px;
    line-height: 1.3;
  }

  .value-card p{
    font-size: 13px;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

}

/* ========================
footer section
======================== */
/* FOOTER */
.footer {
  background: #020617;
  padding: 80px 20px 30px;
  color: #fff;
}

/* GRID */
.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* LOGO */
.footer .logo {
  font-size: 20px;
  color: #3b82f6;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 77px;
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
  transition: 0.3s;
}

/* 🔥 Hover effect */
.footer-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(59,130,246,0.6));
}

.footer-desc {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 20px;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons i {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.social-icons i:hover {
  background: #3b82f6;
  transform: translateY(-5px);
}

/* HEADINGS */
.footer-col h4 {
  margin-bottom: 15px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #9ca3af;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #3b82f6;
  padding-left: 5px;
}

/* CONTACT */
.footer-col p {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 10px;
}

.footer-col i {
  color: #3b82f6;
  margin-right: 8px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* =============================
update things in about page
============================= */
/* ADD THIS */
.fade-up{
  opacity:0;
  transform:translateY(50px);
  transition:0.6s ease;
}

.fade-up.show{
  opacity:1;
  transform:translateY(0);
}

/* VALUE FIX */
.section-tag{color:#3b82f6 !important;}
.section-subtitle{color:#9ca3af !important;}

/* MOBILE GRID FIX */
@media(max-width:600px){
  .values-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* HERO ANIMATION */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(40px);}
  to{opacity:1;transform:translateY(0);}
}