* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff6ef;
  overflow-x: hidden;
}

/* ================== NAVBAR ================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Logo */
.logo {
  font-size: 20px;
  font-weight: bold;
  color: gray;
}

.logo span {
  color: gray;
}

.logo small {
  display: block;
  font-size: 12px;
  color: gray;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #ff7a00;
}

/* Button */
.btn {
  background: #ff7a00;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
}

/* ================== ABOUT SECTION ================== */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  background: linear-gradient(135deg, #d8d5cd 1%, #d4eade 52%, #adb7bb 100%);
  
}

/* LEFT */
.left {
  width: 50%;
}

.left h1 {
  font-size: 58px;
  margin-bottom: 15px;
  font-weight: 700;
}

.left h3 {
  color: gray;
  margin-bottom: 15px;
  font-size: 29px;
  font-weight: 200;
  position: relative;
  top: 5px;
}

.left p {
  color: #555;
  line-height: 1.6;
  font-size: 18px;
  font-weight: 400; /* Fixed: was 600px */
  width: 600px;
  position: relative;
  top: 20px;
}

/* RIGHT */
.right {
  width: 50%;
  display: flex;
  justify-content: center;
}

/* IMAGE BOX */
.image-box {
  position: relative;
  border-radius: 20px;
  width: 650px;
  height: 400px;
  box-shadow: 5px 10px 20px gainsboro;
}

.image-box img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* IMAGE ZOOM */
.image-box:hover img {
  height: 410px;
  width: 660px;
}

/* ICONS */
.icon-star {
  position: absolute;
  right: 640px;
  bottom: 162px;
  font-size: 30px;
  background: rgb(231, 218, 31);
  padding: 19px;
  border-radius: 50%;
  z-index: 10;
}

.icon {
  position: absolute;
  right: 55px;
  bottom: 110px;
  font-size: 30px;
  background: rgb(231, 218, 31);
  padding: 10px;
  border-radius: 50%;
  z-index: 10;
}

/* ================== WHO WE ARE SECTION ================== */
.who {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  background: white;
  gap: 50px;
}

/* LEFT IMAGE */
.who-left {
  width: 50%;
}

.who-left img {
  position: relative;
  right: 30px;
  width: 600px;
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
}

/* RIGHT CONTENT */
.who-right {
  width: 50%;
  position: relative;
  right: 20px;
}

.who-right h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.who-right p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
  width: 600px;
  font-weight: 100;
}

/* ================== MISSION SECTION ================== */
.mission-section {
  display: flex;
  gap: 40px;
  padding: 60px 50px;
  background: linear-gradient(to bottom right, #fdf2f8, #eff6ff);
}

.card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  width: 600px;
  margin-top: 20px;
}

