:root {
  --primary-navy: #081B33;
  --primary-blue: #0066FF;
  --primary-blue-hover: #0052cc;
  --light-bg: #f4f7f9;
  --text-dark: #1a1a1a;
  --text-gray: #555555;
  --white: #ffffff;
  --gradient-blue: linear-gradient(135deg, #081B33 0%, #0066FF 100%);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary-navy);
}

p {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-gray);
}

a {
  text-decoration: none;
}

/* Navbar */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.navbar.sticky-top.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}
.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary-navy) !important;
  font-size: 1.5rem;
}
.navbar-brand span {
  color: var(--primary-blue);
}
.nav-link {
  font-weight: 500;
  color: var(--primary-navy) !important;
  margin: 0 5px;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: var(--primary-blue) !important;
}
.btn-primary-custom {
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary-custom:hover {
  background-color: var(--primary-blue-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}
.btn-outline-custom {
  background-color: transparent;
  color: var(--primary-navy);
  border: 2px solid var(--primary-navy);
  padding: 8px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline-custom:hover {
  background-color: var(--primary-navy);
  color: var(--white);
}

/* Hero Section */
.hero-section {
  background: var(--light-bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0,102,255,0.08) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
}
.hero-illustration {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-illustration img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(8, 27, 51, 0.1);
}

/* Trust Section */
.trust-section {
  padding: 80px 0;
  background-color: var(--white);
  text-align: center;
}
.trust-title {
  margin-bottom: 20px;
}
.trust-content {
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.1rem;
}
.stat-box {
  padding: 30px;
  border-radius: 10px;
  background: var(--light-bg);
  transition: transform 0.3s ease;
}
.stat-box:hover {
  transform: translateY(-5px);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}
.stat-text {
  font-weight: 600;
  color: var(--primary-navy);
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-top-color: var(--primary-blue);
}
.service-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}
.service-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
}
.service-desc {
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-gray);
}
.service-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-blue);
  font-size: 0.8rem;
}

/* Who We Help Section */
.industries-section {
  padding: 80px 0;
  background-color: var(--primary-navy);
  color: var(--white);
}
.industries-section h2 {
  color: var(--white);
}
.industry-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
}
.industry-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}
.industry-title {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.industry-desc {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin: 0;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: var(--white);
}
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: var(--primary-blue);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}
.timeline-item {
  padding: 20px 40px;
  position: relative;
  background: inherit;
  width: 50%;
}
.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--white);
  border: 4px solid var(--primary-blue);
  top: 25px;
  border-radius: 50%;
  z-index: 1;
}
.left {
  left: 0;
}
.right {
  left: 50%;
}
.right::after {
  left: -10px;
}
.timeline-content {
  padding: 20px 30px;
  background: var(--light-bg);
  border-radius: 8px;
  position: relative;
}
.timeline-step {
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
  display: block;
}
.timeline-content h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

/* Why Choose Us Section */
.why-section {
  padding: 80px 0;
  background: var(--light-bg);
}
.feature-box {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,102,255,0.1);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.2rem;
}
.feature-text {
  font-weight: 600;
  color: var(--primary-navy);
  margin: 0;
}

/* Case Studies */
.case-studies-section {
  padding: 80px 0;
  background: var(--white);
}
.case-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}
.case-card:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.case-body {
  padding: 30px;
}
.case-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.case-detail {
  margin-bottom: 15px;
}
.case-label {
  font-weight: 700;
  color: var(--primary-navy);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 5px;
}
.case-value {
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-blue);
  color: var(--white);
  text-align: center;
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  font-size: 1.1rem;
}
.btn-white {
  background: var(--white);
  color: var(--primary-navy);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
}
.btn-white:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
  background: #041020;
  color: #a0aabf;
  padding: 60px 0 20px;
}
.footer-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 15px;
  display: inline-block;
}
.footer-brand span {
  color: var(--primary-blue);
}
.footer-desc {
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #a0aabf;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--primary-blue);
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  font-size: 0.85rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #128c7e;
  color: #FFF;
  transform: scale(1.1);
}

/* Page Header for inner pages */
.page-header {
  padding: 120px 0 60px;
  background: var(--light-bg);
  text-align: center;
}
.page-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-item::after {
    left: 21px;
  }
  .right {
    left: 0;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-section {
    padding: 60px 0;
    text-align: center;
  }
  .hero-subtitle {
    margin: 0 auto 30px;
  }
  .hero-illustration {
    margin-top: 40px;
  }
  .stat-box {
    margin-bottom: 20px;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}

/* Animations */
.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
