/* 🌅 Inner Banner Section */
.inner-banner-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}

/* 🏞️ Background Image Container */
.inner-baner-container {
  position: relative;
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 4px solid #00a651;
}

/* Remove overlay for crystal-clear image */
.inner-baner-container::before {
  content: none;
}

/* 🎯 Banner Text Container */
.inner-banner-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease-out;
}

/* ✨ Main Title Styling */
.inner-title {
  font-size: 3.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  background: linear-gradient(90deg, #ffffff, #d1fff0, #a8ffe0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  font-family: "Poppins", "Montserrat", sans-serif;
  position: relative;
  transition: all 0.4s ease;
}

/* Subtle glowing animation on hover */
.inner-title:hover {
  transform: scale(1.03);
  text-shadow: 0 0 25px rgba(0, 255, 170, 0.6);
}

/* 🌈 Stylish underline effect */
.inner-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, #00a651, #00e6cc, #0099cc);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 166, 81, 0.5);
  animation: lineGlow 2.5s infinite alternate;
}

/* ✨ Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGlow {
  from {
    box-shadow: 0 0 8px rgba(0, 166, 81, 0.4);
  }
  to {
    box-shadow: 0 0 18px rgba(0, 230, 204, 0.8);
  }
}

/* 📱 Responsive Adjustments */
@media (max-width: 992px) {
  .inner-baner-container {
    height: 340px;
  }

  .inner-title {
    font-size: 2.4rem;
    letter-spacing: 1.2px;
  }
}

@media (max-width: 600px) {
  .inner-baner-container {
    height: 260px;
  }

  .inner-title {
    font-size: 1.9rem;
    letter-spacing: 1px;
  }

  .inner-title::after {
    width: 70px;
    height: 3px;
  }
}


































/* 🌿 ABOUT SECTION (Modern, Bootstrap-Safe) */
.about-section {
  position: relative;
  padding: 100px 0 120px;
  background: linear-gradient(180deg, #f8fffc 0%, #e8faff 100%);
  font-family: "Poppins", "Inter", sans-serif;
  overflow: hidden;
  z-index: 1;
}

/* ✨ Gradient Floating Background Glow */
.about-section::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle at center, rgba(0, 166, 81, 0.12), rgba(0, 153, 204, 0.06) 70%);
  transform: translateX(-50%);
  z-index: 0;
  animation: floatGlow 8s ease-in-out infinite alternate;
}

/* 🌈 Center Divider with Subtle Glow */
.title-divider-center {
  width: 120px;
  height: 5px;
  margin: 0 auto 25px;
  background: linear-gradient(90deg, #00a651, #00c6b4, #0099cc);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 153, 204, 0.4);
  animation: pulseLine 3s ease-in-out infinite alternate;
}

/* 🏫 Section Title */
.about-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00a651, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1.5px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 153, 204, 0.2);
  animation: fadeInDown 1.2s ease both;
}

/* 🧠 Description Text Columns */
.about-describe {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #024b40;
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(0, 153, 204, 0.07);
  transition: all 0.4s ease;
  animation: fadeInUp 1.4s ease both;
}

.about-describe:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 153, 204, 0.15);
}

/* 🌿 Left & Right Borders */
.info-left {
  border-left: 5px solid #00a651;
}
.info-right {
  border-right: 5px solid #0099cc;
}

/* 🧮 Counter Area */
.counter-inner {
  margin-top: 70px;
  position: relative;
  z-index: 2;
}

.counter-item {
  text-align: center;
  padding: 30px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 166, 81, 0.05);
}

.counter-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(0, 153, 204, 0.15);
}

.counter-no {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00a651, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.Completed {
  font-size: 1.1rem;
  font-weight: 600;
  color: #00695c;
  letter-spacing: 0.5px;
}

/* 🏫 About Banner (Image + Info + Video) */
.about-banner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 153, 204, 0.12);
  z-index: 2;
  animation: fadeInUp 1.6s ease both;
}

/* 🖼️ Left Image */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
}

.figure-round-border {
  flex: 1 1 50%;
  margin: 0;
}

/* 🏆 Experience Badge */
.about-left-banner {
  position: absolute;
  left: 40px;
  bottom: 40px;
  background: linear-gradient(90deg, #00a651, #0099cc);
  color: #fff;
  padding: 25px 40px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 166, 81, 0.3);
  text-align: center;
  animation: floatBox 4s ease-in-out infinite alternate;
}

.about-left-banner .banner-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

