* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #194735;
  color: white;
}

/* ================= COMMON ================= */
.container {
  max-width: 1300px;
  margin: auto;
  padding: 20px;
}

a {
  text-decoration: none;
  color: inherit;
  text-transform: capitalize;
}

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(25, 71, 53, 0.9);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 66px;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  position: relative;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #22D3EE, #31FF7D);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-outline {
  border: 2px solid white;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.4s ease;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #22D3EE, #31FF7D);
  color: #194735;
  border-color: transparent;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: white;
  transition: 0.4s;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right, #22D3EE55, transparent 45%),
    radial-gradient(circle at left, #31FF7D55, transparent 45%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  padding: 100px 20px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.3;
}

.hero-content h1 span {
  color: #22D3EE;
  font-family: 'Inria Serif', serif;
}

.hero-content p {
  max-width: 520px;
  opacity: 0.8;
  margin: 24px 0 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: #16A34A;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
}

.btn-secondary {
  border: 1px solid #16A34A;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
}

.trust {
  margin-top: 40px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatars img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -14px;
}

.hero-video {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
}

/* ================= MOBILE ================= */
.mobile-contact {
  display: none;
}

@media (max-width: 900px) {

  .desktop-contact {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 75px;
    right: 20px;
    background: rgba(25, 71, 53, 0.97);
    flex-direction: column;
    padding: 20px;
    border-radius: 14px;
    display: none;
    gap: 18px;
    width: 220px;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-contact {
    display: block;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}
.about-section {
  background: #0E2D22;
  padding: 94px 70px;
  color: #ffffff;
  font-family: Inter, sans-serif;
}

.about-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.about-left {
  max-width: 650px;
}

.about-left h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 17px;
  line-height: 26px;
  color: #D1D5DB;
  margin-bottom: 24px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #ffffff;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 48px;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: linear-gradient(135deg, #22C55E, #16A34A);
  border-color: transparent;
}

/* STATS */
.about-stats {
  display: flex;
  align-items: center;
  gap: 120px;
}

.stat {
  text-align: center;
}

/* SAME SIZE FOR 5+, 1000+, GLOBAL */
.stat-value {
  font-size: 48px;
  font-weight: 600;
  color: #22C55E;
}

.stat-label {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #9CA3AF;
}

/* RIGHT IMAGE */
.about-right {
  width: 420px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
}

.about-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 900px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-stats {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .about-right {
    width: 100%;
    height: 320px;
  }
}
.services-section {
  background: #0E2D22;
  padding: 100px 70px;
  text-align: center;
  color: #ffffff;
  font-family: Inter, sans-serif;
}

.services-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 72px;
  text-transform: capitalize;
}

/* GRID */
.services-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* CARD */
.service-card {
  width: 380px;
  padding: 40px 32px;
  border-radius: 24px;
  border: 1.5px solid rgba(34, 197, 94, 0.35);
  background: transparent;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;

  opacity: 0;
  transform: translateY(40px);
  transition: all 0.35s ease;
}

