/* --- Vision & Mission Refined UI --- */

/* .vision-mission-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}


.vision-mission-section .col-lg-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.cursive-sub-orange {
    font-family: 'Brush Script MT', cursive;
    margin-bottom: 5px;
    font-size: 20px;
    color: #ea512e;
    font-weight: 600;
}

.vm-main-title {
    color: #001f3f;
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 35px;
    line-height: 1.1;
}

.vm-label {
    color: #ea512e;
    font-weight: 700;
}

.description-text {
    color: #666666;
    line-height: 1.8;
    font-size: 1rem;
    text-align: left; 
    margin: 0 !important;
    padding: 0 !important;
}


.vm-image-container {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
    padding: 30px;
}

.vm-img-masked {
    position: relative;
    z-index: 5;
}

.vm-img-masked img { width: 100%; height: auto; }

.vm-shape { position: absolute; z-index: 2; }

.shape-rotate {
    top: -0%;
    left: -2%;
    max-width: 60%;
    animation: sideDrift 8s ease-in-out infinite reverse !important;
    z-index: 55;
}

.shape-bounce {
    top: 50%;
    left: 60%;
    max-width: 100%;
    animation: sideDrift 8s ease-in-out infinite reverse !important;
}

.shape-dots {
    top: 45%;
    left: 20%;
    max-width: 100%;
    z-index: 1;
    animation: sideDrift 8s ease-in-out infinite reverse !important;
}

@keyframes sideDrift {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(30px);
    }
}

@keyframes scaleBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}


.vision-mission-section .row {
    --bs-gutter-x: 5px !important; 
}

@media (max-width: 991px) {
    .vm-main-title { font-size: 2.8rem; }
    .px-lg-5 { padding-left: 0 !important; padding-right: 0 !important; }
    .vision-mission-section .col-lg-6 {
        padding-left: 15px !important;
        padding-right: 15px !important;
        text-align: center;
    }
} */

.vision-mission-section {
  padding: 80px 0;
  background: #f9fafc;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Image */
.vm-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.vm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.05)
  );
}

/* Content */
.vm-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #1f2d3d;
}

.vm-card {
  background: #ffffff;
  padding: 22px 25px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.vm-card h4 {
  margin-bottom: 10px;
  color: #ea512e;
  font-size: 20px;
}

.vm-card p {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 991px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }

  .vm-content h2 {
    text-align: center;
  }
}



/* --- Skills Progress UI --- */

.skills-progress-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.skills-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.skill-item {
    margin-bottom: 25px;
}

/* Cursive Labels */
.skill-label {
    font-family: 'Brush Script MT', cursive;
    font-size: 1.8rem;
    color: #333333;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Progress Bar Track */
.progress-bar-container {
    width: 100%;
    height: 8px; /* Slim bars as per UI */
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

/* Progress Fill Colors */
.progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1.5s ease-in-out; /* Smooth growth on load */
}

/* Specific Colors from UI */
.progress-fill.yellow { background-color: #ffcc00; }
.progress-fill.orange-red { background-color: #ea512e; }
.progress-fill.navy { background-color: #001f3f; }
.progress-fill.green { background-color: #4caf50; }
.progress-fill.pink { background-color: #e91e63; }

.skill{
    font-weight: 700;
    margin-bottom: 20px;
}
/* Responsive Adjustments */
@media (max-width: 767px) {
    .skill-label {
        font-size: 1.5rem;
    }
}