/* Font Variables */
:root {
    --heading-font: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --body-font: 'Open Sans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --nav-font: 'Poppins', sans-serif;
  }
  
  /* Typography Base Styles */
  body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--default-color);
    letter-spacing: 0.2px;
  }
  
  /* Heading Styles */
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    line-height: 1.3;
    font-weight: 700;
    color: var(--heading-color);
    letter-spacing: -0.02em;
  }
  
  h1 {
    font-size: 36px;
    margin-bottom: 1.5rem;
  }
  
  h2 {
    font-size: 32px;
    margin-bottom: 1.25rem;
  }
  
  h3 {
    font-size: 28px;
    margin-bottom: 1rem;
  }
  
  h4 {
    font-size: 24px;
    margin-bottom: 0.75rem;
  }
  
  h5 {
    font-size: 20px;
    margin-bottom: 0.5rem;
  }
  
  /* Responsive Typography */
  @media (max-width: 768px) {
    body {
      font-size: 15px;
    }
  
    h1 {
      font-size: 32px;
    }
  
    h2 {
      font-size: 28px;
    }
  
    h3 {
      font-size: 24px;
    }
  
    h4 {
      font-size: 20px;
    }
  
    h5 {
      font-size: 18px;
    }
  }
  
  /* Section Typography Refinements */
  .hero h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
  }
  
  .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .service-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
  }
  
  /* Body Text Refinements */
  p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }
  
  .lead {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  /* Navigation Typography */
  .navmenu a {
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
  }
  
  /* Button Typography */
  .btn-get-started,
  .btn-getstarted {
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

/* Hero Section Styles */
.hero {
  background: linear-gradient(135deg, #213b52 0%, #1d2b3a 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="none"/></svg>') center/50px;
  opacity: 0.1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(120deg, #fdc134, #ffdb7d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 400;
}

.btn-get-started {
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(253, 193, 52, 0.3);
}

.btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 193, 52, 0.4);
  background: #ffd65c;
}

.pulse-button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hero-img {
  position: relative;
}

.hero-img::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(253, 193, 52, 0.1) 0%, rgba(253, 193, 52, 0) 70%);
  top: 0;
  left: 0;
  z-index: -1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .btn-get-started {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}


/* Header & Navigation Styles */
.header {
  background: rgba(34, 59, 81, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  z-index: 997;
  padding: 15px 0;
}

.header.header-scrolled {
  background: rgba(34, 59, 81, 0.98);
  padding: 10px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navmenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navmenu .nav-link {
  position: relative;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--nav-color);
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: -4px;
  margin: 0 20px;
  transition: 0.3s;
  opacity: 0;
}

.navmenu .nav-link:hover::after,
.navmenu .nav-link.active::after {
  width: calc(100% - 40px);
  opacity: 1;
}

.navmenu .nav-link:hover,
.navmenu .nav-link.active {
  color: var(--accent-color);
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--nav-mobile-background-color);
    padding: 60px 0;
    transition: 0.3s;
    z-index: 9998;
    overflow-y: auto;
  }

  .navmenu.mobile-nav-active {
    right: 0;
  }

  .navmenu ul {
    flex-direction: column;
    padding: 0 30px;
  }

  .navmenu .nav-link {
    padding: 15px 0;
    font-size: 18px;
  }

  .navmenu .nav-link::after {
    margin: 0;
  }

  .mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9999;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    color: var(--nav-color);
  }
}

/* Trusted By Section */
.section-sm {
  padding: 3rem 0;
}

.trusted-by-title {
  color: var(--heading-color);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trusted-logos img {
  height: 2.5rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.trusted-logos img:hover {
  opacity: 1;
}

.achievement-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--surface-color);
  border-radius: 50px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.badge i {
  color: var(--accent-color);
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.timeline-item {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-icon {
  width: 4rem;
  height: 4rem;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.timeline-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

/* Testimonials */
.testimonial-item {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
}

.testimonial-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.testimonial-item h4 {
  font-size: 0.875rem;
  color: var(--heading-color);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.quote-icon-left,
.quote-icon-right {
  color: var(--accent-color);
  font-size: 0.875rem;
  margin: 0 0.5rem;
}

/* Bottom CTA */
.cta-bottom {
  background: linear-gradient(135deg, #213b52 0%, #1d2b3a 100%);
  color: var(--contrast-color);
  padding: 5rem 0;
}

.cta-bottom h2 {
  color: var(--contrast-color);
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-secondary {
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--contrast-color);
  color: var(--heading-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .trusted-logos {
    gap: 1.5rem;
  }
  
  .achievement-badges {
    gap: 1rem;
  }
  
  .badge {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1024px) {
  .mobile-nav-toggle {
    display: none !important;
  }
  
  .btn-getstarted {
    display: inline-block !important;
    margin-left: auto;
  }
}
