/* =========================
   GLOBAL
========================== */
* {
    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;
  --medium-blue: #2789c8;
  --light-blue: #47afe0;

  --dark-green: #02644b;
  --green: #30a760;
  --medium-green: #66b753;
  --lime: #9dc944;

  --white: #ffffff;
  --light-bg: #f4faff;
  --green-bg: #f3fbf5;

  --text: #26384a;
  --light-text: #68798a;
  --border: #dce9f1;

  --shadow: 0 18px 45px rgba(0, 57, 118, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  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: 90px 0;
}


/* =========================
   HEADER
========================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.97);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-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: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 3px;
  border-radius: 20px;
  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);
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--green)
  );
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(2, 92, 161, 0.22);
  transition: 0.3s ease;
}

.header-button:hover {
  transform: translateY(-3px);
}


/* =========================
   HERO
========================== */

.hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 120px;
  background:
    radial-gradient(
      circle at 10% 25%,
      rgba(71, 175, 224, 0.24),
      transparent 29%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(157, 201, 68, 0.24),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #f7fcff,
      #f1fcf6
    );
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(48, 167, 96, 0.28);
  border-radius: 50px;
  color: var(--dark-green);
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-badge i {
  color: var(--blue);
}

.hero-content h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.07;
}

.hero-content h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--light-blue),
    var(--green),
    var(--lime)
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-content > p {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--light-text);
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  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);
  border: 1px solid var(--border);
  background: var(--white);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-3px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-points div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.hero-points i {
  color: var(--green);
}


/* Hero Dashboard */

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketing-dashboard {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 480px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 25px 60px rgba(0, 57, 118, 0.18);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 13px;
}

.dashboard-main-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--green)
  );
  font-size: 24px;
}

.dashboard-title span {
  display: block;
  color: var(--light-text);
  font-size: 11px;
}

.dashboard-title h3 {
  color: var(--navy);
  font-size: 19px;
}

.growth-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 11px;
  border-radius: 50px;
  color: var(--dark-green);
  background: rgba(157, 201, 68, 0.2);
  font-size: 12px;
  font-weight: 800;
}

.chart-area {
  position: relative;
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 13px;
  padding: 20px 15px 0;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(
      rgba(2, 92, 161, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(2, 92, 161, 0.05) 1px,
      transparent 1px
    ),
    #f8fcff;
  background-size: 40px 40px;
}

.chart-bar {
  position: relative;
  z-index: 2;
  width: 35px;
  border-radius: 10px 10px 3px 3px;
  background: linear-gradient(
    180deg,
    var(--light-blue),
    var(--blue)
  );
}

.bar-one {
  height: 35%;
}

.bar-two {
  height: 53%;
}

.bar-three {
  height: 45%;
}

.bar-four {
  height: 72%;
}

.bar-five {
  height: 65%;
}

.bar-six {
  height: 91%;
  background: linear-gradient(
    180deg,
    var(--lime),
    var(--green)
  );
}

.chart-line {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  height: 1px;
  background: rgba(0, 57, 118, 0.08);
}

.line-one {
  top: 25%;
}

.line-two {
  top: 45%;
}

.line-three {
  top: 65%;
}

.line-four {
  top: 85%;
}

.dashboard-statistics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 20px;
}

.dashboard-statistics div {
  padding: 14px 8px;
  text-align: center;
  border-radius: 14px;
  background: var(--green-bg);
}

.dashboard-statistics i {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 17px;
}

.dashboard-statistics strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.dashboard-statistics span {
  color: var(--light-text);
  font-size: 9px;
}

.floating-card {
  position: absolute;
  z-index: 5;
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.floating-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  color: var(--white);
  font-size: 20px;
}

.meta-floating-icon {
  background: linear-gradient(
    135deg,
    #0866ff,
    #6d4aff
  );
}

.google-floating-icon {
  background: linear-gradient(
    135deg,
    #4285f4,
    #34a853
  );
}

