:root {
  --sky: #0ea5e9;
  --sky-dark: #0284c7;
  --sky-deep: #0369a1;
  --sky-light: #e0f2fe;
  --sky-pale: #f0f9ff;
  --sky-mid: #bae6fd;
  --white: #ffffff;
  --dark: #0c1a2e;
  --black: #353535;
  --text: #1e3a5f;
  --muted: #436786;
  --border: #c8e4f5;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--sky-pale);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* TOP BAR */
.top-bar {
  background: var(--sky-deep);
  color: #e0f2fe;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.87rem;
  font-weight: 500;
}
.top-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.top-bar a:hover {
  border-color: #fff;
}

.header-row {
  width: 100%;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}

/* NAVBAR */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 64px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(14, 165, 233, 0.08);
}
.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--sky-deep);
}
.logo span {
  color: var(--sky);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--sky-deep);
}
.nav-tfn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--sky-light);
  border: 1.5px solid var(--sky-mid);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--sky-deep);
}
.nav-tfn a {
  color: inherit;
  text-decoration: none;
}
.nav-tfn a:hover {
  color: #00527e;
}

/* HERO */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 70px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, #bae6fd 0%, transparent 65%),
    linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 60%, #f0f9ff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.12) 0%,
    transparent 70%
  );
  top: -200px;
  left: -100px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(2, 132, 199, 0.1) 0%,
    transparent 70%
  );
  bottom: -100px;
  right: -80px;
  pointer-events: none;
}
.hero-badge {
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--sky-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 100px;
  margin-bottom: 30px;
  display: inline-block;
  animation: fadeUp 0.7s ease both;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  max-width: 800px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--sky);
}
.hero-sub {
  margin-top: 22px;
  color: var(--black);
  font-size: 1rem;
  max-width: 560px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-content {
  text-align: left;
}
.arimg-box img {
  width: 100%;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-deep) 100%);
  color: #fff;
  border: none;
  padding: 15px 38px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.35);
  transition:
    box-shadow 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: #fff;
  color: var(--sky-deep);
  border: 1.5px solid var(--border);
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}
.btn-outline:hover {
  border-color: var(--sky);
  color: var(--sky);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.12);
}
.hero-tfn {
  margin-top: 20px;
  padding: 22px 44px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.1);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero-tfn .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-tfn .number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sky-deep);
  letter-spacing: 0.05em;
}
.hero-tfn .number a {
  color: inherit;
  text-decoration: none;
}
.hero-tfn .number a:hover {
  color: #00527e;
}
.hero-tfn .avail {
  font-size: 0.78rem;
  color: #8ab4cc;
}

/* TRUST BAR */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.85rem;
}
.trust-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}
.trust-item strong {
  color: var(--text);
  font-weight: 600;
}

/* SHARED */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.section-title em {
  font-style: italic;
  color: var(--sky);
}
.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 14px;
  max-width: 500px;
}

/* SERVICES */
#services {
  padding: 100px 24px;
  background: var(--sky-pale);
  text-align: center;
}
.services-header {
  margin-bottom: 60px;
}
.services-header .section-subtitle {
  margin: 14px auto 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 30px 36px;
  text-align: left;
  transition:
    border-color 0.3s,
    transform 0.25s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--sky-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  border-radius: 0 0 14px 14px;
}
.service-card:hover {
  border-color: var(--sky-mid);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(14, 165, 233, 0.13);
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-icon {
  width: 54px;
  height: 54px;
  background: var(--sky-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}
.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.78;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--sky);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s;
}
.service-link:hover {
  gap: 10px;
}

