/* * */
.about-hero {
  min-height: 65vh !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
    url('../assets/images/avsimulation-environment-day.jpg') no-repeat bottom center;
  background-size: cover;
}

.textColor {
  color: var(--color-text);
}

/* * */

/* Our Story Section Starts */

.balloon {
  position: absolute;
  border-radius: 12px;
  opacity: 0.5;
  z-index: 1;
}
.balloon-1 {
    width: 100px;
    height: 100px;
    top: -14px;
    left: -6px;
    background-color: #d7eddd;
}
.balloon-2 {
  width: 100px;
  height: 100px;
  bottom: -14px;
  right: -6px;
  background-color: #CECECE;
}
.badge-gbl{
    background-color: var(--badge-color);
    color: var(--primary-color);
    font-weight: 600;
}
/* Our Story Section ends */




/* Mission & Vision Section Starts */

.top-highlight-border {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.top-highlight-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: var(--primary-gradient);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  z-index: 1;
}




/* Mission & Vision Section ends */

/* Our Core Values Starts */

.underline {
    width: 140px;
    height: 4px;
    background-color: var(--primary-color);
  }
.value-card {
      position: relative;
      transition: all 0.3s ease;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }
.value-card::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 4px;
      background-color: #28a745;
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }
.value-hexagon {
        position: relative;
        width: 100px;
        height: 100px;
        font-size: 30px;
        color: var(--primary-color);
        background-color: #f8f8f8;
        margin: 0 auto 2rem;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        transition: all 0.3s ease;
    }
.value-card:hover::after {
      width: 100%;
    }
.value-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 25px rgba(40, 167, 69, 0.2);
    }
.value-card:hover .value-hexagon{
        background-color: #d3ebd8;
        font-size: 40px;
    }
.bubble-section {
        overflow: hidden;
        position: relative;
    }
.bubble {
       position: absolute;
        width: 230px;
        height: 230px;
        background: #eeeff0;
        border-radius: 50%;
        z-index: 0; 
        opacity: 0.8;
    }
.bubble.top-left {
        top: -70px;
        left: -70px;
    }
.bubble.bottom-right {
        bottom: -70px;
        right: -70px;
    }
.triangle{
        color: #dbb22c;
    }
/* Our Core Values Ends */

/* Facility Gallery Section Starts */
.card-overlay {
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.3s;
}
.card1:hover .card-overlay {
  opacity: 1;
}
.img1{
  object-fit: cover;
  object-position: center;
  height: 260px;
  width: 100%;
}
/* Facility Gallery Section ends */









@media (max-width:768px) {

  .section-title h2 {
    font-size: 1.9rem;

  }

  .about-section {
    padding: 20px 0;
  }

  .section-title p {
    font-size: 1.1rem;
  }

  .about-title {
    font-size: 1.7rem;
  }

  .about-subtitle {
    font-size: 16px;
  }

  .govText h4 {
    font-size: 15px;
  }

  .govText p {
    font-size: 14px;
  }

  .govImg {
    width: 120px;
  }

  .balloon-2 {
    right: -1px;

  }
}