.seo-floating-icon {
  background: linear-gradient(
    135deg,
    var(--dark-green),
    var(--lime)
  );
}

.floating-card span {
  display: block;
  color: var(--light-text);
  font-size: 10px;
}

.floating-card strong {
  color: var(--navy);
  font-size: 12px;
}

.meta-floating {
  top: 35px;
  left: -35px;
}

.google-floating {
  right: -35px;
  bottom: 60px;
}

.seo-floating {
  left: 5px;
  bottom: 5px;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-decoration-one {
  width: 310px;
  height: 310px;
  left: -160px;
  bottom: -170px;
  border: 45px solid rgba(2, 92, 161, 0.07);
}

.hero-decoration-two {
  width: 280px;
  height: 280px;
  right: -130px;
  top: -130px;
  border: 45px solid rgba(48, 167, 96, 0.08);
}


/* =========================
   STATISTICS
========================== */

.statistics {
  position: relative;
  z-index: 10;
  margin-top: -45px;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid var(--border);
}

.stat-card:last-child {
  border-right: none;
}

.stat-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--green)
  );
  font-size: 21px;
}

.stat-card h3 {
  color: var(--blue);
  font-size: 29px;
  line-height: 1;
}

.stat-card p {
  margin-top: 5px;
  color: var(--light-text);
  font-size: 12px;
  font-weight: 700;
}


/* =========================
   SECTION HEADINGS
========================== */

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-heading h2,
.why-content h2 {
  margin-bottom: 15px;
  color: var(--navy);
  font-size: clamp(31px, 4vw, 47px);
  line-height: 1.18;
}

.section-heading p {
  color: var(--light-text);
  font-size: 17px;
}


/* =========================
   DIGITAL SERVICES
========================== */

.digital-services-section {
  background: var(--white);
}

.digital-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 23px;
}

.digital-service-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 23px;
  background: var(--white);
  box-shadow: 0 9px 30px rgba(0, 57, 118, 0.07);
  transition: 0.35s ease;
}

.digital-service-card::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  top: -55px;
  right: -50px;
  border-radius: 50%;
  background: rgba(71, 175, 224, 0.08);
  transition: 0.35s ease;
}

.digital-service-card:hover {
  transform: translateY(-9px);
  border-color: rgba(48, 167, 96, 0.35);
  box-shadow: var(--shadow);
}

.digital-service-card:hover::after {
  transform: scale(1.5);
}

.service-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  font-size: 27px;
  box-shadow: 0 10px 20px rgba(0, 57, 118, 0.17);
}

.meta-service-icon {
  background: linear-gradient(
    135deg,
    #0866ff,
    #6d4aff
  );
}

.google-service-icon {
  background: linear-gradient(
    135deg,
    #4285f4,
    #34a853
  );
}

.seo-service-icon {
  background: linear-gradient(
    135deg,
    #02644b,
    #9dc944
  );
}

.social-service-icon {
  background: linear-gradient(
    135deg,
    #833ab4,
    #fd1d1d,
    #fcb045
  );
}

.lead-service-icon {
  background: linear-gradient(
    135deg,
    #003976,
    #47afe0
  );
}

.ecommerce-service-icon {
  background: linear-gradient(
    135deg,
    #ff9900,
    #30a760
  );
}

.content-service-icon {
  background: linear-gradient(
    135deg,
    #30a760,
    #9dc944
  );
}

.analytics-service-icon {
  background: linear-gradient(
    135deg,
    #f9ab00,
    #2789c8
  );
}

.service-number {
  color: rgba(0, 57, 118, 0.14);
  font-size: 25px;
  font-weight: 900;
}

.service-category {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.digital-service-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
}

.digital-service-card > p {
  margin-bottom: 18px;
  color: var(--light-text);
  font-size: 14px;
}

.digital-service-card ul {
  display: grid;
  gap: 8px;
}

.digital-service-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text);
  font-size: 12px;
}

