:root {
  --primary-blue: #0056b3;
  --dark-blue: #003b7a;
  --light-blue: #eaf4ff;
  --soft-blue: #f5faff;
  --text-dark: #172033;
  --text-muted: #5d6b82;
  --border-color: #dbe9f8;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.section-padding {
  padding: 90px 0;
}

.section-subtitle {
  color: var(--primary-blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 38px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary-blue);
}

.section-text {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Buttons */
.btn-blue {
  background: var(--primary-blue);
  color: var(--white);
  border: 1px solid var(--primary-blue);
  padding: 13px 28px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-blue:hover {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 86, 179, 0.24);
}

/* Top Bar */
.top-bar {
  background: var(--dark-blue);
  color: var(--white);
  font-size: 14px;
  padding: 8px 0;
}

.top-bar i {
  color: #b9dcff;
  margin-right: 6px;
}

/* Header */
.main-navbar {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0, 59, 122, 0.08);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-blue) !important;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.4px;
  line-height: 1.15;
}

.navbar-brand img {
  /* width: 58px; */
  height: auto;
}

.brand-small {
  display: block;
  color: var(--text-muted);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  padding: 10px 14px !important;
  font-size: 15px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-blue);
}

.dropdown-menu {
  border: 1px solid var(--border-color);
  box-shadow: 0 18px 40px rgba(0, 59, 122, 0.12);
  border-radius: 14px;
  padding: 10px;
}

.dropdown-item {
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 500;
}

.dropdown-item:hover {
  background: var(--light-blue);
  color: var(--primary-blue);
}

/* Inner Banner */
.inner-banner {
  position: relative;
  padding: 120px 0;
  background:
    linear-gradient(135deg, rgba(0, 43, 91, 0.9), rgba(0, 86, 179, 0.78)),
    url("../images/Banner/3.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}

.inner-banner::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -130px;
  top: -140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.inner-banner::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.inner-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.banner-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.inner-banner h1 {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 18px;
}

.inner-banner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  margin: 0 auto 24px;
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item,
.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.breadcrumb-item a {
  color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.75);
}

/* Contact Section */
.contact-section {
  background:
    radial-gradient(circle at top left, rgba(0, 86, 179, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -140px;
  top: 160px;
  background: rgba(0, 86, 179, 0.06);
  border-radius: 50%;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

/* Contact Info Panel */
.contact-info-panel {
  height: 100%;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  border-radius: 30px;
  padding: 42px;
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 59, 122, 0.18);
  position: relative;
  overflow: hidden;
}

.contact-info-panel::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
}

.contact-panel-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.contact-panel-heading span {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #d7ecff;
  margin-bottom: 10px;
}

.contact-panel-heading h3 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.contact-panel-heading p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.contact-info-list {
  position: relative;
  z-index: 2;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-info-item:last-child {
  border-bottom: 0;
}

.contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 23px;
  color: var(--white);
}

.contact-info-item h5 {
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 5px;
}

.contact-info-item p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
  font-size: 14.5px;
  line-height: 1.65;
}

.contact-info-item a {
  color: rgba(255, 255, 255, 0.88);
}

.contact-info-item a:hover {
  color: var(--white);
}

/* Contact Form */
.contact-form-box {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 42px;
  box-shadow: 0 24px 70px rgba(0, 59, 122, 0.1);
}

.form-heading {
  margin-bottom: 30px;
}

.form-heading span {
  display: inline-block;
  color: var(--primary-blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 13px;
  margin-bottom: 8px;
}

.form-heading h3 {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-heading p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group label span {
  color: #dc3545;
}

.form-control {
  height: 54px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 12px 16px;
  color: var(--text-dark);
  font-size: 15px;
  box-shadow: none;
  transition: all 0.3s ease;
}

textarea.form-control {
  height: auto;
  resize: none;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

.contact-submit-btn {
  width: 100%;
  border-radius: 16px;
  padding: 16px 28px;
}

.contact-submit-btn i {
  margin-left: 6px;
}

/* Quick Contact */
.quick-contact-section {
  padding: 0 0 80px;
  background: var(--soft-blue);
}

.quick-contact-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text-dark);
  box-shadow: 0 16px 40px rgba(0, 59, 122, 0.08);
  transition: all 0.35s ease;
}

.quick-contact-card:hover {
  transform: translateY(-8px);
  color: var(--text-dark);
  border-color: #b8dcff;
  box-shadow: 0 24px 60px rgba(0, 86, 179, 0.14);
}

.quick-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--light-blue);
  color: var(--primary-blue);
  font-size: 30px;
}