/* 🎬 Right Video Section */
.about-right-banner {
  flex: 1 1 50%;
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(180deg, #f7fdfb 0%, #ebfaff 100%);
}

.about-right-banner h5 {
  font-size: 1.3rem;
  color: #0099cc;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.about-right-banner .video-button {
  width: 100px;
  height: 75px;
  background: linear-gradient(90deg, #00a651, #0099cc);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.about-right-banner .video-button:hover {
  transform: scale(1.15);
  box-shadow: 0 0 25px rgba(0, 153, 204, 0.4);
}

.about-right-banner h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #024b40;
  margin-bottom: 12px;
}

.about-right-banner p {
  font-size: 1rem;
  color: #00695c;
  line-height: 1.8;
}

/* 🌀 Animations */
@keyframes floatGlow {
  from {
    opacity: 0.6;
    transform: translate(-50%, 0);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 25px);
  }
}

@keyframes pulseLine {
  from {
    box-shadow: 0 0 10px rgba(0, 153, 204, 0.2);
  }
  to {
    box-shadow: 0 0 20px rgba(0, 166, 81, 0.6);
  }
}

@keyframes floatBox {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 Responsive Design */
@media (max-width: 992px) {
  .about-title {
    font-size: 2.2rem;
  }
  .about-banner {
    flex-direction: column;
  }
  .figure-round-border {
    flex: 1 1 100%;
  }
  .about-right-banner {
    padding: 40px 20px;
  }
}

@media (max-width: 600px) {
  .about-title {
    font-size: 1.8rem;
  }
  .about-left-banner {
    left: 15px;
    bottom: 15px;
    padding: 12px 20px;
  }
  .about-left-banner h3 {
    font-size: 1rem;
  }
  .counter-no {
    font-size: 2rem;
  }
}

























.home-team-section-v3 {
  padding: 60px 15px;
  position: relative;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  margin-top: -80px;
}

/* Header */
.team-header-v3 {
  margin-bottom: 40px;
  text-align: center;
}
.team-divider-v3 {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00c853);
  border-radius: 6px;
  margin: 0 auto 15px auto;
}
.team-title-v3 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}
.team-btn-v3 {
  display: inline-block;
  background: linear-gradient(90deg, #007bff, #00c853);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.team-btn-v3:hover {
  background: linear-gradient(90deg, #00c853, #007bff);
  transform: scale(1.05);
}

/* Team wrapper grid - exactly 4 cards in a row */
.team-wrapper-v3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
  align-items: start;
  width: 100%;
  padding: 0 10px; /* small padding on sides */
  box-sizing: border-box;
}

/* Teacher Card */
.teacher-card-v3 {
  width: 100%;
  max-width: 300px;
  height: 380px;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 128, 255, 0.2);
  transition: all 0.4s ease;
}
.teacher-card-v3:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 45px rgba(0, 255, 128, 0.35);
}

/* Circular frame */
.teacher-frame-v3 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, #007bff, #00c853, #0091ea, #00e676);
  background-size: 400% 400%;
  animation: frameGlow 5s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
.teacher-frame-v3 img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.teacher-card-v3:hover .teacher-frame-v3 img {
  transform: scale(1.05);
}
@keyframes frameGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Teacher text */
.teacher-info-v3 h4 a {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}
.teacher-info-v3 p {
  color: #00bfa5;
  font-size: 16px;
  margin-top: 6px;
  font-weight: 500;
  text-align: center;
}

/* === Responsive === */
@media (max-width: 1200px) {
  .team-wrapper-v3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .team-wrapper-v3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .teacher-card-v3 {
    max-width: 260px;
    height: 360px;
  }
  .teacher-frame-v3 {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 576px) {
  .team-wrapper-v3 {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }
  .teacher-card-v3 {
    max-width: 230px;
    height: 340px;
  }
  .teacher-frame-v3 {
    width: 150px;
    height: 150px;
  }
  .teacher-info-v3 h4 a {
    font-size: 18px;
  }
}









































/* 🌈 General Styling */
.school-mission {
  background: linear-gradient(135deg, #f8fffa, #eefbff);
  font-family: "Poppins", sans-serif;
}

/* Divider & Headings */
.divider {
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, #00a651, #0099cc);
  border-radius: 3px;
  margin-bottom: 12px;
}

.mission-heading {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00a651, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mission-text {
  color: #024b40;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
}

/* 🌟 Mission Card */
.mission-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 153, 204, 0.1);
  box-shadow: 0 10px 30px rgba(0, 153, 204, 0.1);
  overflow: hidden;
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 153, 204, 0.2);
  border-color: rgba(0, 166, 81, 0.3);
}

/* 🧿 Icon */
.mission-icon {
  font-size: 2.5rem;
  color: #00a651;
  margin-top: 25px;
  transition: transform 0.4s ease, color 0.4s ease;
}

.mission-card:hover .mission-icon {
  transform: scale(1.2);
  color: #0099cc;
}

/* 🖼️ Image Inside Same Border */
.mission-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  margin: 15px 0;
  transition: transform 0.5s ease;
}

.mission-card:hover .mission-image {
  transform: scale(1.05);
}

/* 📄 Text */
.mission-body {
  padding: 0 25px 25px;
}

.mission-body h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #024b40;
  margin-bottom: 10px;
}