.digital-service-card li i {
  margin-top: 2px;
  color: var(--green);
  font-size: 12px;
}


/* =========================
   INDUSTRIES
========================== */

.industries-section {
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(71, 175, 224, 0.12),
      transparent 25%
    ),
    radial-gradient(
      circle at 90% 90%,
      rgba(157, 201, 68, 0.12),
      transparent 25%
    ),
    var(--green-bg);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.industry-card {
  position: relative;
  overflow: hidden;
  padding: 28px 22px;
  border: 1px solid rgba(48, 167, 96, 0.18);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(0, 57, 118, 0.06);
  transition: 0.35s ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  top: -55px;
  right: -55px;
  border-radius: 50%;
  background: rgba(71, 175, 224, 0.08);
  transition: 0.35s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(48, 167, 96, 0.4);
  box-shadow: var(--shadow);
}

.industry-card:hover::before {
  transform: scale(1.5);
}

.industry-icon {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  font-size: 25px;
  box-shadow: 0 10px 22px rgba(0, 57, 118, 0.16);
}

.education-icon {
  background: linear-gradient(
    135deg,
    #025ca1,
    #47afe0
  );
}

.healthcare-icon {
  background: linear-gradient(
    135deg,
    #e53935,
    #ff6f61
  );
}

.realestate-icon {
  background: linear-gradient(
    135deg,
    #003976,
    #30a760
  );
}

.retail-icon {
  background: linear-gradient(
    135deg,
    #7b2cbf,
    #47afe0
  );
}

.restaurant-icon {
  background: linear-gradient(
    135deg,
    #f57c00,
    #fbc02d
  );
}

.ecommerce-industry-icon {
  background: linear-gradient(
    135deg,
    #ff9900,
    #30a760
  );
}

.startup-icon {
  background: linear-gradient(
    135deg,
    #001c4e,
    #2789c8
  );
}

.clothing-icon {
  background: linear-gradient(
    135deg,
    #e1306c,
    #833ab4
  );
}

.construction-icon {
  background: linear-gradient(
    135deg,
    #795548,
    #ff9800
  );
}

.logistics-icon {
  background: linear-gradient(
    135deg,
    #02644b,
    #30a760
  );
}

.automobile-icon {
  background: linear-gradient(
    135deg,
    #263238,
    #2789c8
  );
}

.laboratory-icon {
  background: linear-gradient(
    135deg,
    #025ca1,
    #9dc944
  );
}

.diagnostic-icon {
  background: linear-gradient(
    135deg,
    #00897b,
    #47afe0
  );
}

.industry-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.industry-card p {
  position: relative;
  z-index: 2;
  color: var(--light-text);
  font-size: 13px;
}


/* =========================
   MAIN SERVICES
========================== */

.main-services-section {
  background: var(--white);
}

.main-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.main-service-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 35px;
  border: 1px solid var(--border);
  border-radius: 27px;
  color: var(--text);
  background: var(--white);
  box-shadow: 0 12px 38px rgba(0, 57, 118, 0.08);
  transition: 0.35s ease;
}

.main-service-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -100px;
  right: -90px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(71, 175, 224, 0.13),
    rgba(157, 201, 68, 0.11)
  );
  transition: 0.35s ease;
}

.main-service-card:hover {
  transform: translateY(-9px);
  border-color: rgba(48, 167, 96, 0.38);
  box-shadow: var(--shadow);
}

.main-service-card:hover::before {
  transform: scale(1.4);
}

.main-service-icon {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  margin-bottom: 25px;
  display: grid;
  place-items: center;
  border-radius: 21px;
  color: var(--white);
  font-size: 31px;
  box-shadow: 0 12px 25px rgba(0, 57, 118, 0.18);
}

.digital-marketing-icon {
  background: linear-gradient(
    135deg,
    #025ca1,
    #30a760
  );
}

.graphic-design-icon {
  background: linear-gradient(
    135deg,
    #833ab4,
    #e1306c
  );
}

