:root {
  --blue: #2b2f7a;
  --blue-dark: #1f265a;
  --teal: #1ba6a6;
  --orange: #f6a73f;
  --cream: #f4f3ed;
  --white: #ffffff;
  --text-dark: #10142c;
  --text-mid: #4a4f60;
  --border: #e2e2de;
  --shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  --radius: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.topbar {
  background: var(--teal);
  color: var(--white);
  padding: 6px 24px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar .ico {
  font-size: 12px;
  opacity: 0.9;
}

.topbar .sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
}

.nav {
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.nav__brand {
  display: flex;
  align-items: center;
}

.nav__logo-card {
  background: var(--white);
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.nav__logo-card img {
  height: 52px;
}

.nav__links {
  display: flex;
  gap: 22px;
  font-size: 14px;
}

.nav__links a {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav__link--active {
  color: var(--teal);
}

.nav__links a:hover {
  opacity: 0.85;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn--cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
    padding: 12px 16px 12px 18px;
  border-radius: 12px;
   background: var(--orange);
  color: var(--white);
  text-decoration: none;
}

.btn--cta:hover {
  transform: translateY(-1px);
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn--icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  color: var(--blue-dark);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 16px;
  padding: 0;           /* important */
}

.hero {
  position: relative;
  background: #2f3379;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 24px;
}

/* Background layer */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 50%, rgba(228,130,130,0.55) 0%, rgba(47,51,121,0) 48%),
    linear-gradient(135deg, rgba(43,47,122,0.95), rgba(34,35,90,0.95)),
    url('../contactus-images/Background.png') center/cover no-repeat;
  z-index: 0;
}

/* Inner container */
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: -60px;
}

/* Left text */
.hero__copy h1 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 6px;
}

.breadcrumb {
  color: #cfd3ff;
  font-size: 14px;
}

/* Decorative arrows */
.hero__decor {
  position: absolute;
  width: 22px;
  height: 22px;
  border-left: 4px solid #5bc8d8;
  border-top: 4px solid #5bc8d8;
  transform: rotate(-45deg);
}

.hero__decor--left {
  left: -40px;
  top: 20px;
}

.hero__decor--right {
  right: 40px;
  top: 60px;
}

/* Right image */
.hero__figure {
  position: relative;
  justify-self: end;
  max-width: 420px;
}
.hero__figure .arrow-icon1{
  height: 14px;
  width: 13px;
  top: 85px;
  left: 189px;
  transform: rotate(61deg)
}
.hero__figure .arrow-icon2{
    height: 14px;
    width: 13px;
    left: 22rem;
    top: 119px;
    transform: rotate(-18deg);
}

.hero__figure img {
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Glow behind image */
.hero__glow {
  position: absolute;
  inset: 10% 5% 0 5%;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 65%);
  filter: blur(35px);
  z-index: 1;
}

.section-title {
  text-align: center;
  margin: 0 0 28px;
  font-size: 22px;
  color: var(--text-dark);
}


.contact {
  background: #f9f9f4;
  padding: 80px 24px;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.contact__title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}

.contact__grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT */
.contact__tag {
  font-size: 13px;
  color: #2f3379;
  font-weight: 600;
}

.contact__heading {
  font-size: 32px;
  line-height: 1.2;
  margin: 12px 0 30px;
  color: #1f2a44;
}
.contact__meta-wrapper {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  padding: 23px 0 3px 0;
  margin: 28px 0;
}

.contact__meta {
  display: flex;
  gap: 40px;
  margin-bottom: 25px;
}

