/* =====================================================
   ROOT VARIABLES
===================================================== */
:root {
  --blue: #0756d8;
  --blue-dark: #063b91;
  --green: #61a845;
  --dark-blue: #101a36;
  --dark: #0c1630;
  --text: #5d6b88;
  --light-blue: #edf4ff;
  --light-bg: #f6f9ff;
  --border: #dfe7f5;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(21, 54, 110, 0.10);
}

/* =====================================================
   RESET
===================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: "DM Sans", sans-serif; color: var(--dark-blue); background: #fff; overflow-x: hidden; }
body.loaded { opacity: 1; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: inherit; }
h1, h2, h3 { font-family: "Manrope", sans-serif; }

/* =====================================================
   LAYOUT
===================================================== */
.container { width: min(1180px, 92%); margin: auto; }
.section { padding: 100px 0; }

/* =====================================================
   SCROLL REVEAL
===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* =====================================================
   SECTION LABEL & HEAD
===================================================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.section-label::before,
.section-label::after { content: ""; width: 25px; height: 2px; background: var(--blue); transition: 0.4s; }
.section-label:hover::before { width: 40px; }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-head h2 { font-size: 42px; line-height: 1.15; letter-spacing: -0.035em; margin: 15px 0; }
.section-head p { color: var(--text); line-height: 1.8; }

/* =====================================================
   HEADER
===================================================== */
.header-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.header-wrap.scrolled {
  background: transparent(255, 255, 255, 0.96);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 30px rgba(10, 40, 90, 0.08);
  padding: 7px 0;
}

