.text-gradient {
        background: linear-gradient(90deg, #FF8A00 0%, #FF0058 100%) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }
    .icon-box {
        width: 30px !important;
        height: 30px !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .icon-circle {
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .image-frame {
        position: relative !important;
        z-index: 2 !important;
    }
    .shape {
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
        transform: translate(-15px, -15px) !important;
        opacity: 0.1 !important;
    }
    .badge-box {
        transform: translate(-20px, -20px) !important;
        z-index: 3 !important;
    }
    .zoom-hover {
        transition: transform 0.5s ease !important;
    }
    .zoom-hover:hover {
        transform: scale(1.05) !important;
    }
    .hover-lift {
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    }
    .hover-lift:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }
    .about-area {
        position: relative !important;
        overflow: hidden !important;
	}

    
    #facility {
  background-color: #f3f2ff;
  padding: 60px 20px;
}

.facility-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 40px;
  font-weight: bold;
  color: #033f63;
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  color: #777;
  margin-bottom: 40px;
}

.timeline {
  position: relative;  
  padding-left: 25px;
  border-left: 3px solid #1F3971;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  text-align: left;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background-color: #1F3971;
  border-radius: 50%;
  position: absolute;
  left: -9px;
  top: 5px;
}

.timeline-content {
  background-color: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  margin-left: 20px;
}

.timeline-content h3 {
  margin: 0 0 5px;
  font-size: 20px;
  color: #033f63;
}

.timeline-content p {
  margin: 0;
  color: #555;
}




.card1 {
      position: relative;
      width: 300px;
      height: 200px;
      border-radius: 10px;
      box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
      transition: 0.3s;
      padding: 30px 50px;
      background-color: #1F3971;
      margin: 50px auto;
      overflow: hidden;
    }

    .card1:hover {
      height: 400px;
    }

    .imgbox1 {
      position: relative;
      width: 100%;
      height: 100%;
      transform: translateY(-80px);
      border-radius: 5px;
      overflow: hidden;
    }

    .imgbox1 img {
      width: 100%;
      border-radius: 5px;
    }

    .content1 {
      padding: 10px 20px;
      text-align: center;
      transform: translateY(-450px);
      opacity: 0;
      transition: 0.3s ease-in-out;
      color:white;
    }

    .card1:hover .content1 {
      opacity: 1;
      transform: translateY(-180px);
    }