:root {
  --primary: #44ce6f;
  --primary-dark: #36b85d;
  --primary-light: #e6f9ed;
  --secondary: #a8e9bd;
  --dark: #1c1f3a;
  --text: #6b7280;
  --light-bg: #f3fcf6;
  --soft-bg: #fafafa;
  --white: #ffffff;
}

* { box-sizing: border-box; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  color: var(--dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ===== Buttons ===== */
.btn-primary-c {
  background: var(--primary); color: #fff;
  padding: 13px 30px; border-radius: 50px;
  font-weight: 500; border: 2px solid var(--primary);
  transition: all 0.3s; display: inline-block; text-decoration: none;
}
.btn-primary-c:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  color: #fff; transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(68,206,111,0.3);
}
.btn-outline-c {
  background: transparent; color: var(--dark);
  padding: 13px 30px; border-radius: 50px;
  font-weight: 500; border: 2px solid var(--dark);
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.btn-outline-c:hover { background: var(--dark); color: #fff; }

/* ===== Navbar ===== */
.navbar {
  padding: 16px 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.navbar-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800; font-size: 24px;
  color: var(--dark) !important;
  display: flex; align-items: center; gap: 10px;
}
.logo-icon {
  width: 38px; height: 38px; background: var(--primary);
  border-radius: 10px; display: inline-flex;
  align-items: center; justify-content: center;
  color: #fff; font-size: 18px; transform: rotate(-8deg);
}
.navbar-brand .accent { color: var(--primary); }
.brand-logo {
  height: 60px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
.nav-link {
  color: var(--dark) !important; font-weight: 600;
  margin: 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
}
.nav-link:hover,
.nav-link.active { color: var(--primary) !important; }
.nav-cta {
  padding: 7px 20px;
  font-size: 13px;
  line-height: 1;
  border-width: 1px;
  font-weight: 700;
}

/* Services mega dropdown */
.navbar .dropdown-toggle::after { vertical-align: middle; margin-left: 6px; }
.navbar .mega-menu {
  border: none;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  padding: 18px;
  margin-top: 0;
  width: 800px;
  max-width: 94vw;
  left: 50%;
  transform: translateX(-50%);
}
.mega-head {
  padding: 4px 16px 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eef0f3;
}
.mega-head-title {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  color: var(--dark);
  font-size: 18px;
  margin: 0 0 4px;
}
.mega-head-sub {
  color: var(--text);
  font-size: 13px;
  margin: 0;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.mega-item {
  display: block;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.mega-item:hover {
  background: linear-gradient(135deg, #eef6ff, #f1fcf5);
}
.mega-title {
  display: block;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  color: var(--dark);
  font-size: 16px;
  margin-bottom: 4px;
  white-space: nowrap;
}
.mega-item:hover .mega-title { color: var(--primary); }
.mega-desc {
  display: block;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover > .dropdown-menu { display: block; }
  /* Transparent bridge so the menu doesn't hide when moving the cursor down */
  .navbar .nav-item.dropdown > .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -18px; left: 0; right: 0;
    height: 18px;
  }
}
@media (max-width: 991px) {
  .navbar .mega-menu { width: 100%; left: 0; transform: none; }
  .mega-grid { grid-template-columns: 1fr; }
}
@media (max-width: 991px) {
  .nav-cta { margin-top: 12px; align-self: flex-start; }
}
@media (max-width: 575px) {
  .brand-logo { height: 38px; }
}
.nav-signin { color: var(--dark); font-weight: 500; text-decoration: none; margin-right: 14px; }
.nav-signin:hover { color: var(--primary); }

/* ===== Hero (centered banner) ===== */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%);
  padding: 200px 0 130px;
  position: relative; overflow: hidden;
  text-align: center;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(68,206,111,0.12), transparent 70%);
  border-radius: 50%; z-index: 1;
}
.hero::after {
  content: ''; position: absolute; bottom: -150px; left: -150px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(168,233,189,0.22), transparent 70%);
  border-radius: 50%; z-index: 1;
}

/* Flowing wave-line background */
.hero-lines {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
  opacity: 0.28;
}
.hero-lines svg {
  width: 100%; height: 100%;
  display: block;
}
.hero-lines path {
  stroke: var(--primary);
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: draw-line 4s ease forwards;
}
.hero-lines path:nth-child(2) { animation-delay: 0.15s; }
.hero-lines path:nth-child(3) { animation-delay: 0.30s; }
.hero-lines path:nth-child(4) { animation-delay: 0.45s; }
.hero-lines path:nth-child(5) { animation-delay: 0.60s; }
.hero-lines path:nth-child(6) { animation-delay: 0.75s; }
.hero-lines path:nth-child(7) { animation-delay: 0.90s; }
.hero-lines path:nth-child(8) { animation-delay: 1.05s; }
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; padding: 8px 20px; border-radius: 50px;
  font-size: 14px; color: var(--dark);
  margin-bottom: 28px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.new-tag {
  background: var(--primary); color: #fff;
  padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
}
.hero h1 {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.12;
  margin-bottom: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
}
.hero h1 .hero-line1 {
  display: block;
  white-space: nowrap;
}
.hero h1 .accent {
  color: var(--primary);
  display: block;
  min-height: 1.12em;
  margin-top: 18px;
}
/* Rotating service words */
.rotating-text {
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.rotating-text.swap {
  opacity: 0;
  transform: translateY(12px);
}
.hero p {
  font-size: 18px;
  margin: 0 auto 36px;
  max-width: 620px;
  color: #5a6275;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Dark pill CTA with arrow */
.btn-dark-c {
  background: var(--dark); color: #fff;
  padding: 15px 34px; border-radius: 50px;
  font-weight: 500; border: 2px solid var(--dark);
  transition: all 0.3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-dark-c i {
  font-size: 15px; transition: transform 0.3s;
}
.btn-dark-c:hover {
  background: var(--primary); border-color: var(--primary);
  color: #fff; transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(68,206,111,0.3);
}
.btn-dark-c:hover i { transform: translate(2px, -2px); }

/* ===== Inner page hero ===== */
.page-hero {
  background: linear-gradient(135deg, #f3fcf6 0%, #e6f9ed 100%);
  padding: 175px 0 75px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(68,206,111,0.14), transparent 70%);
  border-radius: 50%;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -140px; left: -140px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(168,233,189,0.22), transparent 70%);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(32px, 4.4vw, 50px);
  margin-bottom: 12px; font-weight: 800;
}
.page-hero-text {
  max-width: 640px;
  margin: 0 auto 16px;
  color: #5a6275;
  font-size: 17px;
  line-height: 1.7;
}
.breadcrumb-c { color: var(--text); font-weight: 500; font-size: 15px; }
.breadcrumb-c a { color: var(--primary); text-decoration: none; }
.breadcrumb-c a:hover { text-decoration: underline; }
.breadcrumb-c .sep { margin: 0 8px; color: #c0c4cf; }

/* ===== Section base ===== */
.section-padding { padding: 100px 0; }
.section-subtitle {
  color: var(--primary); font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  font-size: 13px; margin-bottom: 14px; display: inline-block;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 18px; line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.section-title .accent { color: var(--primary); }
.section-title.title-nowrap {
  white-space: nowrap;
  font-size: clamp(26px, 3vw, 36px);
}
@media (max-width: 991px) {
  .section-title.title-nowrap { white-space: normal; }
}

/* ===== Partners strip ===== */
.partners-strip { background: var(--soft-bg); padding: 50px 0; }
.partner-logo {
  text-align: center; font-family: 'DM Sans', sans-serif;
  font-weight: 700; color: #b8bcc8; font-size: 22px;
  transition: color 0.3s; padding: 10px;
}
.partner-logo:hover { color: var(--primary); }

/* ===== About block ===== */
.about-img {
  background: linear-gradient(135deg, #fff5f5, #ffeaea);
  border-radius: 30px; padding: 60px;
  text-align: center; font-size: 180px;
  color: var(--primary); position: relative; overflow: hidden;
}
.about-img::before {
  content: ''; position: absolute; top: 20px; left: 20px;
  width: 50px; height: 50px; background: var(--primary);
  border-radius: 14px; opacity: 0.2;
}
.about-img::after {
  content: ''; position: absolute; bottom: 30px; right: 30px;
  width: 70px; height: 70px; background: var(--secondary);
  border-radius: 50%; opacity: 0.4;
}
.feature-list { list-style: none; padding: 0; margin: 28px 0; }
.feature-list li {
  padding: 8px 0; color: var(--dark); font-weight: 500;
  display: flex; align-items: center; gap: 12px;
}
.feature-list li i {
  color: var(--primary); background: var(--primary-light);
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
#about .feature-list li { align-items: flex-start; }

/* ===== What We Provide visual ===== */
.provide-visual {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.provide-screen {
  width: 230px; height: 230px;
  background: linear-gradient(135deg, #ffffff, var(--primary-light));
  border-radius: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 110px;
  box-shadow: 0 30px 70px rgba(68,206,111,0.18);
  position: relative; z-index: 2;
}
.tech-bubble {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 24px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  z-index: 3;
  animation: bubble-float 6s ease-in-out infinite;
}
.tech-bubble.b-247   { top: 4%;   left: 16%;  background: #4f9cf9; font-size: 16px; }
.tech-bubble.b-html  { top: 22%;  left: 2%;   background: #f6b545; animation-delay: 1s; }
.tech-bubble.b-js    { top: 2%;   right: 22%; background: #ef6eae; animation-delay: 1.5s; }
.tech-bubble.b-php   { top: 30%;  right: 2%;  background: #f08a4b; animation-delay: 2s; }
.tech-bubble.b-cpp   { bottom: 24%; right: 8%; background: #9b6ef3; font-size: 16px; animation-delay: 2.5s; }
.tech-bubble.b-gear  { bottom: 30%; left: 4%;  background: #ef5b5b; animation-delay: 3s; }
.tech-bubble.b-power { bottom: 10%; left: 22%; background: var(--primary); animation-delay: 3.5s; }
@keyframes bubble-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ===== Service cards ===== */
.service-card {
  background: #fff; padding: 38px 32px;
  border-radius: 16px; text-align: left;
  transition: all 0.4s; border: 1px solid #eef0f3;
  height: 100%; position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 4px;
  background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 72px; height: 72px;
  background: var(--primary-light);
  border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 32px;
  margin-bottom: 24px; transition: all 0.4s;
}
.service-card:hover .service-icon {
  background: var(--primary); color: #fff; transform: rotate(-8deg);
}
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card .learn-more {
  color: var(--dark); font-weight: 500;
  text-decoration: none; margin-top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card .learn-more:hover { color: var(--primary); }

/* ===== Why Choose Us with side image ===== */
.why-feature {
  display: flex; gap: 18px; align-items: flex-start;
  margin-bottom: 28px;
}
.why-feature .icon-box {
  flex-shrink: 0;
  width: 60px; height: 60px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 24px;
}
.why-feature h4 { font-size: 18px; margin-bottom: 6px; }
.why-feature p { margin: 0; font-size: 15px; }

/* ===== Portfolio carousel ===== */
.portfolio-carousel {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}
.portfolio-carousel .carousel-item img {
  width: 100%;
  height: auto;
  display: block;
}
.portfolio-carousel .carousel-control-prev,
.portfolio-carousel .carousel-control-next {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  opacity: 0; transition: opacity 0.3s;
}
.portfolio-carousel:hover .carousel-control-prev,
.portfolio-carousel:hover .carousel-control-next { opacity: 1; }
.portfolio-carousel .carousel-control-prev { left: 18px; }
.portfolio-carousel .carousel-control-next { right: 18px; }
.portfolio-carousel .carousel-control-prev-icon,
.portfolio-carousel .carousel-control-next-icon {
  filter: invert(1);
  width: 18px; height: 18px;
}
.portfolio-carousel .carousel-indicators { margin-bottom: 16px; }
.portfolio-carousel .carousel-indicators [data-bs-target] {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.7);
  transition: all 0.3s;
}
.portfolio-carousel .carousel-indicators .active {
  background: var(--primary);
  width: 26px; border-radius: 6px;
}
@media (max-width: 768px) {
  .portfolio-carousel .carousel-item img { height: auto; }
}

/* ===== Core Values ===== */
.value-card {
  background: #f6f7f9;
  border-radius: 20px;
  padding: 38px 36px;
  height: 100%;
  transition: all 0.3s;
}
.value-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  transform: translateY(-5px);
}
.value-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}
.value-card h3 { font-size: 22px; margin-bottom: 12px; }
.value-card p { margin: 0; font-size: 15px; }

/* ===== Counters ===== */
.counters-section {
  background: linear-gradient(135deg, var(--primary) 0%, #6ddc8e 100%);
  color: #fff; position: relative; overflow: hidden;
}
.counters-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.1); border-radius: 50%;
}
.counter-box { text-align: center; position: relative; z-index: 2; }
.counter-num {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800; color: #fff; line-height: 1;
  margin-bottom: 10px;
}
.counter-label {
  color: rgba(255,255,255,0.9);
  font-weight: 500; font-size: 15px;
  text-transform: uppercase; letter-spacing: 1px;
}

/* ===== Who We Are ===== */
.whoweare-section {
  background: linear-gradient(135deg, var(--primary) 0%, #6ddc8e 100%);
  color: #fff; position: relative; overflow: hidden;
}
.whoweare-section::before {
  content: ''; position: absolute; top: -110px; left: -110px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.whoweare-section::after {
  content: ''; position: absolute; bottom: -130px; right: -90px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.whoweare-section .container { position: relative; z-index: 2; }
.whoweare-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 18px; margin-bottom: 18px; display: inline-block;
}
.whoweare-title {
  color: #fff;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.3; font-weight: 800;
  letter-spacing: -0.02em; margin: 0;
}
.stat-label {
  text-transform: uppercase; letter-spacing: 1px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.9); margin-bottom: 12px;
}
.stat-divider {
  width: 90px; height: 2px;
  background: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800; line-height: 1; color: #fff;
}
.whoweare-text {
  color: rgba(255,255,255,0.92);
  margin: 4px 0 32px; font-size: 15px; line-height: 1.8;
}
.whoweare-text strong { color: #fff; font-weight: 700; }
.btn-light-c {
  background: #fff; color: var(--dark);
  padding: 14px 30px; border-radius: 50px;
  font-weight: 500; text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px;
  transition: all 0.3s;
}
.btn-light-c i {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; transition: transform 0.3s;
}
.btn-light-c:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.btn-light-c:hover i { transform: translate(2px, -2px); }

/* ===== Team ===== */
.team-card {
  background: #fff; border-radius: 20px;
  overflow: hidden; text-align: center;
  transition: all 0.4s; border: 1px solid #f5f5f5;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(68,206,111,0.15);
}
.team-img {
  background: linear-gradient(135deg, #fff5f5, #ffe5e5);
  padding: 50px 0; font-size: 90px;
  color: var(--primary); position: relative;
}
.team-social {
  position: absolute; bottom: 18px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  opacity: 0; transition: all 0.4s;
}
.team-card:hover .team-social { opacity: 1; }
.team-social a {
  width: 34px; height: 34px; background: var(--primary);
  color: #fff; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 13px; transition: all 0.3s;
}
.team-social a:hover { background: var(--dark); }
.team-info { padding: 22px 18px; }
.team-info h3 { font-size: 18px; margin-bottom: 4px; }
.team-info p { color: var(--primary); margin: 0; font-weight: 500; font-size: 14px; }

/* ===== Pricing ===== */
.pricing-card {
  background: #fff; border-radius: 20px;
  padding: 50px 35px; text-align: center;
  transition: all 0.4s; border: 1px solid #f5f5f5;
  height: 100%; position: relative;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(68,206,111,0.15);
}
.pricing-card.featured {
  background: linear-gradient(135deg, var(--primary), #6ddc8e);
  color: #fff;
}
.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured ul li { color: #fff; }
.pricing-card.featured .price .currency { color: rgba(255,255,255,0.8); }
.pricing-card.featured .pricing-features li i { color: #fff; }
.pricing-card.featured .btn-primary-c {
  background: #fff; color: var(--primary); border-color: #fff;
}
.pricing-card.featured .btn-primary-c:hover {
  background: var(--dark); color: #fff; border-color: var(--dark);
}
.pricing-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--dark); color: #fff;
  padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
}
.pricing-card h3 { font-size: 22px; margin-bottom: 8px; }
.price {
  font-family: 'DM Sans', sans-serif;
  font-size: 50px; font-weight: 800;
  color: var(--dark); margin: 18px 0;
  line-height: 1;
}
.price .currency { font-size: 22px; vertical-align: top; color: var(--primary); }
.price .period { font-size: 15px; color: var(--text); font-weight: 400; }
.pricing-features {
  list-style: none; padding: 0; margin: 24px 0;
  text-align: left;
}
.pricing-features li {
  padding: 8px 0; display: flex; align-items: center; gap: 10px;
}
.pricing-features li i { color: var(--primary); }

/* ===== Testimonials ===== */
.testimonial-card {
  background: #fff; padding: 35px;
  border-radius: 20px; height: 100%;
  border: 1px solid #f5f5f5;
  transition: all 0.4s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 20px 50px rgba(68,206,111,0.1);
}
.testimonial-card .quote-icon {
  position: absolute; top: 20px; right: 25px;
  font-size: 50px; color: var(--primary-light); line-height: 1;
}
.stars { color: #ffb800; margin-bottom: 14px; font-size: 15px; }
.testimonial-card p { font-size: 15px; font-style: italic; }
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid #f5f5f5;
}
.testimonial-author .avatar {
  width: 50px; height: 50px;
  background: var(--primary-light); color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.testimonial-author h4 { font-size: 16px; margin: 0; }
.testimonial-author span { font-size: 13px; color: var(--text); }

/* ===== Blog ===== */
.blog-card {
  background: #fff; border-radius: 20px;
  overflow: hidden; transition: all 0.4s;
  border: 1px solid #f5f5f5; height: 100%;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(68,206,111,0.15);
}
.blog-img {
  background: linear-gradient(135deg, #fff5f5, #ffe5e5);
  padding: 50px 0; font-size: 70px;
  color: var(--primary); text-align: center;
}
.blog-content { padding: 28px; }
.blog-meta {
  display: flex; gap: 16px; font-size: 13px;
  color: var(--text); margin-bottom: 12px;
}
.blog-meta span i { color: var(--primary); margin-right: 4px; }
.blog-content h3 { font-size: 19px; margin-bottom: 12px; line-height: 1.3; }
.blog-content h3 a { color: var(--dark); text-decoration: none; }
.blog-content h3 a:hover { color: var(--primary); }
.blog-content .read-more {
  color: var(--primary); font-weight: 500;
  text-decoration: none; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}

/* ===== Contact / CTA ===== */
.contact-section { background: var(--light-bg); }
.contact-form {
  background: #fff; padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.contact-form .form-control {
  border: 1px solid #eee; border-radius: 12px;
  padding: 14px 18px; margin-bottom: 16px;
  font-size: 15px;
}
.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(68,206,111,0.1);
}
.contact-info-item {
  display: flex; gap: 16px; margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-item .icon {
  width: 55px; height: 55px; background: var(--primary-light);
  color: var(--primary); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.contact-info-item h4 { font-size: 17px; margin-bottom: 4px; }
.contact-info-item p { margin: 0; }

/* ===== Contact Us (centered pill form) ===== */
.contact-us-section { background: #fff; }
.contact-title-divider {
  width: 130px; height: 4px;
  margin: 12px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #e5e7eb 0%, var(--primary) 50%, #e5e7eb 100%);
}
.contact-us-form { max-width: 980px; margin: 0 auto; }
.contact-field { position: relative; }
.contact-field input,
.contact-field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #ececf1;
  border-radius: 50px;
  padding: 18px 54px 18px 26px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.contact-field textarea {
  border-radius: 24px;
  padding: 18px 26px;
  resize: vertical;
  min-height: 150px;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #9aa0ad; }
.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(68,206,111,0.12);
}
.contact-field > i {
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  color: #9aa0ad;
  font-size: 16px;
  pointer-events: none;
  transition: color 0.3s;
}
.contact-field input:focus ~ i { color: var(--primary); }
.contact-us-form .btn-primary-c {
  border: none;
  padding: 15px 44px;
  cursor: pointer;
}

/* ===== Footer ===== */
footer {
  background: #f3f2fb;
  color: #6b6f80;
  position: relative;
  overflow: hidden;
}
.footer-wave {
  display: block;
  width: 100%;
  height: 220px;
  background: #fff;
  line-height: 0;
}
.footer-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}
.footer-inner {
  padding: 30px 0 50px;
  position: relative;
  z-index: 2;
}
footer h4 {
  color: var(--dark);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 14px;
}
footer h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 50px; height: 3px;
  background: var(--primary);
  border-radius: 3px;
}
footer h4::before {
  content: '';
  position: absolute;
  left: 58px; bottom: 0;
  width: 8px; height: 3px;
  background: var(--primary);
  opacity: 0.5;
  border-radius: 3px;
}
footer a {
  color: #6b6f80;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 16px;
}
footer a:hover {
  color: var(--primary);
}
.footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--dark);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.02em;
}
.footer-logo .accent {
  color: var(--primary);
}
.footer-logo .logo-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(68,206,111,0.28);
}
.footer-brand-text {
  color: #7a7e8f;
  font-size: 16px;
  line-height: 2.1;
  margin-bottom: 30px;
  max-width: 320px;
}
.footer-follow {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-follow-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
}
.footer-social-circles {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-social-circles a {
  color: #8a8e9e;
  font-size: 16px;
  line-height: 1;
  transition: all 0.3s;
}
.footer-social-circles a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-list li {
  margin-bottom: 18px;
}
.footer-links-list li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.footer-links-list li a::before {
  content: '\F285';
  font-family: 'bootstrap-icons';
  font-size: 13px;
  color: #a7aab8;
  transition: all 0.3s;
}
.footer-links-list li a:hover::before {
  color: var(--primary);
  transform: translateX(3px);
}
.footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-info li {
  padding: 0 0 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: #6b6f80;
  font-size: 16px;
  line-height: 1.7;
}
.footer-info li i {
  color: var(--primary);
  font-size: 18px;
  line-height: 1.6;
  flex-shrink: 0;
}
.footer-info li.has-gap {
  padding-bottom: 30px;
}
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--dark);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* ===== Newsletter ===== */
.newsletter-section {
  background: #fff;
  overflow: hidden;
}
.newsletter-visual {
  background: linear-gradient(135deg, #f3fcf6 0%, #e6f9ed 100%);
  border-radius: 30px;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-visual::before {
  content: ''; position: absolute;
  top: 20px; left: 20px;
  width: 40px; height: 40px;
  background: var(--primary); opacity: 0.15;
  border-radius: 12px;
}
.newsletter-visual::after {
  content: ''; position: absolute;
  bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background: var(--secondary); opacity: 0.4;
  border-radius: 50%;
}
.newsletter-icon-main {
  font-size: 180px;
  color: var(--primary);
  position: relative;
  z-index: 2;
}
.newsletter-decor {
  position: absolute;
  color: var(--primary);
  opacity: 0.25;
  font-size: 24px;
}
.newsletter-decor.d1 { top: 15%; right: 20%; }
.newsletter-decor.d2 { bottom: 25%; left: 15%; font-size: 18px; }
.newsletter-decor.d3 { top: 40%; left: 8%; font-size: 20px; }
.newsletter-decor.d4 { top: 25%; right: 8%; font-size: 16px; }
.newsletter-divider {
  width: 80px; height: 3px;
  background: var(--primary);
  border-radius: 3px;
  margin: 18px 0 24px;
}
.newsletter-form {
  position: relative;
  margin-top: 28px;
  max-width: 460px;
}
.newsletter-form input {
  width: 100%;
  padding: 18px 26px;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  transition: all 0.3s;
  color: var(--dark);
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(68,206,111,0.1);
}
.newsletter-form button {
  margin-top: 18px;
  background: var(--primary);
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  border: none;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.newsletter-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(68,206,111,0.3);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero { padding: 130px 0 60px; }
  .section-padding { padding: 70px 0; }
  .contact-form { padding: 35px 25px; }
}

/* ===== Contact form validation ===== */
.contact-field input.is-invalid,
.contact-field textarea.is-invalid {
  border-color: #e23b3b;
  box-shadow: 0 0 0 4px rgba(226,59,59,0.08);
}
.field-error {
  display: block;
  color: #e23b3b;
  font-size: 13px;
  margin: 6px 0 0 20px;
}
.contact-alert {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid var(--secondary);
  border-radius: 14px;
  padding: 14px 20px;
  margin-bottom: 22px;
  font-weight: 500;
  font-size: 15px;
}
.contact-alert i { margin-right: 6px; }