.ecommerce-solution-icon {
  background: linear-gradient(
    135deg,
    #ff9900,
    #30a760
  );
}

.website-development-icon {
  background: linear-gradient(
    135deg,
    #001c4e,
    #47afe0
  );
}

.service-arrow {
  position: absolute;
  z-index: 2;
  top: 32px;
  right: 32px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--light-bg);
  font-size: 18px;
  transition: 0.3s ease;
}

.main-service-card:hover .service-arrow {
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--green)
  );
  transform: rotate(45deg);
}

.main-service-card > span {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-service-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 27px;
}

.main-service-card > p {
  position: relative;
  z-index: 2;
  margin-bottom: 21px;
  color: var(--light-text);
  font-size: 15px;
}

.service-features {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 50px;
  color: var(--navy);
  background: var(--light-bg);
  font-size: 11px;
  font-weight: 700;
}

.service-features i {
  color: var(--green);
}


/* =========================
   WHY CHOOSE NEXGEN
========================== */

.why-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(157, 201, 68, 0.17),
      transparent 28%
    ),
    var(--light-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 75px;
}

.why-intro {
  max-width: 690px;
  margin-bottom: 32px;
  color: var(--light-text);
  font-size: 17px;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why-feature {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: var(--white);
  transition: 0.3s ease;
}

.why-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 57, 118, 0.09);
}

.why-feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--blue),
    var(--green)
  );
  font-size: 20px;
}

.why-feature h3 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 16px;
}

.why-feature p {
  color: var(--light-text);
  font-size: 12px;
}

.why-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-main-card {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 450px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 25px 65px rgba(0, 57, 118, 0.17);
}

.why-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 33px;
}

.why-card-header img {
  width: 78px;
}

.why-card-header span {
  display: block;
  color: var(--light-text);
  font-size: 11px;
}

.why-card-header h3 {
  color: var(--navy);
  font-size: 20px;
}

.growth-circle {
  width: 220px;
  height: 220px;
  margin: 0 auto 30px;
  padding: 20px;
  border-radius: 50%;
  background: conic-gradient(
    var(--blue) 0deg,
    var(--light-blue) 110deg,
    var(--green) 230deg,
    var(--lime) 320deg,
    #edf5f8 320deg
  );
}

.growth-circle-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  background: var(--white);
}

.growth-circle-inner i {
  margin-bottom: 4px;
  color: var(--green);
  font-size: 27px;
}

.growth-circle-inner strong {
  color: var(--navy);
  font-size: 41px;
  line-height: 1.1;
}

.growth-circle-inner span {
  color: var(--light-text);
  font-size: 12px;
}

.why-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.why-card-stats div {
  padding: 15px 8px;
  text-align: center;
  border-radius: 15px;
  background: var(--light-bg);
}

.why-card-stats i {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 20px;
}

.why-card-stats strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
}

.why-card-stats span {
  color: var(--light-text);
  font-size: 9px;
}

.why-circle {
  position: absolute;
  border-radius: 50%;
}

.why-circle-one {
  width: 270px;
  height: 270px;
  top: 15px;
  right: -100px;
  background: linear-gradient(
    135deg,
    rgba(48, 167, 96, 0.18),
    rgba(157, 201, 68, 0.09)
  );
}

.why-circle-two {
  width: 190px;
  height: 190px;
  left: -60px;
  bottom: 20px;
  border: 34px solid rgba(71, 175, 224, 0.13);
}


/* =========================
   GET IN TOUCH
========================== */

.contact-section {
  padding: 90px 0;
  background: var(--white);
}

.contact-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px;
  padding: 60px;
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(157, 201, 68, 0.25),
      transparent 28%
    ),
    linear-gradient(
      125deg,
      var(--navy),
      var(--dark-blue),
      var(--blue),
      var(--green)
    );
  box-shadow: 0 25px 60px rgba(0, 28, 78, 0.24);
}

