





/* ========== PAGE BANNER SECTION - EXACT GREEN GRADIENT ========== */
.page-banner {
  background: linear-gradient(135deg, #78b94d, #2e7d32);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

/* Optional: Abstract wave pattern overlay */
.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='2' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 300px auto;
  opacity: 0.3;
  pointer-events: none;
}

/* Optional: Second wave layer */
.page-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1.5' d='M0,192L48,176C96,160,192,128,288,138.7C384,149,480,203,576,208C672,213,768,171,864,149.3C960,128,1056,128,1152,144C1248,160,1344,192,1392,208L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: top;
  background-size: 350px auto;
  opacity: 0.2;
  pointer-events: none;
}

.banner-content {
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease forwards;
}

/* Banner Title */
.banner-title {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-link:hover {
  color: #ffffff;
  transform: translateX(-2px);
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.breadcrumb-current {
  color: #ffffff;
  font-weight: 600;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 880px) {
  .page-banner {
    padding: 60px 0;
  }
  
  .banner-title {
    font-size: 36px;
  }
  
  .breadcrumb {
    font-size: 13px;
    padding: 6px 16px;
  }
}

@media (max-width: 550px) {
  .page-banner {
    padding: 50px 0;
  }
  
  .banner-title {
    font-size: 28px;
  }
  
  .breadcrumb {
    font-size: 12px;
    padding: 5px 14px;
  }
  
  .breadcrumb-separator {
    font-size: 10px;
  }
}
/* =======================mission , vission , values ==================== */
/* ========== MISSION, VISION & VALUES SECTION ========== */
.mvv-section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

/* ========== ANIMATED BACKGROUND ========== */
.mvv-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.mvv-bg-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #003d06, #005006);
  background-size: 400% 400%;
  animation: mvvGradientMove 20s ease infinite;
}

@keyframes mvvGradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.mvv-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  animation: mvvFloatShape 18s ease-in-out infinite;
}

.mvv-bg-shape-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(40, 161, 51, 0.5), rgba(0, 80, 6, 0.1));
  top: -150px;
  left: -100px;
  animation-delay: 0s;
}

.mvv-bg-shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(40, 161, 51, 0.4), rgba(0, 80, 6, 0.08));
  bottom: -100px;
  right: -80px;
  animation-delay: 5s;
  animation-duration: 22s;
}

.mvv-bg-shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(40, 161, 51, 0.35), rgba(0, 80, 6, 0.06));
  top: 40%;
  right: 15%;
  animation-delay: 10s;
  animation-duration: 20s;
}

.mvv-bg-shape-4 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(40, 161, 51, 0.3), rgba(0, 80, 6, 0.05));
  bottom: 15%;
  left: 10%;
  animation-delay: 15s;
  animation-duration: 25s;
}

@keyframes mvvFloatShape {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.2;
  }
  33% {
    transform: translateY(-25px) translateX(20px) scale(1.08);
    opacity: 0.35;
  }
  66% {
    transform: translateY(20px) translateX(-15px) scale(0.95);
    opacity: 0.25;
  }
}

/* Container */
.mvv-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== SECTION HEADER ========== */
.mvv-header {
  text-align: center;
  margin-bottom: 50px;
}

.mvv-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #78b94d;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mvv-label-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #78b94d, #28a133);
  border-radius: 2px;
}

.mvv-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.mvv-gradient-text {
      background: linear-gradient(135deg, #66ff00, #0bcd1c);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.mvv-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  margin: 0 auto;
}

/* ========== CARDS GRID ========== */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card Base Styles */
.mvv-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(120, 185, 77, 0.15);
}

/* Card Glow Effects (Differentiation) */
.mvv-card-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mvv-card-mission .mvv-glow-left {
  background: radial-gradient(circle, #78b94d, transparent);
  top: -50px;
  left: -50px;
}

.mvv-card-vision .mvv-glow-center {
  background: radial-gradient(circle, #28a133, transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.mvv-card-values .mvv-glow-right {
  background: radial-gradient(circle, #005006, transparent);
  bottom: -50px;
  right: -50px;
}

.mvv-card:hover .mvv-card-glow {
  opacity: 0.4;
}

/* Card Inner */
.mvv-card-inner {
  position: relative;
  z-index: 2;
}

/* Icon Wrapper */
.mvv-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.mvv-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(120, 185, 77, 0.2), rgba(46, 125, 50, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(120, 185, 77, 0.3);
}

.mvv-icon i {
  font-size: 28px;
  color: #78b94d;
  transition: all 0.3s ease;
}

/* Card Title */
.mvv-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

/* Card Description */
.mvv-card-description {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

/* Card Accent Line */
.mvv-card-accent {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #78b94d, #28a133);
  margin: 0 auto;
  transition: width 0.3s ease;
}

.mvv-card-mission .mvv-card-accent {
  background: linear-gradient(90deg, #78b94d, #28a133);
}

.mvv-card-vision .mvv-card-accent {
  background: linear-gradient(90deg, #28a133, #78b94d);
}

.mvv-card-values .mvv-card-accent {
  background: linear-gradient(90deg, #28a133, #005006);
}

/* ========== HOVER EFFECTS ========== */
.mvv-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(120, 185, 77, 0.3);
}

.mvv-card:hover .mvv-icon {
  transform: scale(1.05);
  background: linear-gradient(135deg, #78b94d, #28a133);
  border-color: transparent;
}

.mvv-card:hover .mvv-icon i {
  color: white;
}

.mvv-card:hover .mvv-card-accent {
  width: 60px;
}

/* ========== SCROLL REVEAL ANIMATION ========== */
.mvv-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mvv-card.mvv-revealed {
  opacity: 1;
  transform: translateY(0);
}

.mvv-card:nth-child(1).mvv-revealed { transition-delay: 0.05s; }
.mvv-card:nth-child(2).mvv-revealed { transition-delay: 0.15s; }
.mvv-card:nth-child(3).mvv-revealed { transition-delay: 0.25s; }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .mvv-grid {
    gap: 24px;
  }
  
  .mvv-heading {
    font-size: 26px;
  }
  
  .mvv-card {
    padding: 28px 20px;
  }
  
  .mvv-icon {
    width: 65px;
    height: 65px;
  }
  
  .mvv-icon i {
    font-size: 26px;
  }
  
  .mvv-card-title {
    font-size: 18px;
  }
}

@media (max-width: 880px) {
  .mvv-section {
    padding: 60px 0;
  }
  
  .mvv-container {
    padding: 0 24px;
  }
  
  .mvv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .mvv-heading {
    font-size: 24px;
  }
  
  .mvv-subtext {
    font-size: 13px;
  }
}

@media (max-width: 650px) {
  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 380px;
    margin: 0 auto;
  }
  
  .mvv-card {
    padding: 28px 20px;
  }
  
  .mvv-heading {
    font-size: 22px;
  }
  
  .mvv-label {
    font-size: 10px;
  }
}

@media (max-width: 550px) {
  .mvv-section {
    padding: 50px 0;
  }
  
  .mvv-container {
    padding: 0 20px;
  }
  
  .mvv-heading {
    font-size: 20px;
  }
  
  .mvv-subtext {
    font-size: 12px;
  }
  
  .mvv-icon {
    width: 60px;
    height: 60px;
  }
  
  .mvv-icon i {
    font-size: 24px;
  }
  
  .mvv-card-title {
    font-size: 17px;
  }
  
  .mvv-card-description {
    font-size: 12px;
  }
}
/* =====================================doctors============================== */
@media (max-width: 768px) {
  .rotating-dot.dot-4 {
    display: none;
  }
}