.card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.icons {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.mission-icon {
  background: linear-gradient(to bottom right, #fdba74, #f9a8d4);
  color: #faf9f8;
}

.vision-icon {
  background: linear-gradient(to bottom right, #86efac, #5eead4);
  color: #00a99d;
}

.card h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #333;
}

.card p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
}

/* ================== WHY SECTION ================== */
.why {
  text-align: center;
  padding: 70px 80px;
  background: white;
}

.why h2 {
  font-size: 43px;
  margin-bottom: 10px;
  color: #333;
}

.why .sub {
  font-size: 19px;
  width: 600px;
  color: #777;
  margin-bottom: 50px;
  position: relative;
  left: 300px;
  top: 10px;
}

.why-container {
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

.why-card {
  background: linear-gradient(to bottom right, #f9fafb, #ffffff);
  padding: 25px;
  border-radius: 18px;
  flex: 1;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
}

.blue {
  background: linear-gradient(to bottom right, #93c5fd, #67e8f9);
  color: #00a8b5;
}

.purple {
  background: linear-gradient(to bottom right, #d8b4fe, #f9a8d4);
  color: #8a5cff;
}

.orange {
  background: linear-gradient(to bottom right, #fde047, #fdba74);
  color: #ff9f1c;
}

.pink {
  background: linear-gradient(to bottom right, #fda4af, #fca5a5);
  color: #ff4d6d;
}

.why-card h4 {
  font-size: 19px;
  margin-bottom: 10px;
  color: #333;
}

.why-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* ================== TEACHERS SECTION ================== */
.teachers {
  text-align: center;
  padding: 70px 80px;
  background: linear-gradient(to bottom right, #fefce8, #fff7ed);
}

.teachers h2 {
  font-size: 43px;
  margin-bottom: 10px;
  color: #333;
}

.teachers .sub {
  font-size: 19px;
  color: #777;
  margin-bottom: 50px;
  position: relative;
  top: 10px;
}

.teacher-container {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.teacher-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.teacher-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.img-box img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.content {
  padding: 20px;
  text-align: center;
}

.content h4 {
  font-size: 24px;
  color: #333;
  margin-bottom: 5px;
}

.content span {
  display: block;
  color: #ff7a4d;
  font-size: 17px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.content p {
  font-size: 16px;
  color: #666;
}

/* ================== ADMISSION SECTION ================== */
.admission_section {
  width: 100%;
  padding: 40px 20px;
  background: linear-gradient(to bottom right, #ffedd5, #fce7f3, #f3e8ff);
}

.admission_wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: white;
  border-radius: 30px;
}

.admission_image_box {
  width: 50%;
  border-top-left-radius: 30px;
}

.admission_image_box img {
  width: 100%;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  height: 400px;
}

.admission_text_box {
  width: 50%;
}

.admission_text_box h1 {
  font-size: 52px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.2;
}

.admission_text_box p {
  width: 92%;
  font-size: 21px;
  font-weight: 100;
  color: #6b7280;
  margin: 20px 0;
  line-height: 1.6;
}

.admission_buttons {
  display: flex;
  gap: 15px;
  padding-top: 15px;
}

.btn_primary {
  background: linear-gradient(135deg, #ff9a3d, #ff6a00);
  color: white;
  font-size: 18px;
  padding: 20px 37px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
}

.btn_primary:hover {
  opacity: 0.9;
  box-shadow: 0px 10px 15px gray;
}

.aro_btn {
  position: relative;
  left: 3px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn_primary:hover .aro_btn {
  transform: translateX(6px);
}

.btn_outline {
  border: 2px solid #e5e7eb;
  padding: 20px 30px;
  border-radius: 30px;
  text-decoration: none;
  color: #374151;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
}

.btn_outline:hover {
  border-color: #ff9a3d;
  color: #ff9a3d;
}

/* ================== FOOTER ================== */
.footer {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #cbd5f5;
  padding: 50px 20px 20px;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
  flex-wrap: nowrap;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col h4 {
  color: white;
}

.footer-col p {
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col {
  padding-right: 100px;
}

.logo {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.logo span {
  margin-left: 8px;
}

.icon3 {
  font-size: larger;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  color: rgb(100, 116, 139);
}

.footer-col ul li:hover {
  color: #fff;
}

.footer-col ul li a {
  text-decoration: none;
  color: rgb(100, 116, 139);
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid #334155;
  padding-top: 15px;
  color: #94a3b8;
}

/* ================== MOBILE RESPONSIVE ================== */
@media (max-width: 768px) {
  /* NAVBAR */
  .navbar {
  display: flex;
  flex-direction: row;
  padding: 15px 20px;
  gap: 10px;
  width: 250%;           /* fix overflow issue */
  font-size: 16px;       /* added font size */
}

  .nav-links {
    flex-direction: row;
    gap: 10px;
  }

  /* ABOUT SECTION */
  .about {
    flex-direction: column;
    padding: 30px 15px;
    text-align: center;
    width: 250%;
  }

  .left,
  .right {
    width: 100%;
  }

  .left h1 {
    font-size: 28px;
  }

  .left h3 {
    font-size: 18px;
  }

  .left p {
    width: 100%;
    font-size: 15px;
  }

  .image-box {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

  .image-box img {
    height: auto;
  }

  .image-box:hover img {
    width: 100%;
    height: auto;
  }

  /* Hide positioned icons on mobile */
  .icon-star,
  .icon {
    display: none;
  }

  /* WHO SECTION */
  .who {
    flex-direction: column;
    padding: 30px 15px;
    gap: 30px;
    width: 250%;
  }

  .who-left,
  .who-right {
    width: 90%;
  }

  .who-left img {
    width: 100%;
    height: auto;
    right: 0;
  }

  .who-right p {
    width: 100%;
  }

  /* MISSION */
  .mission-section {
    flex-direction: row;
    padding: 30px 15px;
    width: 250%;
  }

  .card {
    width: 100%;
  }

  /* WHY SECTION */
  .why {
    padding: 40px 15px;
        width: 250%;

  }

  .why .sub {
    width: 100%;
    left: 0;
  }

  .why-container {
    flex-direction: column;
  }

  /* TEACHERS */
  .teachers {
    
    padding: 40px 15px;
        width: 250%;

  }

  .teacher-container {
    flex-direction: row;
  }

  /* ADMISSION */
  .admission_wrapper {
    flex-direction: row;
    margin: 0 15px;
    width: 250%;
  }

  .admission_image_box,
  .admission_text_box {
    width: 100%;
  }

  .admission_image_box {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .admission_image_box img {
    border-bottom-left-radius: 0;
  }

  .admission_text_box h1 {
    font-size: 28px;
  }

  .admission_text_box p {
    font-size: 15px;
    width: 100%;
  }

  .admission_buttons {
    flex-direction: column;
    align-items: center;
  }

 .footer {
    padding: 30px 15px;
    text-align: center;
    width: 250%;
  }

  .footer-container {
    /* display: flex;
    flex-direction: column;  
    gap: 25px;
    align-items: center; */
    display: grid;
    grid: auto/auto auto auto;
  }

  .footer-col {
    width: 100%;
  }

  /* Logo */
  .logo {
    justify-content: center;
    font-size: 18px;
  }

  /* Text */
  .footer p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Social Icons */
  .icon3 {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 18px;
  }
a 
{
  color:white;
}
  /* Quick Links */
  .footer-col ul {
    padding: 0;
  }

  .footer-col ul li {
    list-style: none;
  }

  /* MAP FIX (IMPORTANT) */
  iframe {
    width: 100% !important;
    height: 200px;
    margin-right: 0 !important;
  }

  /* REMOVE INLINE STYLE ISSUE */
  .footer-container > div[style] {
    margin-right: 0 !important;
    width: 100%;
  }

  /* Bottom */
  .footer-bottom {
    font-size: 13px;
    text-align: center;
    margin-top: 20px;
  }

}