/* General Styles */
body {
  font-family: 'Prompt', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #1a202c;
  line-height: 1.6;
}

/* Navigation Bar */
.navbar {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 0.75rem 0;
}

.navbar-brand, .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #90cdf4 !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(30, 58, 95, 0.75), rgba(44, 82, 130, 0.75)), url('assets/banner-img.jpg') no-repeat center center/cover;
  padding: 100px 0;
  color: #ffffff;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  font-weight: 300;
  color: #f7fafc;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
  background-color: #f7fafc;
  padding: 80px 0;
}

.services h2 {
  color: #1e3a5f;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.services .card {
  border: none;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.services .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.2);
}

.services .card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 0.75rem;
}

.services .card-text {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
}

/* About Section */
.about {
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  padding: 80px 0;
}

.about h2 {
  color: #1e3a5f;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about p {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.8;
}

.about strong {
  color: #1e3a5f;
  font-weight: 600;
}

/* Contact Section */
.contact {
  background-color: #ffffff;
  padding: 80px 0;
}

.contact h2 {
  color: #1e3a5f;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact h3 {
  color: #1e3a5f;
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.contact .form-control {
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Prompt', sans-serif;
}

.contact .form-control:focus {
  border-color: #2c5282;
  box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
  outline: none;
}

.contact .form-label {
  color: #1e3a5f;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact .btn-primary {
  background: linear-gradient(135deg, #2c5282 0%, #1e3a5f 100%);
  border: none;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.contact .btn-primary:hover {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 58, 95, 0.4);
}

.contact-info {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.1);
  border: 1px solid #e2e8f0;
}

.contact-info h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.contact-info a {
  color: #2c5282;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #1e3a5f;
  text-decoration: underline;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
  color: #ffffff;
  padding: 32px 0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

footer p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

footer a {
  color: #90cdf4;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

#email-status {
  display: none;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  margin-top: 10px;
}
.fade-out {
  animation: fadeOut 5s forwards;
}
@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; display: none; }
}

.hero {
  position: relative;
  background: url('assets/banner-img.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.75) 0%, rgba(44, 82, 130, 0.75) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .btn-light {
  background-color: #ffffff;
  color: #1e3a5f;
  border: none;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero .btn-light:hover {
  background-color: #f7fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  color: #1e3a5f;
}


.contact-form {
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.1);
  border: 1px solid #e2e8f0;
}

.contact .btn-primary {
  width: 100%;
}

.contact .row {
  display: flex;
  align-items: stretch;
}

.contact .contact-form,
.contact .contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}



.prompt-thin {
  font-family: "Prompt", serif;
  font-weight: 100;
  font-style: normal;
}

.prompt-extralight {
  font-family: "Prompt", serif;
  font-weight: 200;
  font-style: normal;
}

.prompt-light {
  font-family: "Prompt", serif;
  font-weight: 300;
  font-style: normal;
}

.prompt-regular {
  font-family: "Prompt", serif;
  font-weight: 400;
  font-style: normal;
}

.prompt-medium {
  font-family: "Prompt", serif;
  font-weight: 500;
  font-style: normal;
}

.prompt-semibold {
  font-family: "Prompt", serif;
  font-weight: 600;
  font-style: normal;
}

.prompt-bold {
  font-family: "Prompt", serif;
  font-weight: 700;
  font-style: normal;
}

.prompt-extrabold {
  font-family: "Prompt", serif;
  font-weight: 800;
  font-style: normal;
}

.prompt-black {
  font-family: "Prompt", serif;
  font-weight: 900;
  font-style: normal;
}

.prompt-thin-italic {
  font-family: "Prompt", serif;
  font-weight: 100;
  font-style: italic;
}

.prompt-extralight-italic {
  font-family: "Prompt", serif;
  font-weight: 200;
  font-style: italic;
}

.prompt-light-italic {
  font-family: "Prompt", serif;
  font-weight: 300;
  font-style: italic;
}

.prompt-regular-italic {
  font-family: "Prompt", serif;
  font-weight: 400;
  font-style: italic;
}

.prompt-medium-italic {
  font-family: "Prompt", serif;
  font-weight: 500;
  font-style: italic;
}

.prompt-semibold-italic {
  font-family: "Prompt", serif;
  font-weight: 600;
  font-style: italic;
}

.prompt-bold-italic {
  font-family: "Prompt", serif;
  font-weight: 700;
  font-style: italic;
}

.prompt-extrabold-italic {
  font-family: "Prompt", serif;
  font-weight: 800;
  font-style: italic;
}

.prompt-black-italic {
  font-family: "Prompt", serif;
  font-weight: 900;
  font-style: italic;
}