/* WHY US */
#why-wrap {
  padding: 100px 60px 50px;
  background: #fff;
}
#why {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.why-visual {
  position: relative;
  aspect-ratio: 4/4;
  background: linear-gradient(145deg, var(--sky-light) 0%, var(--sky-mid) 100%);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-visual-inner {
  font-size: 7rem;
  /* opacity: 0.25; */
}
.why-visual-inner img {
  width: 100%;
}
.why-badge-float {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--sky-deep);
  color: #fff;
  border-radius: 10px;
  padding: 16px 22px;
  font-weight: 700;
  font-size: 0.82rem;
}
.why-badge-float .big {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  display: block;
  line-height: 1;
}
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 38px;
}
.stat-box {
  background: var(--sky-pale);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 20px;
}
.stat-box .smtitle {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 25px;
  color: var(--sky);
}
.stat-box .desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(
    135deg,
    var(--sky-deep) 0%,
    var(--sky) 60%,
    #38bdf8 100%
  );
  padding: 40px 24px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.cta-band h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 10px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  margin-bottom: 40px;
}
.cta-tfn-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  padding: 26px 52px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.cta-tfn-block .cta-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}
.cta-tfn-block .cta-num {
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
.cta-tfn-block .cta-num a {
  color: inherit;
  text-decoration: none;
}
.cta-tfn-block .cta-num a:hover {
  text-decoration: none;
}
.cta-tfn-block .cta-hours {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.btn-white {
  background: #fff;
  color: var(--sky-deep);
  border: none;
  padding: 16px 44px;
  border-radius: 6px;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.15s,
    box-shadow 0.2s;
  display: inline-block;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* TESTIMONIALS */
#testimonials {
  padding: 100px 24px;
  background: var(--sky-pale);
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1000px;
  margin: 52px auto 0;
}
.tcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: left;
  transition: box-shadow 0.25s;
}
.tcard:hover {
  box-shadow: 0 10px 32px rgba(14, 165, 233, 0.1);
}
.stars {
  color: var(--sky);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.tcard p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.78;
}
.tcard .author {
  margin-top: 20px;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.88rem;
}
.tcard .role {
  font-size: 0.78rem;
  color: #8ab4cc;
}

/* FOOTER */
footer {
  background: var(--dark);
  padding: 64px 64px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1240px;
  margin: 0 auto 30px;
}
.footer-brand .logo {
  color: #e0f2fe;
}
.footer-brand .logo span {
  color: var(--sky);
}
.footer-brand p {
  color: #a8b9c5;
  font-size: 0.84rem;
  margin-top: 12px;
  line-height: 1.75;
  max-width: 250px;
}
.footer-tfn-line {
  margin-top: 20px;
  color: var(--sky);
  font-weight: 700;
  font-size: 1rem;
}
.footer-tfn-line a {
  color: inherit;
  text-decoration: none;
}
.footer-tfn-line a:hover {
  text-decoration: underline;
}
.footer-tfn-sub {
  font-size: 0.75rem;
  color: #a8b9c5;
  margin-top: 4px;
}
footer h4 {
  color: #7ab8d4;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
footer ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
footer ul li {
  margin-bottom: 10px;
}
footer ul a {
  color: #a8b9c5;
  font-size: 0.84rem;
  text-decoration: none;
  transition: color 0.2s;
}
footer ul a:hover {
  color: var(--sky);
}
.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  border-top: 1px solid #132030;
  padding-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  color: #a8b9c5;
  font-size: 0.77rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-section {
  width: 100%;
  padding: 40px 0px;
  background-color: #fff;
}

.content-section h2,
h3 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.content-section p {
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 15px;
}

.content-section ul {
  margin: 0px;
  padding: 0px;
  padding-left: 21px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.content-section ul li {
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
}

.whyus h2 {
  margin-bottom: 30px;
}

/*=============== Responsive Css ============*/

@media (max-width: 900px) {
  nav {
    padding: 14px 0px;
  }
  .nav-links {
    display: none;
  }
  #why {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #why-wrap {
    padding: 80px 24px;
  }
  .why-visual {
    aspect-ratio: 16/9;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .arimg-box {
    display: none;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 40px 0px;
  }
  .trust-bar {
    gap: 10px;
    padding: 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  footer {
    padding: 40px 24px 28px;
  }
  .content-section h2,
  h3 {
    font-size: 18px;
    line-height: 26px;
  }

  .whyus h2 {
    margin-bottom: 20px;
  }

  .cta-band {
    padding: 45px 16px;
  }

  .cta-tfn-block {
    padding: 20px 15px;
  }
  .cta-tfn-block .cta-num {
    font-size: 1.6rem;
  }

  .hero-tfn {
    padding: 20px 15px;
  }

  .hero-sub {
    font-size: 0.925rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.925rem;
  }

  #why-wrap {
    padding: 40px 20px;
  }

  .nav-tfn {
    padding: 8px 12px;
  }

  .content-section p {
    font-size: 14px;
  }

  .content-section ul li {
    font-size: 14px;
    margin-bottom: 6px;
  }
}

@media (max-width: 400px) {
  .hero-badge {
    font-size: 0.65rem;
  }
  .hero-tfn .label {
    font-size: 0.65rem;
  }
  .nav-tfn {
    font-size: 0.8rem;
  }
  .logo {
    font-size: 1.45rem;
  }
}
