@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
:root {
  --color-primary: #004d99;
  --color-secondary: #f4f7f9;
  --color-accent-green: #28a745;
  --color-text-dark: #333;
  --color-text-light: #fff;

  --border-radius-card: 14px;
  --border-radius-input: 8px;

  --shadow-subtle: 0 6px 18px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 18px 40px rgba(0, 0, 0, 0.15);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--color-secondary);
  color: var(--color-text-dark);
  line-height: 1.7;
}
.navbar {
  background: #3e5ab6;
  box-shadow: var(--shadow-subtle);
}

.navbar-brand img {
  height: 80px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 8px 14px;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 1050;
  padding: 90px 25px 20px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.18);

  display: flex;
  flex-direction: column;
}

.mobile-drawer.active {
  right: 0;
}

.close-drawer {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-nav {
  list-style: none;
  flex: 1;
  overflow-y: auto;
  padding-bottom: 90px;
}

.mobile-nav li {
  margin-bottom: 22px;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--color-text-dark);
  font-size: 1.15rem;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
}

.mobile-nav a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}
.mobile-nav li:last-child {
  position: sticky;
  bottom: 10px;
}
.mobile-nav li:last-child a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  background: var(--color-accent-green);
  color: #fff;
  box-shadow: 0 12px 30px rgba(40, 167, 69, 0.45);
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1040;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
  }
}
section {
  padding: 70px 5%;
}

.section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--color-primary);
}
.hero-section {
  min-height: 70vh;
  background: url(bg11111.jpg) center/cover no-repeat;
  background-color: rgba(0, 0, 0, 0.55);
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--color-text-light);
}
.card {
  background: #fff;
  border-radius: var(--border-radius-card);
  padding: 32px;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--border-radius-input);
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 77, 153, 0.15);
}
.btn {
  padding: 12px 26px;
  border-radius: var(--border-radius-input);
  font-weight: 600;
}

.btn-primary {
  background: var(--color-accent-green);
  border: none;
  color: #fff;
}
.footer-enhanced {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding-top: 3rem;
}

.footer-enhanced h5 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-enhanced h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #3498db;
}

.footer-enhanced ul {
  list-style: none;
  padding-left: 0;
}

.footer-enhanced li {
  margin-bottom: 0.75rem;
}

.footer-enhanced a {
  color: #bdc3c7;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.footer-enhanced a:hover {
  color: #3498db;
  padding-left: 5px;
}

.footer-enhanced .icon {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.footer-bottom-enhanced {
  background-color: #1a252f;
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-right: 10px;
  color: #ecf0f1;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: #3498db;
  transform: translateY(-3px);
}
.feature-card {
  transition: transform 0.3s, box-shadow 0.3s;
  background: white;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}
@media (max-width: 768px) {
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .contact-info-card,
  .contact-cta-card {
    width: 100% !important;
    margin-bottom: 1.5rem !important;
    padding: 1.5rem !important;
  }

  .contact-section {
    padding: 2rem 0 !important;
  }

  .section-title {
    margin-bottom: 2rem !important;
  }

  .contact-info-card p {
    margin-bottom: 1.25rem !important;
    line-height: 1.6 !important;
  }

  .contact-cta-card .btn {
    margin-bottom: 1rem !important;
    width: 100% !important;
    padding: 0.75rem 1rem !important;
  }

  .mobile-drawer {
    width: 280px !important;
  }

  .mobile-nav li {
    margin-bottom: 1rem !important;
  }

  .mobile-nav a.btn {
    margin-top: 1rem !important;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .contact-grid {
    gap: 1.5rem !important;
  }
}

.contact-section {
  padding: 3rem 0;
  background-color: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #2c3e50;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-info-card,
.contact-cta-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: transform 0.3s ease;
  background: white;
}

.contact-info-card:hover,
.contact-cta-card:hover {
  transform: translateY(-5px);
}

.contact-info-card h3,
.contact-cta-card h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e9ecef;
}

.contact-info-card i {
  color: #3498db;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.contact-info-card a {
  color: #3498db;
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}
