/* === NAVBAR === */
.navbar-custom {
  background-color: #000000;
  color: white;
  border-bottom: 4px solid #002B5B;
}

.brand-text {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  line-height: 1;
}

/* === BANNER === */
.banner-img {
  width: 100vw;
  height: 82vh;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
   filter: brightness(0.9) contrast(1.1);
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0040807a;
  padding: 30px;
  border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px); 
}

.btn-primary {
  background-color: #004080;
  border-color: #004080;
}

/* === ABOUT SECTION === */
.about-section {
  background-color: #f0f4ff;
  color: #333;
}

.about-section h2 {
  font-size: 2rem;
  color: #004080;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-section .btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-section .btn-warning:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.about-logo {
  max-width: 250px;
  transition: transform 0.3s ease;
}

.about-logo:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-section .row {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-logo {
    margin-top: 20px;
  }
}

/* === FEATURE SECTION === */
.feature-section {
  background-color: #002B5B;
  padding-top: 60px;
  padding-bottom: 60px;
}

.feature-section .card {
  background-color: #ffffff;
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  flex: 1;
}

.feature-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.feature-section .card-header {
  background-color: #ffc107;
  font-weight: bold;
  font-size: 1.2rem;
}

.feature-section .list-group-item {
  background-color: #ffffff;
  color: #000;
  border: none;
  text-align: justify;
}

.feature-section .col-md-4,
.feature-section .col-md-6 {
  display: flex;
}

.feature-section .row {
  justify-content: center;
}

@media (max-width: 768px) {
  .feature-section .col-md-4,
  .feature-section .col-md-6 {
    display: block;
  }
}


