.custom-btn {
  background-color: #4a90e2;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  transition: 0.3s ease;
}

.custom-btn:hover {
  background-color: #357ABD;
  transform: scale(1.05);
}

.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20vh;
}

.navbar-brand {
    font-family: Outfit, sans-serif;
    font-weight: 700;
}

.nav-item {
    font-family: Outfit, sans-serif;
}

.form-control.me-2 {
    font-family: Outfit, sans-serif;
}

.dropdown-menu {
    font-family: Outfit, sans-serif;
}

.btn.btn-outline-success {
    font-family: Outfit, sans-serif;
    font-weight: 600;
}

body {
  background: url('/panel-one/img/photo-1724405143873-cdaa5cac918e.jpeg') center/cover no-repeat fixed;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.card img {
  height: 250px;
  object-fit: cover;
}

.card-body {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem;
}

.card-title {
  margin: 0;
  font-weight: 600;
}

.about-section {
  background-color: #b3e5fc;
  color: #0a0a0a;
  padding: 100px 0;
}

.about-section h2 {
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.about-section p {
  font-size: 1.1rem; 
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-img {
  max-width: 100%;
  border-radius: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

@media (min-width: 992px) {
  .about-section .col-md-6:first-child {
    padding-right: 3rem;
  }
  .about-section .col-md-6:last-child {
    padding-left: 3rem;
  }
}

.contact-section {
  background: #f2f2f2; /* grey */
}

.glow-card {
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(2px);
  transition: box-shadow .25s ease, transform .25s ease;
}
.glow-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.15), 0 0 0 4px rgba(0, 123, 255, .08);
}

.contact-section h2 {
  -webkit-text-stroke-width: 1px; /* Sets the thickness of the outline */
  -webkit-text-stroke-color: black;
}

.contact-section .form-control {
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  padding: .9rem 1rem;
  transition: box-shadow .2s ease, border-color .2s ease;
  background: #fff;
}
.contact-section .form-control:focus {
  border-color: #9fd3ff;
  box-shadow: 0 0 0 0.25rem rgba(33,150,243,.15);
}

.btn-cta {
  background: linear-gradient(90deg, #111, #2a2a2a 60%, #111);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: .9rem 1.1rem;
  letter-spacing: .4px;
  transition: transform .15s ease, box-shadow .25s ease, opacity .15s ease;
}
.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  opacity: .95;
}
.btn-cta:active {
  transform: translateY(0);
}

.contact-section h2 {
  letter-spacing: .5px;
}


