body {
  background-color: #f4f4f6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #282c3f;
  margin: 0;
  padding: 0;
}

/* Top Floating Navbar */
.top-nav-wrapper {
  position: sticky;
  top: 20px;
  z-index: 1000;
  padding: 0 20px;
}
.custom-navbar {
  background: #ffffff;
  border-radius: 50px;
  padding: 12px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.navbar-brand img {
  height: 32px;
}
.nav-link {
  color: #282c3f !important;
  font-weight: 500;
  font-size: 15px;
  margin: 0 10px;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: #ff3f6c !important;
}
.gptw-badge {
  position: absolute;
  right: 40px;
  top: 10px;
  height: 70px;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 80px 20px 50px;
}
.hero-title {
  font-size: 64px;
  font-weight: 900;
  color: #ffffff;
  text-transform: capitalize;
  -webkit-text-stroke: 2px #000;
  text-shadow: 6px 6px 0px #ff3f6c, 8px 8px 0px #000;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
}

.call-btn {
  background-color: #ff3f6c;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  padding: 16px 48px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 8px 20px rgba(255, 63, 108, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.call-btn:hover {
  background-color: #d12e55;
  transform: translateY(-3px);
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(255, 63, 108, 0.5);
}

/* Contact Links & Corporate Offices */
.content-section {
  max-width: 1140px;
  margin: 0 auto 80px;
  padding: 0 20px;
}
.contact-card-row {
  border-bottom: 1px solid #eaeaec;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #282c3f;
  transition: all 0.2s ease;
}
.contact-card-row:hover {
  color: #ff3f6c;
}
.contact-card-row h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.arrow-icon-btn {
  width: 44px;
  height: 44px;
  background-color: #ff3f6c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  transition: transform 0.3s ease;
}
.contact-card-row:hover .arrow-icon-btn {
  transform: rotate(45deg);
}

.office-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}
.office-sub {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.office-desc {
  font-size: 15px;
  color: #535766;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Footer Section */
.footer-wrapper {
  max-width: 1280px;
  margin: 0 auto 30px;
  padding: 0 20px;
}
.footer-card {
  background-color: #160d27;
  border-radius: 28px;
  padding: 60px 50px 30px;
  color: #ffffff;
}
.footer-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #ffffff;
}
.footer-link {
  color: #d4d5d9;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: #ff3f6c;
}
.social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #d4d5d9;
  text-decoration: none;
}
.social-item:hover {
  color: #ff3f6c;
}
.copyright-text {
  text-align: center;
  color: #94969f;
  font-size: 13px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}