.mission-body p {
  color: #024b40;
  opacity: 0.9;
  font-size: 1rem;
  line-height: 1.6;
}

/* 🌈 Animated Gradient Border Effect */
.mission-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  background: linear-gradient(90deg, #00a651, #0099cc, #00a651);
  background-size: 200%;
  opacity: 0;
  transition: opacity 0.4s ease, background-position 2s linear;
  z-index: 0;
}

.mission-card:hover::after {
  opacity: 1;
  background-position: right center;
}

/* Ensure text and icon stay above border effect */
.mission-card * {
  position: relative;
  z-index: 2;
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .mission-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .mission-image {
    height: 170px;
  }
}




























/* === Home Testimonial Section v2 - Next Generation === */
.home-testimonial-section {
  
  margin-top: 30px;
  font-family: 'Poppins', sans-serif;
  background: #f5f8ff; /* subtle modern light gradient background */
}

/* Header */
.title-divider-center {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00c853, #0091ea);
  border-radius: 6px;
  margin: 0 auto 15px auto;
  animation: dividerGlow 3s ease-in-out infinite alternate;
}
@keyframes dividerGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.testimonial-section-title {
  font-size: 38px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}
.testimonial-section-info {
  font-size: 17px;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.7;
}

/* Testimonial cards wrapper */
.row.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Client content (card) */
.client-content {
  background: #fff;
  border-radius: 25px;
  padding: 25px 20px;
  flex: 1 1 45%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
  transition: all 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.client-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 123, 255, 0.25);
}

/* Subtle floating pattern */
.pattern-overlay.circle-patten {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #00c853, #0091ea, #00e676);
  opacity: 0.1;
  top: -20px;
  left: -20px;
  animation: rotateCircle 12s linear infinite;
  z-index: 0;
}
@keyframes rotateCircle {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Client review text */
.client-review {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Author content */
.author-content {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

/* Author info */
.author-info h5.author-name {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 0;
}
.author-info span.author-title {
  display: block;
  font-size: 14px;
  color: #00bfa5;
  font-weight: 500;
}

/* Author image with glowing gradient frame */
.author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #007bff, #00c853, #0091ea, #00e676);
  background-size: 400% 400%;
  animation: frameGlow 6s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.author-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.client-content:hover .author-img img {
  transform: scale(1.1);
}

/* Testimonial button */
.testimonial-btn {
  text-align: center;
  margin-top: 30px;
}
.testimonial-btn a.button-round-primary {
  display: inline-block;
  background: linear-gradient(90deg, #007bff, #00c853, #0091ea);
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.testimonial-btn a.button-round-primary:hover {
  background: linear-gradient(90deg, #00c853, #007bff, #00e676);
  transform: scale(1.05);
}

/* Keyframe for glowing author frame */
@keyframes frameGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive */
@media (max-width: 992px) {
  .client-content {
    flex: 1 1 80%;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .client-content {
    flex: 1 1 100%;
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  .author-img {
    width: 60px;
    height: 60px;
  }
  .author-info h5.author-name {
    font-size: 16px;
  }
  .author-info span.author-title {
    font-size: 12px;
  }
  .testimonial-section-title {
    font-size: 28px;
  }
  .testimonial-section-info {
    font-size: 15px;
  }
}








































































/* ===========================
   🌟 School Vision Section
   =========================== */
.school-vision-section {
  position: relative;
  background: linear-gradient(135deg, #f7fffc 0%, #eaf7ff 100%);
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* 🖼️ Image Section */
.vision-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.vision-image-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 153, 204, 0.25);
}

.vision-image {
  width: 100%;
  height: auto;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

.vision-image-wrapper:hover .vision-image {
  transform: scale(1.05);
}

/* Decorative glow shape */
.vision-shape {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at center, rgba(0, 166, 81, 0.15), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: floatGlow 6s ease-in-out infinite alternate;
}

/* ✍️ Text Content */
.vision-content {
  background: #ffffffb0;
  backdrop-filter: blur(10px);
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 166, 81, 0.08);
  transition: transform 0.3s ease;
}

.vision-content:hover {
  transform: translateY(-5px);
}

.section-subtitle {
  display: inline-block;
  color: #00a651;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.vision-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #0099cc, #00a651);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
}

.vision-content p {
  color: #024b40;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}

/* 🔘 Button */
.vision-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  background: linear-gradient(90deg, #00a651, #0099cc);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 153, 204, 0.2);
  text-decoration: none;
}

.vision-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 166, 81, 0.3);
}

/* ✨ Animation Keyframes */
@keyframes floatGlow {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(25px);
  }
}

/* 📱 Responsive Adjustments */
@media (max-width: 992px) {
  .vision-content {
    margin-top: 40px;
    padding: 35px;
  }
  .vision-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .vision-content {
    padding: 30px;
  }
  .vision-title {
    font-size: 1.8rem;
  }
  .vision-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}
