@font-face {
  font-family: "inter";
  src: url("/assets/fonts/inter.ttf");
}
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "inter";
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
:root {
  --main-gradient: linear-gradient(135deg, #3b82f6, #8b5cf6);
  --bg-gradient: linear-gradient(135deg, #f8fafc, #e2e8f0);
  --footer-bg: #1f2937;
  --blue: #3b82f6;
}
a {
  text-decoration: none;
}
/* == custom classes */

.gradient-text {
  background: var(--main-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-gradient {
  background-color: var(--bg-gradient);
}
/* === common css ==== */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.8;
}
/* nav css */
.navbar-scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* background-color: #fcfcfc; */
}
#navbar-spacer {
  height: 78px;
  width: 100%;
}
nav.navbar {
  padding: 1rem 0;
}
.logo-name h1 {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 3px;
}
.logo-name::after {
  content: "Global";
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
  margin-top: -2px;
  position: absolute;
}
.nav-menu {
  gap: 2rem;
}
.nav-menu li a {
  color: #374151;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}
.nav-menu li a:hover {
  color: var(--blue);
}
.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  transition: width 0.3s ease;
}
.nav-menu li a:hover:after {
  width: 100%;
}
.nav-btn button {
  background: var(--main-gradient);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px #3b82f64d;
}

/* === hero section css */
.hero {
  background: var(--bg-gradient);
  padding: 120px 0 80px;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1f2937;
}
.hero-description {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-nbr {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.cta-primary {
  background: var(--main-gradient);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px #3b82f64d;
  display: inline-block;
}
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px #3b82f666;
}

.cta-secondary {
  color: #374151;
  padding: 1rem 2rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background: #fff;
  display: inline-block;
}
.cta-secondary:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  transform: translateY(-2px);
}

/* hero card */
.hero-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px #0000001a;
  width: 100%;
  max-width: 400px;
  position: relative;
  animation: float 6s ease-in-out infinite;
}
.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.card-dots {
  display: flex;
  gap: 0.5rem;
}
.card-dots span:nth-child(1) {
  background: #ef4444;
}
.card-dots span:nth-child(2) {
  background: #f59e0b;
}
.card-dots span:nth-child(3) {
  background: #10b981;
}
.card-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e7eb;
}
.metric {
  margin-bottom: 1.5rem;
}
.metric {
  margin-bottom: 1.5rem;
}

.metric-label {
  font-size: 0.875rem;
  color: #6b7280;
  display: block;
  margin-bottom: 0.5rem;
}

.metric-bar {
  width: 100%;
  height: 8px;
  background: #f3f4f6;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.metric-fill {
  height: 100%;
  background: var(--main-gradient);
  border-radius: 4px;
  transition: width 2s ease;
}

.metric-value {
  font-size: 1rem;
  font-weight: 600;
  color: #3b82f6;
}
/* ======== services section css */
.services {
  background: #fff;
  padding: 80px 0px;
}
.services-grid {
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px #0000000d;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover:before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px #0000001a;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #fff;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.service-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  color: #374151;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 600;
}

/* === about section css ==== */
.about {
  padding: 80px 0;
  background: var(--bg-gradient);
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.highlight {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 6px #0000000d;
}

.highlight h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.highlight p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.about-values {
  margin-top: 2rem;
}

.about-values h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.about-values ul {
  list-style: none;
  padding: 0;
}

.about-values li {
  color: #374151;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.about-values li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 600;
}
.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px #0000001a;
  background: transparent;
  padding: 0px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3b82f6e6, #8b5cf6e6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
  opacity: 1;
}

.about-image:hover img {
  transform: scale(1.1);
}

.overlay-content {
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.overlay-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.overlay-content p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.overlay-cta {
  background: #fff;
  color: #3b82f6;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.overlay-cta:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}
/* ==== contact section ==== */
.contact {
  padding: 80px 0;
  background: #fff;
}
.contact-info {
  display: flex;
  flex-direction: column;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.info-content p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.info-content a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: #8b5cf6;
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px #0000001a;
  border: 1px solid #f3f4f6;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px #3b82f61a;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px #3b82f64d;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px #3b82f666;
}

.submit-button:active {
  transform: translateY(0);
}

/* ==== footer section ==== */
.footer {
  background: #1f2937;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: -2px;
  margin-bottom: 1rem;
}

.footer-description {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #374151;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #fff;
  transform: translateY(-2px);
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #3b82f6;
}

.contact-info p {
  color: #9ca3af;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-info a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #8b5cf6;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* ======  Animations ====== */
@keyframes float {
  0%,
  to {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}
