  
    body {
      font-family: 'Poppins', sans-serif;
      background: #f4f4f4;
    }

    .custom-navbar {
      background-color: #002147;
      border-radius: 12px;
      margin: 20px auto 0;
      padding: 12px 30px;
      max-width: 1200px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .custom-navbar img {
      height: 50px;
    }

    .btn-rounded {
      border-radius: 50px;
      font-weight: 600;
      padding: 8px 24px;
      font-size: 14px;
    }
  
      .scholarship-banner {
      background-color: #ffcc00;
      text-align: center;
      font-weight: 600;
      padding: 5px 0;
      font-size: 16px;
      color: #002147;
      margin: 10px auto;
      max-width: 1200px;
      border-radius: 8px;
    }
    .btn-enquire {
      background-color: #fff;
      color: #002147;
      border: 2px solid #fff;
    }

    .btn-enquire:hover {
      background-color: #f2f2f2;
    }

    .btn-apply {
      background-color: #ffcc00;
      color: #000;
      border: 2px solid #ffcc00;
    }

    .btn-apply:hover {
      background-color: #e6b800;
      color: #000;
    }

    .modal-dialog {
      max-width: 800px;
    }

    .modal-content {
      border-radius: 20px;
      overflow: hidden;
      border: none;
    }

    .form-left {
      background: linear-gradient(#ffe600, #ffcc00);
      text-align: center;
      padding: 30px 20px;
    }

    .form-left img {
      width: 100%;
      max-height: 445px;
      object-fit: contain;
    }

    .form-left h4 {
      color: #002147;
      font-size: 20px;
      font-weight: bold;
      margin-top: 20px;
    }

    .form-right {
      padding: 30px;
    }

    .form-right h5 {
      font-size: 22px;
      font-weight: 600;
      color: #002147;
    }

    .form-right p {
      font-size: 14px;
      margin-bottom: 20px;
      color: #555;
    }

    .btn-group .btn {
      font-size: 13px;
      font-weight: 500;
      padding: 6px 16px;
    }

    .form-control, .form-select {
      font-size: 14px;
      border-radius: 10px;
      padding: 8px 12px;
    }

    .form-check-label {
      font-size: 12px;
      color: #555;
    }

    .btn-submit {
      background: #e6e6e6;
      color: #333;
      border-radius: 40px;
      padding: 10px;
      font-weight: 600;
      border: none;
    }

    .btn-submit:hover {
      background: #ccc;
    }
      .btn-enquire-vertical {
    position: fixed;
    top: 40%;
    right: 0;
    z-index: 9999;
    background-color: #ffcc00;
    color: #000000;
    border: none;
    padding: 10px 12px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: bold;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }

  .btn-enquire-vertical:hover {
    background-color: #ffffff;
  }
    .flip-card {
    perspective: 1000px;
  }

  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 200px;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }

  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }

  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backface-visibility: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
  }

  .flip-card-front {
    background: linear-gradient(135deg, #1e3c72, #2a5298); /* Blue theme front */
  }

  .flip-card-back {
    transform: rotateY(180deg);
  }
  .hover-shadow:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.card-img-top {
  height: 180px;
  object-fit: cover;
}
    /* Fee Structure Section */
    .fee-structure-section {
      max-width: 1200px;
      margin: 40px auto;
      padding: 20px;
      background-color: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .fee-title {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 30px;
      text-align: center;
      color: #002147;
    }

    .fee-boxes {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .fee-box {
      flex: 1 1 220px;
      padding: 25px;
      border-radius: 16px;
      text-align: center;
      transition: all 0.3s ease;
      background-color: #f5f5f5;
      color: #002147;
      font-weight: 500;
      border: 2px solid transparent;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .fee-box.highlight {
      background-color: #002147;
      color: #fff;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .fee-box:hover:not(.highlight) {
      background-color: #002147;
      color: #fff;
      cursor: pointer;
      transform: translateY(-4px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .fee-amount {
      font-size: 28px;
      font-weight: 800;
      margin-top: 10px;
    }

    .explore-btn {
      margin-top: 14px;
      background-color: #ffcc00;
      color: #002147;
      padding: 8px 22px;
      font-weight: 600;
      border-radius: 8px;
      display: inline-block;
      text-decoration: none;
      transition: background-color 0.3s;
    }

    .explore-btn:hover {
      background-color: #e6b800;
    }

       .why-amity-section img {
      height: 40px;
      object-fit: contain;
    }

    .feature-grid .feature-item img.custom-icon {
      height: 40px;
      width: 40px;
      margin-bottom: 10px;
    }

    .feature-item:nth-child(n+5) img {
      content: url('https://cdn-icons-png.flaticon.com/512/190/190411.png'); /* default icon */
    }
    .why-amity-section {
  max-width: 1200px;
  margin: 40px auto;
  text-align: center;
  padding: 0 15px;
}

.why-amity-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-amity-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.feature-item {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-item img {
  height: 50px;
  margin-bottom: 15px;
}

.feature-item h5 {
  font-size: 18px;
  font-weight: 600;
  color: #002147;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14px;
  color: #555;
}
.accordion-button {
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.accordion-button:not(.collapsed):hover {
  background-color: #001a39 !important;
}
.accordion-body ul {
  padding-left: 1.2rem;
}
.logo-slider {
  overflow: hidden;
  position: relative;
  background: transparent;
}

.logo-track {
  display: flex;
  animation: scrollLogos 30s linear infinite;
}

.logo-box {
  background: #ffffff;
  padding: 12px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 80px;
}

.logo-box:hover {
  transform: scale(1.05);
}

.btn-warning {
  background-color: #ffc107;
  border: none;
}

.btn-warning:hover {
  background-color: #e0a800;
  color: #fff;
}
  .accordion-button:not(.collapsed) {
    background-color: #ffc107 !important;
    color: #0d1b48 !important;
  }
  .accordion-button:hover {
    background-color: #ffc107 !important;
    color: #0d1b48 !important;
  }
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


    @media (max-width: 768px) {
      .form-left {
        display: none;
      }
    }