.meta-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.Horizline{
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.meta-item p {
  font-size: 14px;
  margin: 0;
  color: #1f2a44;
  font-weight: 600;
}

.meta-item span {
  font-size: 13px;
  color: #666;
}

.icon {
  width: 36px;
  height: 36px;
  background: #2f3379;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.location {
  margin-bottom: 30px;
}

/* HOURS */
.hours {
  background: #2f3379;
  color: #fff;
  padding: 15px;
  border-radius: 4px;
}

.hours h4 {
  margin-bottom: 15px;
  font-size:15px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.hours-row:last-child {
  border-bottom: none;
}

/* RIGHT FORM */
.contact__form {
  background: #fff;
  padding: 40px;
}

.contact__form h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.form-desc {
  font-size: 13px;
  color: #777;
  margin-bottom: 25px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  background: #f4f4ee;
  border: none;
  font-size: 13px;
}

textarea {
  margin-top: 16px;
  min-height: 110px;
  resize: none;
}

button {
  margin-top: 24px;
  width: 100%;
  padding: 14px;
  background: #2f3379;
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
}


.btn--submit:hover {
  opacity: 0.9;
}

.map {
  margin: 0;
}

.map iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* Footer */
.footer {
  /* background: url('../images/Background (1).png') no-repeat center center/cover; */
  background: var(--blue-dark);
  padding: 60px 24px 24px;
  position: relative;
  overflow: hidden;
  color: #dfe4ff;
}

/* Background Decor */
.footer__bg-decor {
  position: absolute;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

/* Top Left: Pyramid/Triangle (CSS Implementation) */
.text-left {
  top: 60px;
  left: 0;
  width: 100px;
  height: 100px;
  opacity: 0.6;
  background: none;
}

.text-left::before,
.text-left::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}

/* Main Triangle */
.text-left::after {
  top: 0;
  left: 0;
  border-width: 0 50px 80px 50px;
  border-color: transparent transparent rgba(91, 200, 216, 0.2) transparent;
  /* Cyan-ish tint */
  transform: rotate(-15deg);
}

/* Inner Triangle Detail */
.text-left::before {
  top: 20px;
  left: 10px;
  border-width: 0 30px 50px 30px;
  border-color: transparent transparent rgba(91, 200, 216, 0.4) transparent;
  transform: rotate(-15deg);
  z-index: 2;
}

/* Top Right: X Shape (CSS Implementation) */
.text-right {
  top: 40px;
  right: 20px;
  width: 100px;
  height: 100px;
  opacity: 0.5;
  background: none;
}

.text-right::before,
.text-right::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 10px;
  background: rgba(91, 200, 216, 0.4);
  /* Cyan tint */
  border-radius: 4px;
}

.text-right::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.text-right::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Bottom Left: Double Chevrons (>>) */
.decor-bottom-left {
  bottom: 40px;
  left: 40px;
  width: 60px;
  height: 40px;
}

.decor-bottom-left::before,
.decor-bottom-left::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-right: 4px solid rgba(255, 255, 255, 0.15);
  border-bottom: 4px solid rgba(255, 255, 255, 0.15);
  transform: rotate(-45deg);
}

.decor-bottom-left::before {
  left: 0;
}

.decor-bottom-left::after {
  left: 16px;
}


/* Bottom Right: Slashes (//) */
.decor-bottom-right {
  bottom: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
}

.decor-bottom-right::before,
.decor-bottom-right::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(25deg);
}

.decor-bottom-right::before {
  right: 14px;
}

.decor-bottom-right::after {
  right: 0;
}


.footer__inner {
  width: var(--container);
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Top Row */
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.footer__logo-card {
  background: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer__logo-card img {
  height: 40px;
}

.footer__socials-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-label {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  background: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--blue-dark);
  transition: transform 0.2s;
  font-style: normal;
  text-decoration: none;
}

.socials a:hover {
  transform: translateY(-2px);
}

/* Columns */
.footer__cols {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  /* Prevent overflow with minmax */
  gap: 20px;
  /* Reduced gap to fit content */
  margin-bottom: 60px;
  align-items: start;
}

.footer__col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 24px;
  font-weight: 600;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  color: #dfe4ff;
  font-size: 14px;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--white);
}

/* Contact Col */
.footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #dfe4ff;
}

.footer__contact-list .icon {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* Subscribe Col */
.subscribe-col {
  max-width: 280px;
}

.subscribe-text {
  font-size: 13px;
  color: #dfe4ff;
  line-height: 1.5;
  margin-bottom: 20px;
}

.subscribe-form {
  position: relative;
  background: var(--white);
  border-radius: 6px;
  padding: 4px;
  display: flex;
}
.subscribe-form .submit-arrow{
  position: relative;
    bottom: 12px;
    left: 20px;
}

.subscribe-form input {
  border: none;
  background: transparent;
  padding: 10px 12px;
  width: 100%;
  font-size: 13px;
  color: var(--text-dark);
}

.subscribe-form input:focus {
  outline: none;
}

.subscribe-form button {
  background: transparent;
  border: none;
  color: var(--blue-dark);
  font-weight: bold;
  cursor: pointer;
  padding: 0 12px;
  font-size: 16px;
}

/* Bottom Copy */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer__copy {
  font-size: 12px;
  color: #a0a6cc;
}

@media (max-width: 900px) {
  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .footer__cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__figure {
    justify-self: center;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav__links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .form__grid {
    grid-template-columns: 1fr;
  }
}