/* HOVER EFFECT */
.service-card:hover {
  border-color: #22C55E;
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

/* ICON */
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid rgba(34, 197, 94, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  color: #22C55E;
  font-size: 22px;
}

/* TEXT */
.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

.service-card p {
  font-size: 14px;
  line-height: 22px;
  color: #9CA3AF;
  text-transform: capitalize;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-section {
    padding: 70px 20px;
  }

  .service-card {
    width: 80%;
    max-width: 360px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.projects-section {
  background: #0E2D22;
  padding: 94px 70px;
  color: #ffffff;
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
}

/* HEADER */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.cta-section {
  background: #0B1F17;
  padding: 94px 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
}

.cta-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

/* HEADING */
.cta-content h2 {
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  text-transform: capitalize;
  letter-spacing: 0.84px;
}

/* TEXT */
.cta-content p {
  font-size: 16px;
  font-weight: 600;
  color: #D1D5DB;
  text-transform: capitalize;
  letter-spacing: 0.32px;
  line-height: 26px;
}

/* BUTTON */
.cta-btn {
  height: 52px;
  padding: 0 28px;
  background: #22C55E;
  border-radius: 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.36px;

  transition: all 0.3s ease;
}

/* HOVER */
.cta-btn:hover {
  background: #16A34A;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.35);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 20px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 15px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer {
  background: #0B1814;
  padding: 96px 70px 48px;
  font-family: "Inter", sans-serif;
  color: #ffffff;
}

/* NEWSLETTER */
.newsletter {
  text-align: center;
  margin-bottom: 60px;
}

.newsletter h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.newsletter p {
  font-size: 12px;
  color: #D1D5DB;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsletter-form input {
  width: 260px;
  height: 48px;
  padding: 0 16px;
  background: #0E2D22;
  border: 1px solid #134E3A;
  border-radius: 12px;
  color: #ffffff;
}

.newsletter-form button {
  height: 48px;
  padding: 0 24px;
  background: #22C55E;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

/* GRID */
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* COL */
.footer-col {
  max-width: 260px;
}

.footer-logo {
  width: 66px;
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 14px;
  color: #9CA3AF;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: capitalize;
}

/* SOCIAL */
.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 32px;
  height: 32px;
  border: 1px solid #22C55E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22C55E;
  transition: 0.3s;
}

.social-links a:hover {
  background: #22C55E;
  color: #0B1814;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #9CA3AF;
}

.footer-col ul li a {
  color: inherit;
}

/* CONTACT */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #9CA3AF;
}

.contact-item i {
  color: #22C55E;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.footer-bottom span {
  width: 250px;
  height: 1px;
  background: #22C55E;
}

.footer-bottom p {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer {
    padding: 70px 20px;
  }

  .footer-grid {
    justify-content: center;
    text-align: center;
  }

  .footer-col {
    max-width: 100%;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom span {
    display: none;
  }
}
.about-section {
  background: #0e2d22;
  padding: 90px 70px;
  color: white;
}

.about-container {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

/* LEFT */
.about-left {
  flex: 1;
}

.about-left h2 {
  font-size: 36px;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.story-title {
  margin-top: 40px;
}

.about-text {
  color: #d1d5db;
  font-size: 17px;
  line-height: 26px;
}

/* RIGHT */
.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* CARD */
.about-card {
  width: 100%;
  max-width: 460px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  text-align: center;
}

.about-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-card ul {
  list-style: none;
  padding: 0;
}

.about-card li {
  font-size: 18px;
  color: #e5e7eb;
  margin-bottom: 12px;
}

/* STATS */
.about-stats {
  display: flex;
  gap: 30px;
}

.stat {
  width: 160px;
  text-align: center;
}

.count,
.global {
  font-size: 48px;
  font-weight: 600;
  color: #22c55e;
}

.plus {
  font-size: 32px;
  color: #22c55e;
}

.stat p {
  margin-top: 6px;
  font-size: 14px;
  color: #9ca3af;
  text-transform: capitalize;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .about-stats {
    gap: 40px;
  }
}
.founder-section {
  background: #0e2d22;
  padding: 90px 70px;
  color: white;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  text-transform: capitalize;
}

/* CONTAINER */
.founder-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT CARD */
.founder-card {
  width: 480px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  text-align: center;
}

.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  background: #d9d9d9;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-info h3 {
  font-size: 28px;
  margin-bottom: 6px;
}

.founder-info span {
  font-size: 22px;
  color: #22c55e;
  font-weight: 600;
}

/* RIGHT */
.founder-message {
  max-width: 560px;
}

.founder-message h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.founder-message p {
  font-size: 17px;
  line-height: 26px;
  color: #d1d5db;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .founder-container {
    flex-direction: column;
    text-align: center;
  }

  .founder-message {
    max-width: 100%;
  }
}
#how-we-work {
  background: #0E2D22;
  padding: 94px 70px;
  text-align: center;
}

.work-title {
  color: white;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 28px;
  text-transform: capitalize;
}

.work-cards {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

/* INITIAL STATE */
.work-card {
  width: 260px;
  height: 213px;
  padding: 28px;
  background: linear-gradient(
    90deg,
    rgba(19,78,58,0.2),
    rgba(14,45,34,0.2)
  );
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  opacity: 1;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

/* ACTIVE STATE */
.work-card.active {
  opacity: 1;
  transform: translateY(0);
}

.step-circle {
  width: 48px;
  height: 48px;
  background: #ECFDF5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16A34A;
  font-weight: 600;
}

.work-card h3 {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.work-card p {
  color: #6B7280;
  font-size: 14px;
  text-align: center;
}
/* ================================
   KING SPARROW – SERVICES SECTION
================================ */

.ks-services {
  padding: 120px 70px;
  background: #0E2D22;
  text-align: center;
}

.ks-services-title {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 72px;
}

.ks-services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.ks-service-card {
  width: 360px;
  padding: 36px;
  background: linear-gradient(
    89deg,
    rgba(19, 78, 58, 0.2),
    rgba(14, 45, 34, 0.2)
  );
  border-radius: 24px;
  border: 1px solid rgba(229, 231, 235, 0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  opacity: 1;
  transform: translateY(0);
}

.ks-service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ks-service-icon i {
  color: #22C55E;
  font-size: 22px;
}

.ks-service-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
}

.ks-service-card p {
  color: #6B7280;
  font-size: 14px;
  line-height: 22px;
}
.projects-header {
  margin-bottom: 72px;
}

.projects-header h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.projects-header p {
  font-size: 16px;
  font-weight: 600;
  color: #D1D5DB;
  text-transform: capitalize;
}

/* GRID */
.projects-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* CARD WITH BORDER */
.project-card {
  width: 365px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(90deg, #134E3A, #0E2D22);
  border: 1.5px solid rgba(34, 197, 94, 0.35);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  opacity: 1;
  transform: translateY(40px);
  transition: all 0.4s ease;
}

/* IMAGE */
.project-card img {
  width: 100%;
  height: 203px;
  object-fit: cover;
  border-radius: 16px;
}

/* TEXT */
.project-card h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

.project-card span {
  font-size: 13px;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: capitalize;
}

/* HOVER */
.project-card:hover {
  transform: translateY(-8px);
  border-color: #22C55E;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* BUTTON */
.projects-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  height: 48px;
  padding: 0 24px;
  background: #22C55E;
  border-radius: 8px;

  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;

  transition: all 0.3s ease;
}

.projects-btn i {
  transition: transform 0.3s ease;
}

/* BUTTON HOVER */
.projects-btn:hover {
  background: #16A34A;
}

.projects-btn:hover i {
  transform: translateX(6px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .projects-section {
    padding: 70px 20px;
  }

  .project-card {
    width: 90%;
    max-width: 360px;
  }
}
.ks-contact {
  background: #0E2D22;
  padding: 100px 70px;
  color: #fff;
  font-family: Inter, sans-serif;
}

.ks-contact-wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.ks-contact-info {
  flex: 1;
}

.ks-contact-info h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.ks-contact-info p {
  color: #D1D5DB;
  margin-bottom: 24px;
  line-height: 1.6;
}

.ks-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  color: #9CA3AF;
}

.ks-contact-item a {
  color: #9CA3AF;
  text-decoration: none;
}

.ks-contact-form {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(243, 243, 243, 0.15);
}

.ks-contact-form h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.ks-form-sub {
  font-size: 14px;
  color: #D1D5DB;
  margin-bottom: 20px;
}

.ks-contact-form input,
.ks-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #9CA3AF;
  background: transparent;
  color: #fff;
}

.ks-contact-form textarea {
  height: 100px;
  resize: none;
}

.ks-contact-form button {
  width: 100%;
  padding: 12px;
  background: #16A34A;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.ks-contact-form small {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: #D1D5DB;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .ks-contact-wrap {
    flex-direction: column;
  }
}
.clients-section {
  padding: 100px 70px;
  background: #0E2D22;
  text-align: center;
}

.clients-title {
  color: #fff;
  font-size: 42px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
}

.clients-subtitle {
  color: #9CA3AF;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 60px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: auto;
}

.client-card {
  background: linear-gradient(
    89deg,
    rgba(19, 78, 58, 0.25) 0%,
    rgba(14, 45, 34, 0.25) 100%
  );
  border: 1px solid rgba(229, 231, 235, 0.15);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.35s ease;
}

.client-card img {
  width: 80px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: 0.35s ease;
}

.client-card span {
  color: #E5E7EB;
  font-size: 16px;
  font-weight: 600;
}

.client-card:hover {
  transform: translateY(-8px);
  border-color: #22C55E;
}

.client-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}