*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Space Grotesk", sans-serif;
  background: #ffffffff;
  color: #0f172a;
  overflow-x: hidden;
  line-height: 1.6;
}

:root { 
  --navy-900: #ffffffff;
  --navy-800: #f8fafc;
  --navy-700:#f1f5f9 ;
  --navy-600: #e2e8f0;
  --navy-500:#cbd5e1 ;
  --gold: #2563eb;
  --gold-light: #60a5fa;
  --gold-dark: #1d4ed8;
  --white: #2507bd;
  --text-primary: #0f172a;
  --text-secondary: black;
  --text-muted: black;
  --border: red;
  --border-light: rgba(9, 194, 58, 0.08);
  --transition: all 0.3s ease;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.05rem;
  font-weight: 600;
}
p {
  color: black;
  line-height: 1.75;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.gold-text {
  color: var(--gold);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
section {
  padding: 7rem 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy-900);
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Space Grotesk", sans-serif;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
  font-family: "Space Grotesk", sans-serif;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(252, 252, 254, 0.97);
 
  padding: 0.9rem 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 90px;
  width: 90px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.logo-flow {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-flow .dot {
  color: var(--gold);
}
.logo-services {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: var(--transition);
}
.mobile-nav a:hover {
  color: var(--gold);
}
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #f1f5f9;
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--navy-900) 0%,
    rgba(251, 251, 253, 0.88) 55%,
    rgba(251, 252, 255, 0.65) 100%
  );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 40%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding-top: 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(209, 228, 225, 0.08);
  border: 1px solid rgba(100, 19, 222, 0.22);
  color: var(--gold);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
      margin-top: 45px;
}
.hero-badge::before {
  content: "✦";
  font-size: 0.6rem;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title .accent {
  color: var(--gold);
  display: block;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.8;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.35;
    transform: scaleY(0.65);
  }
}

/* ===== STATS ===== */
.stats-bar {
  background: var(--navy-700);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 2.75rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0 1rem;
}
.stat-item + .stat-item {
  border-left: 1px solid var(--border-light);
}
.stat-number {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix {
  font-size: 1.5rem;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== ABOUT ===== */
#about {
  background: var(--navy-800);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 155px;
  object-fit: cover;
  border-radius: 8px;
  border: 4px solid var(--navy-800);
}
.about-gold-line {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 55%;
  height: 3px;
  background: var(--gold);
}
.about-text h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.about-text p {
  margin-bottom: 1.25rem;
}
.gold-divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 1rem 0 2rem;
}
.gold-divider.center {
  margin: 1rem auto 2rem;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 2rem;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.highlight-icon {
  width: 38px;
  height: 38px;
  background:rgb(245, 245, 245) ;
  border: rgb(8, 8, 9);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.highlight-text h4 {
  color: var(--white);
  font-size: 0.93rem;
  margin-bottom: 0.2rem;
}
.highlight-text p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== SERVICES ===== */
#services {
  background: var(--navy-900);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.section-header p {
  max-width: 580px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--navy-700);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  border-color: rgba(42, 12, 240, 0.726);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(14, 20, 212, 0);
}
.service-img-wrap {
  overflow: hidden;
  position: relative;
}
.service-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.service-card:hover .service-img {
  transform: scale(1.06);
}
.service-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy-900);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
}
.service-body {
  padding: 1.75rem;
}
.service-icon {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}
.service-body h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.service-body p {
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-tag {
  background: rgba(110, 117, 201, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.18);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

/* ===== COMMITMENTS ===== */
#commitments {
  background: var(--navy-800);
}
.tabs {
  display: flex;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 3rem;
}
.tab-btn {
  flex: 1;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: -1px;
  text-align: center;
}
.tab-btn:hover {
  color: var(--text-primary);
}
.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  animation: fadeUp 0.3s ease;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.commit-card {
  background: var(--navy-700);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  transition: var(--transition);
}
.commit-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
}
.commit-number {
  font-size: 2.8rem;
  font-weight: 700;
  color:black;
  line-height: 1;
  margin-bottom: 1rem;
}
.commit-card h4 {
  color: var(--white);
  margin-bottom: 0.7rem;
}
.commit-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ===== WHY US ===== */
#why-us {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}
#why-us::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(
    circle,
  black
    transparent 65%
  );
  pointer-events: none;
}
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-us-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.feature-icon-wrap {
  width: 44px;
  height: 44px;
  background: white;
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}
.feature-item h4 {
  color: var(--white);
  margin-bottom: 0.3rem;
}
.feature-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== CONTACT ===== */
#contact {
  background: var(--navy-800);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4.5rem;
}
.contact-info h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.contact-info > p {
  margin-bottom: 2.5rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem 0;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 42px;
  height: 42px;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-item h4 {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.contact-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}
.contact-item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}
.contact-item a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--navy-700);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 2.5rem;
}
.contact-form h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.75rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.form-group.full {
  grid-column: span 2;
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-800);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  color: var(--text-primary);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.08);
}
.form-group select option {
  background: var(--navy-800);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.75rem;
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}
.form-success .success-icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}
.form-success h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-900);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 2rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 1rem 0 1.5rem;
  max-width: 270px;
}
.footer-socials {
  display: flex;
  gap: 0.65rem;
}
.social-link {
  width: 36px;
  height: 36px;
  background: var(--navy-700);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-col ul a:hover {
  color: var(--text-secondary);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.footer-legal a:hover {
  color: var(--text-secondary);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid,
  .why-us-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-accent {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item + .stat-item {
    border-left: none;
  }
  .stats-grid .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border-light);
  }
}
@media (max-width: 768px) {
  .nav-links,
  .navbar .btn-primary {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .tab-content.active {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: span 1;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .tabs {
    flex-direction: column;
  }
  .tab-btn {
    text-align: left;
    border-bottom: none;
    border-left: 2px solid transparent;
    padding-left: 1rem;
  }
  .tab-btn.active {
    border-left-color: var(--gold);
    border-bottom-color: transparent;
  }
  section {
    padding: 5rem 0;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .service-img {
    height: 220;
  }
  .contact-form {
    padding: 2rem 1rem;
  }

  .stats-grid .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border-light);
  }
}