.contact-box::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  left: -180px;
  bottom: -200px;
  border: 48px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.contact-content,
.contact-action {
  position: relative;
  z-index: 2;
}

.contact-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-content h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.15;
}

.contact-content > p {
  max-width: 650px;
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.contact-item:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.14);
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 15px;
  color: var(--white);
  font-size: 21px;
}

.phone-icon {
  background: linear-gradient(
    135deg,
    #30a760,
    #9dc944
  );
}

.website-icon {
  background: linear-gradient(
    135deg,
    #2789c8,
    #47afe0
  );
}

.email-icon {
  background: linear-gradient(
    135deg,
    #ea4335,
    #fbbc05
  );
}

.contact-item span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  text-transform: uppercase;
}

.contact-item strong {
  color: var(--white);
  font-size: 15px;
  word-break: break-word;
}

.contact-action {
  align-self: center;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 27px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-action-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--navy);
  background: var(--white);
  font-size: 30px;
}

.contact-action h3 {
  margin-bottom: 10px;
  font-size: 25px;
}

.contact-action p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.contact-button,
.call-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 800;
  transition: 0.3s ease;
}

.contact-button {
  margin-bottom: 12px;
  color: var(--navy);
  background: var(--white);
}

.call-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-button:hover,
.call-button:hover {
  transform: translateY(-3px);
}


/* =========================
   FOOTER
========================== */

.footer {
  padding: 60px 0 25px;
  color: var(--white);
  background: #00163e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 40px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 18px;
  padding: 7px;
  border-radius: 10px;
  background: var(--white);
}

.footer-about p,
.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-column h3 {
  margin-bottom: 18px;
  font-size: 17px;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a:hover {
  color: var(--lime);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 12px;
}

.footer-contact i {
  margin-top: 3px;
  color: var(--lime);
}

.copyright {
  padding-top: 23px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}


/* =========================
   RESPONSIVE
========================== */

@media (max-width: 1100px) {

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 760px;
    margin: auto;
    text-align: center;
  }

  .hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .hero-points {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 650px;
    margin: auto;
  }

  .digital-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-content {
    max-width: 850px;
  }

  .why-visual {
    max-width: 600px;
    width: 100%;
    margin: auto;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 850px) {

  .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);
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-services-grid {
    grid-template-columns: 1fr;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 620px) {

  .section {
    padding: 65px 0;
  }

  .navbar {
    min-height: 72px;
  }

  .brand-logo img {
    width: 100px;
  }

  .header-button {
    padding: 10px 13px;
    font-size: 11px;
  }

  .hero {
    padding: 75px 0 105px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content > p {
    font-size: 16px;
  }

  .hero-points {
    flex-direction: column;
    align-items: center;
    gap: 11px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .marketing-dashboard {
    padding: 19px;
  }

  .dashboard-header {
    align-items: flex-start;
  }

  .dashboard-statistics {
    grid-template-columns: 1fr;
  }

  .floating-card {
    min-width: 155px;
    padding: 9px;
  }

  .floating-icon {
    width: 37px;
    height: 37px;
    font-size: 17px;
  }

  .floating-card strong {
    font-size: 10px;
  }

  .meta-floating {
    top: 0;
    left: -5px;
  }

  .google-floating {
    right: -5px;
    bottom: 5px;
  }

  .seo-floating {
    display: none;
  }

  .statistics-grid,
  .digital-services-grid,
  .industries-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .digital-service-card,
  .industry-card,
  .main-service-card {
    padding: 25px;
  }

  .main-service-card {
    min-height: auto;
  }

  .why-visual {
    min-height: 490px;
  }

  .why-main-card {
    padding: 24px;
  }

  .growth-circle {
    width: 185px;
    height: 185px;
  }

  .why-card-stats {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 65px 0;
  }

  .contact-box {
    padding: 37px 23px;
  }

  .contact-action {
    padding: 28px 20px;
  }

  .contact-item strong {
    font-size: 12px;
  }

}