.nav {
  height: 70px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 20px;
}
.scrolled .nav { background: #fff; border: 1px solid #e7edf7; }

/* =====================================================
   LOGO
===================================================== */
.logo { display: flex; align-items: center; width: max-content; }
.logo-image { width: 245px; height: 52px; object-fit: contain; object-position: left center; transition: 0.35s; }
.logo:hover .logo-image { transform: scale(1.03); }

/* =====================================================
   NAVIGATION MENU
===================================================== */
.menu { display: flex; align-items: center; gap: 24px; }
.menu > a, .drop > a { font-size: 14px; color: #66718a; position: relative; padding: 8px 0; transition: 0.25s; }
.menu > a:hover, .drop > a:hover, .menu > a.active { color: var(--blue); }

.menu > a.active::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 22px; height: 2px;
  background: var(--blue);
  animation: navLine 0.35s ease;
}
@keyframes navLine { from { width: 0; } to { width: 22px; } }

/* Dropdown */
.drop { position: relative; }
.drop > a::after { content: ""; margin-left: 6px; }
.drop-menu {
  position: absolute;
  top: 38px; left: -20px;
  width: 250px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.drop:hover .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu a { display: block; padding: 11px 13px; border-radius: 9px; font-size: 13px; color: #586782; transition: 0.2s; }
.drop-menu a:hover { background: #f0f5ff; color: var(--blue); transform: translateX(4px); }

/* =====================================================
   HEADER CTA BUTTON
===================================================== */
.header-cta {
  justify-self: end;
  background: var(--blue);
  color: #fff;
  padding: 11px 20px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}
.header-cta:hover { background: var(--blue-dark); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(7, 86, 216, 0.25); }

/* =====================================================
   MOBILE NAV
===================================================== */
.mobile-btn { display: none; border: 0; background: transparent; font-size: 27px; color: var(--dark-blue); cursor: pointer; }
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #e8edf5;
  padding: 10px 4% 15px;
  animation: mobileMenu 0.3s ease;
}
@keyframes mobileMenu {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu a { display: block; padding: 10px 0; color: #56647d; font-size: 14px; }
.mobile-services { padding-left: 15px !important; font-size: 13px !important; }

/* =====================================================
   BUTTONS
===================================================== */
.buttons { display: flex; gap: 13px; flex-wrap: wrap; animation: fadeUp 1s ease 0.7s both; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 21px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 12px 25px rgba(7, 86, 216, 0.18); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-4px); box-shadow: 0 16px 30px rgba(7, 86, 216, 0.25); }
.btn-outline { border: 1px solid #cbd8ed; color: var(--dark-blue); background: #fff; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-4px); }

/* =====================================================
   HERO
===================================================== */
.hero {
  position: relative;
  min-height: 760px;
  background: #f6f9ff;
  padding: 130px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  right: -250px; top: -180px;
  background: rgba(7, 86, 216, 0.08);
  border-radius: 50%;
  animation: heroCircle 9s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  left: -180px; bottom: 0;
  background: rgba(97, 168, 69, 0.08);
  border-radius: 50%;
  animation: heroCircle2 11s ease-in-out infinite;
}
@keyframes heroCircle {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%       { transform: translate(-30px, 30px) rotate(20deg); }
}
@keyframes heroCircle2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(30px, -20px); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 60px;
  align-items: center;
}
.hero-copy { max-width: 620px; animation: heroText 1s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
@keyframes heroText {
  from { opacity: 0; transform: translateX(-70px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-copy h1 { font-size: clamp(43px, 5.3vw, 46px); line-height: 1.30; letter-spacing: -0.045em; margin: 20px 0; }
.hero-copy h1 span { color: var(--blue); display: inline-block; animation: blueText 1.3s ease 0.4s both; }
@keyframes blueText {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-copy p { font-size: 17px; line-height: 1.8; color: var(--text); max-width: 580px; margin: 25px 0 30px; animation: fadeUp 1s ease 0.5s both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero Image */
.hero-visual { position: relative; animation: heroImage 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
@keyframes heroImage {
  from { opacity: 0; transform: translateX(70px) scale(0.95); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-photo { height: 620px; border-radius: 30px; overflow: hidden; box-shadow: 0 30px 70px rgba(17, 48, 100, 0.16); border: 7px solid rgba(255, 255, 255, 0.8); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.hero-photo:hover img { transform: scale(1.06); }

.hero-stat {
  position: absolute;
  right: -25px; top: 30px;
  background: var(--dark-blue);
  color: #fff;
  border-radius: 17px;
  padding: 17px 20px;
  animation: floatingCard 4s ease-in-out infinite;
}
.hero-stat strong { display: block; font: 800 25px "Manrope"; }
.hero-stat span { font-size: 10px; color: #cbd4e7; }

.float-card {
  position: absolute;
  left: -35px; bottom: 35px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 17px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 13px;
  animation: floatingCard2 4.5s ease-in-out infinite;
}
@keyframes floatingCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes floatingCard2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

.float-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--light-blue); color: var(--blue); display: grid; place-items: center; font-size: 19px; }
.float-card strong { font-size: 14px; }
.float-card small { display: block; color: var(--text); font-size: 11px; margin-top: 2px; }
/* =====================================================
   TRUST BAR
===================================================== */
.trust { background: #fff; padding: 28px 0; border-bottom: 1px solid #edf1f7; }
.trust-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; color: #8290a9; font-size: 10px; font-weight: 600; }
.trust-item { transition: 0.3s; }
.trust-item:hover { color: var(--blue); transform: translateY(-3px); }
.trust-item span { color: var(--green); margin-right: 7px; }

/* =====================================================
   SERVICES
===================================================== */

/* =====================================================
   SERVICES GRID
===================================================== */

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

/* Each card occupies 2 columns
   = 3 cards per row */
.service-card {
  grid-column: span 2;

  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  background: #fff;

  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s,
    border-color 0.4s;

  position: relative;
  overflow: hidden;
}

/* =====================================================
   CENTER SERVICE 7 & SERVICE 8
===================================================== */

.service-grid .service-card:nth-child(7) {
  grid-column: 2 / span 2;
}

.service-grid .service-card:nth-child(8) {
  grid-column: 4 / span 2;
}

/* =====================================================
   SERVICE CARD TOP LINE
===================================================== */

.service-card::before {
  content: "";

  position: absolute;
  left: 0;
  top: 0;

  width: 100%;
  height: 3px;

  background: linear-gradient(
    90deg,
    var(--blue),
    var(--green)
  );

  transform: scaleX(0);
  transform-origin: left;

  transition: 0.4s;
}

/* =====================================================
   SERVICE CARD HOVER
===================================================== */

.service-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 25px 55px rgba(21, 54, 110, 0.13);

  border-color: #cbd9ef;
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* =====================================================
   SERVICE ICON
===================================================== */

.service-icon {
  width: 52px;
  height: 52px;

  border-radius: 15px;

  background: var(--light-blue);
  color: var(--blue);

  display: grid;
  place-items: center;

  font-size: 23px;

  margin-bottom: 20px;

  transition: 0.35s;
}

.service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.08);

  background: var(--blue);
  color: #fff;
}

/* =====================================================
   SERVICE TITLE
===================================================== */

.service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

/* =====================================================
   SERVICE DESCRIPTION
===================================================== */

.service-card p {
  color: var(--text);

  font-size: 13px;
  line-height: 1.75;
}

/* =====================================================
   SERVICE LINK
===================================================== */

.service-link {
  display: inline-block;

  margin-top: 18px;

  color: var(--blue);

  font-size: 12px;
  font-weight: 700;

  transition: 0.25s;
}

.service-link:hover {
  transform: translateX(5px);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    grid-column: span 1;
  }

  /* Reset desktop positioning */
  .service-grid .service-card:nth-child(7),
  .service-grid .service-card:nth-child(8) {
    grid-column: span 1;
  }

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card,
  .service-grid .service-card:nth-child(7),
  .service-grid .service-card:nth-child(8) {
    grid-column: span 1;
  }

  .service-card {
    padding: 24px;
  }

}

/* =====================================================
   ABOUT
===================================================== */
.about { background: var(--light-bg); }
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 75px; align-items: center; }
.about-image { position: relative; overflow: visible; }
.about-image img { height: 590px; width: 100%; object-fit: cover; border-radius: 25px; transition: transform 0.7s ease, box-shadow 0.7s ease; }
.about-image:hover img { transform: scale(1.025); box-shadow: 0 30px 70px rgba(20, 50, 100, 0.18); }
.about-badge {
  position: absolute;
  right: -25px; bottom: 28px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 17px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  animation: floatingCard 5s ease-in-out infinite;
}
.about-badge strong { display: block; font: 800 25px "Manrope"; color: var(--blue); }
.about-badge span { font-size: 11px; color: var(--text); }

.about-copy h2 { font-size: 42px; letter-spacing: -0.035em; margin: 16px 0; }
.about-copy > p { color: var(--text); line-height: 1.8; margin-bottom: 18px; }

.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin: 25px 0; }
.check { font-size: 13px; font-weight: 600; display: flex; gap: 9px; transition: 0.25s; }
.check:hover { transform: translateX(5px); }
.check i { color: var(--green); font-style: normal; }

/* =====================================================
   SPECIALTIES
===================================================== */
.specialty-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.specialty-card {
  position: relative;
  min-height: 150px;
  border-radius: 20px;
  overflow: hidden;
  background: #10244d;
  color: #fff;
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.specialty-card:hover { transform: translateY(-10px) scale(1.015); box-shadow: 0 25px 60px rgba(10, 40, 90, 0.20); }
.specialty-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 40, 90, 0.05), rgba(8, 23, 54, 0.92));
}
.specialty-content { position: relative; z-index: 2; }
.specialty-icon { width: 76px; height: 76px; border-radius: 13px; display: grid; place-items: center; background: rgb(255, 255, 255); margin-bottom: 16px; font-size: 20px; transition: 0.35s; }
.specialty-card:hover .specialty-icon { transform: rotate(8deg) scale(1.1); background: rgba(255, 255, 255, 0.25); }
.specialty-card h3 { font-size: 15px; margin-bottom: 7px; }
.specialty-card p { color: #d5deed; font-size: 12px; line-height: 1.6; }

/* =====================================================
   WHY US
===================================================== */
.why-us { background: var(--light-bg); }
.why-us-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 75px; align-items: center; }
.why-us-image { position: relative; }
.why-us-image img { width: 100%; height: 670px; object-fit: cover; border-radius: 28px; box-shadow: 0 25px 60px rgba(20, 50, 100, 0.14); transition: 0.8s ease; }
.why-us-image:hover img { transform: scale(1.025); }
.why-image-badge {
  position: absolute;
  left: 25px; bottom: 25px;
  background: #fff;
  border-radius: 17px;
  padding: 17px 21px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  animation: floatingCard2 5s ease-in-out infinite;
}
.why-image-badge strong { display: block; color: var(--blue); font: 800 23px "Manrope"; }
.why-image-badge span { color: var(--text); font-size: 11px; }

.why-us-content h2 { font-size: 43px; line-height: 1.15; letter-spacing: -0.04em; margin: 15px 0 8px; }
.why-subheading { font-family: "Manrope", sans-serif; color: var(--blue); font-size: 20px; font-weight: 700; line-height: 1.45; margin-bottom: 18px; }
.why-us-content > p { color: var(--text); line-height: 1.85; font-size: 14px; margin-bottom: 28px; }

.why-pointers { display: grid; gap: 13px; }
.why-pointer {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 13px 15px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.why-pointer:hover { transform: translateX(8px); border-color: #b9cbea; box-shadow: 0 10px 25px rgba(20, 60, 120, 0.06); }

.pointer-icon {
  flex: 0 0 32px;
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s;
}
.why-pointer:hover .pointer-icon { transform: rotate(10deg) scale(1.08); }
.pointer-text h3 { font-size: 14px; margin-bottom: 3px; }
.pointer-text p { color: var(--text); font-size: 12px; line-height: 1.55; }

/* =====================================================
   PARTNERSHIPS
===================================================== */
.partnerships {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

/* =====================================================
   PARTNERSHIP SECTION HEADING
===================================================== */

.partnerships .section-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 20px;
}

.partnerships .section-label {
  margin-bottom: 10px;
}

.partnerships .section-head h2 {
  margin-bottom: 0;
}

/* =====================================================
   PARTNERSHIP INTRO
===================================================== */

.partnership-intro {
  max-width: 720px;
  margin: 0 auto 38px;

  text-align: center;

  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
}

/* =====================================================
   PARTNER SLIDER
===================================================== */

.partner-slider {
  width: 100%;
  overflow: hidden;
  position: relative;

  padding: 15px 0 25px;
}

/* =====================================================
   SLIDING TRACK
===================================================== */

.partner-track {
  display: flex;
  align-items: center;

  width: max-content;

  gap: 22px;

  animation: partnerSlide 18s linear infinite;

  will-change: transform;
}

/* =====================================================
   PARTNER CARD
===================================================== */

.partner-card {
  width: 180px;
  height: 100px;

  flex: 0 0 180px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  background: #ffffff;

  border: 1px solid var(--border);
  border-radius: 18px;

  box-shadow: 0 5px 20px rgba(21, 54, 110, 0.05);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* =====================================================
   PARTNER CARD HOVER
===================================================== */

.partner-card:hover {
  transform: translateY(-6px);

  border-color: #cbd9ef;

  box-shadow:
    0 15px 35px rgba(21, 54, 110, 0.12);
}

/* =====================================================
   PARTNER LOGO IMAGE
===================================================== */

.partner-card img {
  display: block;

  width: auto;
  height: auto;

  max-width: 135px;
  max-height: 58px;

  object-fit: contain;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* Logo hover */

.partner-card:hover img {
  transform: scale(1.05);
}

/* =====================================================
   CONTINUOUS SLIDE ANIMATION
===================================================== */

@keyframes partnerSlide {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 11px));
  }

}

/* =====================================================
   PAUSE SLIDER ON HOVER
===================================================== */

.partner-slider:hover .partner-track {
  animation-play-state: paused;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

  .partnership-intro {
    max-width: 650px;
    font-size: 13px;
  }

  .partner-track {
    gap: 18px;
    animation-duration: 16s;
  }

  .partner-card {
    width: 160px;
    height: 90px;

    flex-basis: 160px;

    padding: 18px;
  }

  .partner-card img {
    max-width: 120px;
    max-height: 52px;
  }

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

  .partnerships .section-head {
    padding: 0 10px;
  }

  .partnership-intro {
    padding: 0 15px;
    margin-bottom: 25px;

    font-size: 13px;
    line-height: 1.7;
  }

  .partner-slider {
    padding: 10px 0 20px;
  }

  .partner-track {
    gap: 15px;

    animation-duration: 14s;
  }

  .partner-card {
    width: 140px;
    height: 80px;

    flex-basis: 140px;

    padding: 12px;

    border-radius: 15px;
  }

  .partner-card img {
    max-width: 105px;
    max-height: 45px;
  }

}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

  .partner-card {
    width: 125px;
    height: 75px;

    flex-basis: 125px;
  }

  .partner-card img {
    max-width: 95px;
    max-height: 40px;
  }

}

/* =====================================================
   TESTIMONIALS
===================================================== */
.testimonials { background: var(--light-bg); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 30px; position: relative; transition: 0.4s; }
.testimonial-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

.quote { font-size: 42px; color: var(--blue); line-height: 0.8; margin-bottom: 20px; transition: 0.3s; }
.testimonial-card:hover .quote { transform: scale(1.15); }
.testimonial-card p { color: var(--text); font-size: 14px; line-height: 1.8; }
.stars { color: #f4b400; letter-spacing: 3px; margin: 20px 0; }

.client { display: flex; align-items: center; gap: 12px; }
.client-avatar { width: 43px; height: 43px; border-radius: 50%; background: var(--light-blue); color: var(--blue); display: grid; place-items: center; font-weight: 700; transition: 0.3s; }
.testimonial-card:hover .client-avatar { transform: scale(1.1); }
.client strong { display: block; font-size: 13px; }
.client span { color: var(--text); font-size: 11px; }

/* =====================================================
   CTA BANNER
===================================================== */
.cta { padding: 80px 0; background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.cta::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  right: -180px; top: -240px;
  background: rgba(7, 86, 216, 0.28);
  animation: ctaCircle 8s ease-in-out infinite;
}
@keyframes ctaCircle {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.2); }
}
.cta-grid { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta h2 { font-size: 40px; margin: 12px 0; }
.cta p { color: #b8c4da; max-width: 820px; line-height: 1.7; }

/* =====================================================
   CONTACT
===================================================== */
.contact { background: #f6f9ff; }
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 50px; align-items: start; }
.contact-copy h2 { font-size: 40px; margin: 15px 0; }
.contact-copy p { color: var(--text); line-height: 1.8; }
.contact-list { margin-top: 28px; display: grid; gap: 14px; }
.contact-list div { display: flex; gap: 12px; align-items: center; color: #53627c; font-size: 14px; transition: 0.3s; }
.contact-list div:hover { transform: translateX(6px); color: var(--blue); }
.contact-list b { color: var(--blue); }

.form-box { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 30px; box-shadow: 0 15px 50px rgba(30, 65, 120, 0.07); transition: 0.4s; }
.form-box:hover { box-shadow: 0 25px 65px rgba(30, 65, 120, 0.12); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field { margin-bottom: 14px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-size: 11px; font-weight: 700; color: #53627c; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid #d9e2f1;
  border-radius: 9px;
  padding: 12px 13px;
  font-size: 13px;
  outline: none;
  background: #fff;
  transition: 0.25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(7, 86, 216, 0.07);
  transform: translateY(-2px);
}
.field textarea { height: 125px; resize: vertical; }

/* =====================================================
   FOOTER
===================================================== */
/* =========================
   FOOTER
========================= */

footer {
  background: var(--dark);
  color: #fff;
  padding: 55px 0 20px;
}

/* 5 COLUMN FOOTER */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.4fr 0.5fr 0.5fr 0.5fr;
  gap: 35px;
  align-items: start;
}

/* Footer Columns */
.footer-col {
  min-width: 0;
}

.footer-col h3 {
  font-size: 16px;
  margin: 0 0 16px;
  color: #fff;
  font-weight: 600;
}
/* Footer Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #0e80c2;
  color: var(--dark);
  transform: translateY(-3px);
}
.social-icons a i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 2.5;
}

/* Logo */
.footer-logo {
  width: 230px;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  transition: 0.3s;
  display: block;
}

.footer-logo:hover {
  transform: translateY(-4px);
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer Paragraph */
.footer-col p {
  font-size: 15px;
  color: #aebbd2;
  line-height: 1.9;
  margin: 0;
}

/* Footer Links */
.footer-col a {
  display: block;
  font-size: 15px;
  color: #aebbd2;
  line-height: 1.9;
  text-decoration: none;
  transition: 0.25s;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(5px);
}

/* Contact Info */
.contact-info {
  margin-top: 0;
}

.contact-info p {
  margin-bottom: 3px;
}

/* Copyright */
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 35px;
  padding-top: 18px;
  text-align: center;
  color: #7f8da6;
  font-size: 14px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

  footer {
    padding: 45px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo {
    width: 210px;
  }

  .copyright {
    margin-top: 30px;
    font-size: 13px;
  }

}
/* =====================================================
   RESPONSIVE — 1050px
===================================================== */
@media (max-width: 1050px) {
  .menu { gap: 14px; }
  .header-cta { padding: 10px 15px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 750px; }
  .hero-visual { max-width: 700px; width: 100%; margin: auto; }
  .service-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .specialty-grid, .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .why-us-grid { grid-template-columns: 1fr; }
  .why-us-content { max-width: 100%; }
  .contact-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================
   RESPONSIVE — 780px
===================================================== */
@media (max-width: 780px) {
  .header-wrap { padding: 8px 0; }
  .nav { height: 58px; display: flex; justify-content: space-between; padding: 0 14px; }
  .logo-image { width: 190px; height: 50px; }
  .menu, .header-cta { display: none; }
  .mobile-btn { display: block; }
  .hero { padding: 125px 0 70px; min-height: auto; }
  .hero-copy h1 { font-size: 46px; }
  .hero-photo { height: 390px; }
  .float-card { left: 10px; bottom: 15px; }
  .hero-stat { right: 10px; top: 15px; }
  .section { padding: 75px 0; }
  .section-head h2, .about-copy h2, .contact-copy h2 { font-size: 33px; }
  .service-grid, .specialty-grid, .partner-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .why-us-image img { height: 400px; }
  .why-us-content h2 { font-size: 34px; }
  .why-subheading { font-size: 18px; }
  .about-image img { height: 360px; }
  .about-badge { right: 10px; }
  .cta-grid { display: block; }
  .cta .btn { margin-top: 25px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
}

/* =====================================================
   RESPONSIVE — 480px
===================================================== */
@media (max-width: 480px) {
  .logo-image { width: 165px; height: 45px; }
  .hero-copy h1 { font-size: 39px; }
  .hero-copy p { font-size: 15px; }
  .hero-photo { height: 320px; }
  .trust-row { gap: 18px; }
  .why-us-image img { height: 330px; }
  .why-image-badge { left: 12px; bottom: 12px; }
  .why-us-content h2 { font-size: 30px; }
  .form-box { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo { width: 190px; }
}

/* =====================================================
   REDUCED MOTION
===================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}