.quick-contact-card h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.quick-contact-card p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 14.5px;
  word-break: break-word;
}

/* Map */
.map-section {
  padding: 0 0 80px;
  background: var(--soft-blue);
}

.map-wrapper {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 24px 70px rgba(0, 59, 122, 0.12);
}

.map-wrapper iframe {
  display: block;
}

/* CTA */
.contact-cta {
  background: var(--white);
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  border-radius: 30px;
  padding: 55px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  right: -70px;
  bottom: -90px;
}

.cta-box h2 {
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 12px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 0;
}

.cta-btn {
  position: relative;
  z-index: 2;
  color: var(--primary-blue);
  border-radius: 50px;
  padding: 14px 30px;
  font-weight: 800;
}

/* Footer */
.footer {
  background: #071d38;
  color: rgba(255, 255, 255, 0.78);
  padding-top: 75px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 58px;
  height: auto;
}

.footer h5 {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: #b9dcff;
  font-size: 18px;
  margin-top: 4px;
  min-width: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  margin-top: 55px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .section-title {
    font-size: 34px;
  }

  .inner-banner h1 {
    font-size: 46px;
  }

  .contact-info-panel,
  .contact-form-box {
    padding: 34px;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }

  .top-bar {
    text-align: center;
  }

  .top-bar .top-right {
    margin-top: 6px;
  }

  .navbar-collapse {
    background: var(--white);
    padding: 16px 0 8px;
  }

  .inner-banner {
    padding: 95px 0;
  }

  .inner-banner h1 {
    font-size: 39px;
  }

  .inner-banner p {
    font-size: 16px;
  }

  .contact-info-panel,
  .contact-form-box {
    border-radius: 24px;
  }

  .quick-contact-section {
    padding-bottom: 70px;
  }

  .map-section {
    padding-bottom: 70px;
  }

  .cta-box {
    padding: 42px 30px;
  }

  .cta-box h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .navbar-brand {
    font-size: 20px;
  }

  .navbar-brand img {
    width: 48px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 29px;
  }

  .inner-banner {
    padding: 80px 0;
  }

  .inner-banner h1 {
    font-size: 32px;
  }

  .contact-info-panel,
  .contact-form-box {
    padding: 28px 22px;
  }

  .contact-panel-heading h3,
  .form-heading h3 {
    font-size: 25px;
  }

  .contact-info-item {
    gap: 13px;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 20px;
  }

  .quick-contact-card {
    padding: 22px;
  }

  .map-wrapper {
    border-radius: 22px;
  }

  .map-wrapper iframe {
    height: 360px;
  }

  .contact-cta {
    padding: 60px 0;
  }

  .cta-box {
    border-radius: 24px;
    text-align: center;
  }

  .cta-box h2 {
    font-size: 27px;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 50px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .section-text {
    font-size: 15px;
  }

  .inner-banner h1 {
    font-size: 29px;
  }

  .inner-banner p {
    font-size: 15px;
  }

  .banner-subtitle {
    font-size: 12px;
  }

  .contact-info-panel,
  .contact-form-box {
    border-radius: 20px;
  }

  .contact-info-item {
    align-items: flex-start;
  }

  .quick-contact-card {
    align-items: flex-start;
  }

  .quick-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 26px;
  }

  .quick-contact-card h4 {
    font-size: 18px;
  }

  .footer-logo {
    font-size: 19px;
  }
}


