/* ================= ABOUT HERO ================= */

/* ================= ABOUT HERO ================= */

.about-hero{
  padding: 70px 0;
  background: linear-gradient(135deg, #f7f9fc, #eef3f9);
  font-family: var(--font-main);
}

/* CONTAINER */
.about-container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT */
.about-text{
  width: 55%;
}

/* SMALL LABEL */
.sub-title{
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

/* MAIN HEADING (REDUCED SIZE) */
.about-text h1{
  font-size: 38px;   /* 🔥 reduced from big size */
  line-height: 1.25;
  color: #0b1c39;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-text h1 span{
  color: var(--primary);
}

/* DESCRIPTION */
.about-desc{
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 90%;
}

/* STATS */
.stats{
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.stat-box{
  background: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  min-width: 120px;
  text-align: center;
}

.stat-box h2{
  font-size: 24px;
  color: #0b1c39;
  margin-bottom: 5px;
}

.stat-box p{
  font-size: 13px;
  color: #666;
}

/* BUTTONS */
.about-btn{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary{
  background: var(--primary);
  color: #fff;
  padding: 11px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-primary:hover{
  background: var(--primary-dark);
}

.btn-outline{
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 11px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.btn-outline:hover{
  background: var(--primary);
  color: #fff;
}

/* RIGHT IMAGE */
.about-image{
  width: 45%;
  display: flex;
  justify-content: center;
}

.about-image img{
  width: 100%;
  max-width: 420px;   /* 🔥 controlled size */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ================= RESPONSIVE ================= */

@media(max-width: 991px){

  .about-container{
    flex-direction: column;
    text-align: center;
  }

  .about-text,
  .about-image{
    width: 100%;
  }

  .about-desc{
    max-width: 100%;
  }

  .stats{
    justify-content: center;
  }

  .about-btn{
    justify-content: center;
  }

  .about-text h1{
    font-size: 28px;
  }

  .about-image img{
    max-width: 320px;
  }
}

/* ================= MISSION ================= */

.mission {
  padding: 80px 0;
  background: #fff;
}

.mission-wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}

.mission-box {
  background: #f6f7fb;
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s;
}

.mission-box:hover {
  transform: translateY(-5px);
}

.mission-box h2 {
  margin-bottom: 15px;
  color: #0b1c39;
}

.mission-box p {
  color: #555;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 991px) {

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text,
  .about-image {
    width: 100%;
  }

  .stats {
    justify-content: center;
  }

  .about-btn {
    justify-content: center;
  }

  .mission-wrap {
    grid-template-columns: 1fr;
  }

  .about-text h1 {
    font-size: 32px;
  }
}



.about-features{
    padding:0px 0;
    background:#f6f7fb; /* light theme background */
    font-family:var(--font-main);
}

/* HEADER */
.section-head{
    text-align:center;
    margin-bottom:50px;
}

.section-head h2{
    font-size:38px;
    color:#0b1c39; /* dark navy */
    margin-bottom:10px;
    font-weight:700;
}

.section-head p{
    font-size:16px;
    color:#6b7280;
}

/* GRID */
.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* CARD */
.feature-card{
    background:#ffffff;
    padding:30px;
    border-radius:14px;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    border:1px solid #e5e7eb;
    transition:0.3s;
    position:relative;
}

/* hover effect */
.feature-card:hover{
    transform:translateY(-6px);
    border-color:#165DFF;
    box-shadow:0 12px 28px rgba(22,93,255,0.15);
}

/* ICON */
.icon{
    font-size:30px;
    margin-bottom:15px;
}

/* TITLE */
.feature-card h3{
    font-size:20px;
    margin-bottom:10px;
    color:#0b1c39;
}

/* TEXT */
.feature-card p{
    font-size:14px;
    line-height:1.6;
    color:#4b5563;
}

/* RESPONSIVE */
@media(max-width:992px){
    .feature-grid{
        grid-template-columns:1fr;
    }

    .section-head h2{
        font-size:28px;
    }
}



/* ================= PREMIUM ABOUT SECTION ================= */

.about-section{
  padding: 90px 0;
  background: linear-gradient(135deg, #f6f8fc, #eef3f9);
  font-family: var(--font-main);
  position: relative;
  overflow: hidden;
}

/* subtle background glow */
.about-section::before{
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(28,131,107,0.08);
  filter: blur(120px);
  top: -100px;
  left: -100px;
  border-radius: 50%;
}

.about-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* LEFT */
.about-content{
  width: 55%;
}

/* LABEL */
.about-label{
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* HEADING */
.about-heading{
  font-size: 42px;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 15px;
  font-weight: 800;
}

.about-heading span{
  color: var(--primary);
}

/* TEXT */
.about-text{
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 25px;
}

/* FEATURE CARDS */
.about-features{
  display: grid;
  gap: 18px;
  margin-bottom: 30px;
}

.feature-box{
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.feature-box:hover{
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(28,131,107,0.15);
}

.feature-box h3{
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--black);
}

.feature-box p{
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

/* BUTTON */
.about-btn-primary{
  display: inline-block;
  padding: 13px 26px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(28,131,107,0.2);
}

.about-btn-primary:hover{
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* RIGHT IMAGE */
.about-image{
  width: 45%;
  display: flex;
  justify-content: center;
  position: relative;
}

/* floating border effect */
.about-image::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(28,131,107,0.2);
  border-radius: 20px;
  top: 15px;
  left: 15px;
  z-index: -1;
}

.about-image img{
  width: 100%;
  max-width: 430px;
  border-radius: 16px;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 991px){

  .about-wrapper{
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-content,
  .about-image{
    width: 100%;
  }

  .about-heading{
    font-size: 30px;
  }

  .about-text{
    font-size: 14px;
  }

  .about-image img{
    max-width: 320px;
  }
}



.partners-section{
  padding: 70px 0;
  background: var(--white);
  font-family: var(--font-main);
}

.partners-head{
  text-align: center;
  margin-bottom: 40px;
}

.partners-head h2{
  font-size: 36px;
  color: var(--black);
  margin-bottom: 10px;
}

.partners-head p{
  color: var(--text);
  font-size: 15px;
  max-width: 700px;
  margin: auto;
}

/* SLIDER WRAP */
.partners-slider{
  overflow: hidden;
  position: relative;
}

/* TRACK */
.partners-track{
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll 18s linear infinite;
  align-items: center;
}

.partners-track img{
  height: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}

.partners-track img:hover{
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* ANIMATION */
@keyframes scroll{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

/* 30+ MORE */
.more-text{
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
  color: var(--primary);
}