/* ==============================
   Global Styles
============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #001c4e;
  --dark-blue: #003976;
  --blue: #025ca1;
  --light-blue: #47afe0;
  --dark-green: #02644b;
  --green: #30a760;
  --lime: #9dc944;
  --white: #ffffff;
  --light-background: #f5faff;
  --text-color: #26384a;
  --light-text: #6a7886;
  --border-color: #dfeaf2;
  --shadow: 0 15px 35px rgba(0, 57, 118, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-color);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, 90%);
  margin: auto;
}

.section {
  padding: 85px 0;
}


/* ==============================
   Header
============================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo img {
  width: 125px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 3px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--green),
    var(--lime)
  );
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-button {
  padding: 12px 22px;
  border-radius: 50px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 8px 20px rgba(2, 92, 161, 0.22);
  transition: 0.3s ease;
}

.header-button:hover {
  transform: translateY(-2px);
}


/* ==============================
   Hero
============================== */

.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 105px;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(71, 175, 224, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 15%,
      rgba(157, 201, 68, 0.24),
      transparent 28%
    ),
    linear-gradient(135deg, #f8fcff, #effaf3);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 290px;
  height: 290px;
  left: -150px;
  bottom: -130px;
  border: 38px solid rgba(2, 92, 161, 0.07);
}

.hero::after {
  width: 260px;
  height: 260px;
  right: -110px;
  top: -100px;
  border: 38px solid rgba(48, 167, 96, 0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 9px 17px;
  border: 1px solid rgba(48, 167, 96, 0.27);
  border-radius: 50px;
  color: var(--dark-green);
  background: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-badge span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--lime));
}

.hero h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(42px, 7vw, 74px);
  line-height: 1.08;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--light-blue),
    var(--green),
    var(--lime)
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 34px;
  color: var(--light-text);
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.primary-button,
.secondary-button {
  display: inline-block;
  padding: 14px 25px;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s ease;
}

.primary-button {
  color: var(--white);
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 12px 25px rgba(2, 92, 161, 0.22);
}

.secondary-button {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border-color);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-3px);
}


/* ==============================
   Statistics
============================== */

.statistics {
  position: relative;
  z-index: 5;
  margin-top: -45px;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border-color);
}

.stat-card:last-child {
  border-right: none;
}

.stat-card h3 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 35px;
  line-height: 1;
}

.stat-card p {
  color: var(--light-text);
  font-size: 14px;
  font-weight: 600;
}


/* ==============================
   Section Headings
============================== */

.section-heading {
  max-width: 720px;
  margin: 0 auto 45px;
  text-align: center;
}

.section-heading > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
}

.section-heading p {
  color: var(--light-text);
  font-size: 17px;
}


/* ==============================
   Client Cards
============================== */

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.client-card {
  min-height: 160px;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 57, 118, 0.06);
  transition: 0.3s ease;
}

.client-card:hover {
  transform: translateY(-8px);
  border-color: rgba(48, 167, 96, 0.4);
  box-shadow: var(--shadow);
}

.client-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--white);
  font-size: 21px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.client-card:nth-child(even) .client-icon {
  background: linear-gradient(135deg, var(--green), var(--lime));
}

.client-card h3 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 17px;
}

.client-card p {
  color: var(--light-text);
  font-size: 13px;
}


/* ==============================
   Services
============================== */

.services-section {
  background: var(--light-background);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  padding: 32px;
  border: 1px solid var(--border-color);
  border-radius: 22px;
  background: var(--white);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-number {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--dark-blue), var(--light-blue));
}

.service-card:nth-child(even) .service-number {
  background: linear-gradient(135deg, var(--dark-green), var(--lime));
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 21px;
}

.service-card p {
  color: var(--light-text);
  font-size: 15px;
}


/* ==============================
   Case Studies
============================== */

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.case-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  padding: 38px;
  display: flex;
  align-items: flex-end;
  border-radius: 27px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.real-estate-case {
  background:
    linear-gradient(
      180deg,
      rgba(0, 28, 78, 0.05),
      rgba(0, 28, 78, 0.96)
    ),
    linear-gradient(135deg, var(--blue), var(--green));
}

.beauty-case {
  background:
    linear-gradient(
      180deg,
      rgba(0, 28, 78, 0.05),
      rgba(0, 28, 78, 0.96)
    ),
    linear-gradient(135deg, var(--green), var(--lime));
}

.case-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  top: -90px;
  right: -70px;
  border: 35px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.case-content {
  position: relative;
  z-index: 2;
}

.case-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.case-content h3 {
  margin-bottom: 12px;
  font-size: 29px;
  line-height: 1.25;
}

.case-content p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.83);
}

.case-results {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.case-results div {
  display: flex;
  flex-direction: column;
}

.case-results strong {
  font-size: 25px;
}

.case-results span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}


/* ==============================
   Testimonial
============================== */

.testimonial-section {
  background: var(--light-background);
}

.testimonial-card {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 50px;
  border: 1px solid var(--border-color);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-mark {
  position: absolute;
  top: 5px;
  right: 35px;
  color: rgba(48, 167, 96, 0.14);
  font-family: Georgia, serif;
  font-size: 125px;
  line-height: 1;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.55;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.testimonial-author h4 {
  color: var(--navy);
  font-size: 16px;
}

.testimonial-author p {
  color: var(--light-text);
  font-size: 13px;
}


/* ==============================
   Call to Action
============================== */

.cta-section {
  padding: 85px 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 68px 40px;
  text-align: center;
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(
    120deg,
    var(--navy),
    var(--blue),
    var(--green)
  );
  box-shadow: 0 20px 45px rgba(0, 28, 78, 0.22);
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -130px;
  left: -100px;
  border: 40px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.cta-box h2,
.cta-box p,
.cta-button {
  position: relative;
  z-index: 2;
}

.cta-box h2 {
  margin-bottom: 15px;
  font-size: clamp(30px, 5vw, 48px);
}

.cta-box p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-button {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 50px;
  color: var(--navy);
  background: var(--white);
  font-weight: 700;
  transition: 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
}


/* ==============================
   Footer
============================== */

.footer {
  padding: 58px 0 25px;
  color: var(--white);
  background: #00163e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 38px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 18px;
  padding: 7px;
  border-radius: 10px;
  background: var(--white);
}

.footer h3 {
  margin-bottom: 18px;
  font-size: 17px;
}

.footer-about p,
.footer-contact p,
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-contact p {
  margin-bottom: 10px;
}

.copyright {
  padding-top: 23px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}


/* ==============================
   Tablet Responsive
============================== */

@media (max-width: 950px) {

  .nav-links {
    display: none;
  }

  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2) {
    border-right: none;
  }

  .stat-card:nth-child(1),
  .stat-card:nth-child(2) {
    border-bottom: 1px solid var(--border-color);
  }

  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==============================
   Mobile Responsive
============================== */

@media (max-width: 650px) {

  .section {
    padding: 65px 0;
  }

  .logo img {
    width: 100px;
  }

  .header-button {
    padding: 10px 14px;
    font-size: 12px;
  }

  .hero {
    padding: 80px 0 95px;
  }

  .hero p {
    font-size: 16px;
  }

  .statistics-grid,
  .client-grid,
  .service-grid,
  .case-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .case-card {
    min-height: 360px;
    padding: 28px;
  }

  .case-content h3 {
    font-size: 24px;
  }

  .testimonial-card {
    padding: 38px 25px;
  }

  .testimonial-card blockquote {
    font-size: 19px;
  }

  .cta-box {
    padding: 52px 24px;
  }
}