/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #212529;
  background: white;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Prevent images from overflowing */
img {
  max-width: 100%;
  height: auto;
}

.wrapper {
  width: 100%;
  background: white;
}

.main-content {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: white;
}

/* Navigation */
.nav {
  width: 100%;
  background: white;
  padding: 20px 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1760px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  padding: 10px 20px;
  color: #212529;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-link.active {
  color: #592EE0;
  font-weight: 500;
}

.btn-contact {
  background: #15CA58;
  border-radius: 4px;
  color: white !important;
}

.btn-meeting {
  background: #592EE0;
  border-radius: 4px;
  color: white !important;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: #212529;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Mobile menu overlay */
body.menu-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Hero Section */
.hero-section {
  width: 100%;
  background: #F8F9FA;
  padding: 100px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  color: #592EE0;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content h1 {
  color: #343A40;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-content p {
  color: #343A40;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.btn-primary {
  background: #592EE0;
  border-radius: 4px;
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 17px 40px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #4a25b8;
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  max-width: 700px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Stats Section */
.stats-section {
  width: 100%;
  background: #343A40;
  padding: 40px 80px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-item p {
  color: white;
  font-size: 16px;
  font-weight: 400;
  max-width: 200px;
}

/* Partners Section */
.partners-section {
  width: 100%;
  background: white;
  padding: 100px 80px;
  overflow: hidden;
}

.partners-container {
  max-width: 1400px;
  margin: 0 auto;
}

.partners-section h2 {
  color: #343A40;
  font-size: 45px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.partners-section h2 .highlight {
  color: #592EE0;
}

.partners-subtitle {
  color: #212529;
  font-size: 18px;
  text-align: center;
  margin-bottom: 60px;
  opacity: 0.8;
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-logo-wrapper {
  width: 100%;
  max-width: 220px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #F8F9FA;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.partner-logo-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(89, 46, 224, 0.1), transparent);
  transition: left 0.6s;
}

.partner-logo-wrapper:hover::before {
  left: 100%;
}

.partner-logo-wrapper:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(89, 46, 224, 0.15);
  background: white;
}

.partner-logo-wrapper img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.4s ease;
}

/* SVG-specific styling for better rendering */
.partner-logo-wrapper img[src$=".svg"] {
  width: 100%;
  height: 100%;
}

.partner-logo-wrapper:hover img {
  transform: scale(1.1);
}

/* Animation for logos appearing */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.partner-logo-wrapper {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.partner-logo-wrapper:nth-child(1) {
  animation-delay: 0.1s;
}

.partner-logo-wrapper:nth-child(2) {
  animation-delay: 0.2s;
}

.partner-logo-wrapper:nth-child(3) {
  animation-delay: 0.3s;
}

.partner-logo-wrapper:nth-child(4) {
  animation-delay: 0.4s;
}

.partner-logo-wrapper:nth-child(5) {
  animation-delay: 0.5s;
}

.partner-logo-wrapper:nth-child(6) {
  animation-delay: 0.6s;
}

.partner-logo-wrapper:nth-child(7) {
  animation-delay: 0.7s;
}

.partner-logo-wrapper:nth-child(8) {
  animation-delay: 0.8s;
}

.partner-logo-wrapper:nth-child(9) {
  animation-delay: 0.9s;
}

.partner-logo-wrapper:nth-child(10) {
  animation-delay: 1s;
}

/* Services Section */
.services-section {
  width: 100%;
  padding: 100px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.services-section h2 {
  color: #343A40;
  font-size: 45px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.services-section h2 .highlight {
  color: #592EE0;
}

.section-subtitle {
  color: #212529;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.services-intro {
  max-width: 1400px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.services-intro-left {
  padding-right: 20px;
}

.services-intro-right p {
  color: #212529;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}

.services-cards-section {
  max-width: 1400px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.services-cards-left h3 {
  color: #212529;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: stretch;
}

.service-card {
  background: #F4F6F7;
  border-radius: 10px;
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 300px;
}

.service-card h3 {
  color: #212529;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
}

.btn-explore {
  background: #222222;
  border-radius: 4px;
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 40px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  margin-bottom: 20px;
  width: 100%;
  max-width: 200px;
}

.btn-explore:hover {
  background: #000;
}

.btn-contact-card {
  background: #592EE0;
  border-radius: 4px;
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 40px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  width: 100%;
  max-width: 200px;
}

.btn-contact-card:hover {
  background: #4a25b8;
}

/* Outstanding Results Section */
.results-section {
  width: 100%;
  padding: 100px 80px;
  background: #f9f9f9;
}

.results-section h2 {
  color: #212529;
  font-size: 45px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

.results-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: white;
  border-radius: 10px;
  padding: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.results-text h3 {
  color: #212529;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
}

.results-text p {
  color: #212529;
  font-size: 16px;
  line-height: 1.8;
}

.results-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-badge {
  background: #FFDFDF;
  border-radius: 5px;
  padding: 8px 15px;
  color: #212529;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  width: fit-content;
}

.results-images img {
  width: 100%;
  border-radius: 10px;
}

/* Popular Videos Section */
.videos-section {
  width: 100%;
  padding: 100px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.videos-section h2 {
  color: #343A40;
  font-size: 45px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.videos-intro {
  color: #212529;
  font-size: 16px;
  text-align: center;
  margin-bottom: 60px;
}

.videos-intro a {
  color: #592EE0;
  text-decoration: underline;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.video-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.video-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.video-card iframe {
  width: 100%;
  height: 250px;
  border-radius: 15px 15px 0 0;
}

.video-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-info strong {
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.video-info span {
  font-size: 14px;
  font-weight: 400;
}

/* Founder Message Section */
.founder-section {
  width: 100%;
  padding: 100px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.founder-section h2 {
  color: #343A40;
  font-size: 45px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.founder-section p {
  color: #212529;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 20px;
}

.founder-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 80px;
  align-items: center;
}

.founder-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.founder-image img {
  width: 100%;
  height: auto;
  display: block;
}

.founder-image iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
}

.founder-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.feature-box {
  border-radius: 10px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.feature-1 {
  background: #EDF9F8;
}

.feature-2 {
  background: #F5FAEF;
}

.feature-3 {
  background: #FFFAEA;
}

.feature-box img {
  width: 70px;
  height: 70px;
}

.feature-box h5 {
  color: #222222;
  font-size: 20px;
  font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
  width: 100%;
  padding: 100px 80px;
  background: #f9f9f9;
}

.testimonials-section h2 {
  color: #343A40;
  font-size: 45px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
  color: #212529;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-card strong {
  color: #DF1414;
  font-size: 16px;
  font-weight: 700;
  display: block;
}

.testimonial-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* CTA Section */
.cta-section {
  width: 100%;
  background: #F8F9FA;
  text-align: center;
  padding: 100px 80px;
}

.cta-section h2 {
  color: #343A40;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  color: #212529;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  width: 100%;
  background: #002424;
  padding: 60px 80px 30px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: #BBDD86;
  font-size: 18px;
  font-family: 'Sora';
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a,
.footer-column p {
  color: #D1D5DC;
  font-size: 14px;
  font-family: 'Sora';
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #BBDD86;
}

.footer-bottom {
  border-top: 1px solid #364153;
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #99A1AF;
  font-size: 14px;
  font-family: 'Sora';
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1200px) {

  .services-grid,
  .testimonials-container,
  .services-cards-section {
    grid-template-columns: 1fr;
  }

  .results-content {
    grid-template-columns: 1fr;
  }

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-content,
  .founder-features {
    grid-template-columns: 1fr;
  }

  .services-intro {
    grid-template-columns: 1fr;
  }

  .partners-logos {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 15px 15px;
  }

  .nav-logo img {
    height: 45px;
  }

  /* Show hamburger menu on mobile */
  .mobile-menu-toggle {
    display: flex;
  }

  /* Mobile menu styles */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 80px 30px 30px;
    gap: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    padding: 15px 20px;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    width: 100%;
  }

  .nav-link:hover {
    background: #f8f9fa;
  }

  .btn-contact,
  .btn-meeting {
    margin-top: 10px;
    text-align: center;
    border-radius: 8px;
  }

  .hero-section {
    flex-direction: column;
    padding: 60px 15px 40px;
    gap: 30px;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
  }

  .hero-image {
    max-width: 100%;
    width: 100%;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-badge {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .stats-section {
    padding: 30px 15px;
    gap: 25px;
  }

  .stat-item h3 {
    font-size: 28px;
  }

  .services-section,
  .results-section,
  .videos-section,
  .founder-section,
  .testimonials-section,
  .cta-section,
  .drive-section,
  .trusted-section,
  .process-section,
  .partners-section {
    padding: 50px 15px;
  }

  .partners-section h2 {
    font-size: 32px;
  }

  .partners-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .partners-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .partner-logo-wrapper {
    max-width: 100%;
    height: 120px;
    padding: 15px;
  }

  /* Mobile button improvements - better touch targets */
  .btn-primary {
    padding: 16px 32px;
    font-size: 16px;
    min-height: 48px;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-content .btn-primary {
    margin-top: 20px;
  }

  /* Improve all interactive elements for touch */
  .nav-link,
  .btn-explore,
  .btn-contact-card {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Better text readability on mobile */
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Improve form inputs if any */
  input,
  textarea,
  select {
    font-size: 16px;
    /* Prevents zoom on iOS */
  }

  /* Ensure all containers fit within viewport */
  .nav-container,
  .hero-content,
  .hero-image,
  .services-container,
  .results-content,
  .videos-grid,
  .founder-content,
  .testimonials-container,
  .cta-section,
  .partners-container,
  .footer-content,
  .trusted-content {
    max-width: 100%;
    width: 100%;
  }

  /* Ensure no element causes horizontal scroll */
  section,
  div,
  img,
  iframe {
    max-width: 100%;
  }

  /* Fix any wide text */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .services-section h2,
  .results-section h2,
  .videos-section h2,
  .founder-section h2,
  .testimonials-section h2,
  .cta-section h2,
  .drive-section h2,
  .process-section h2 {
    font-size: 32px;
  }

  .section-subtitle,
  .services-cards-left h3 {
    font-size: 28px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .results-content {
    padding: 30px 20px;
  }

  .results-text h3 {
    font-size: 24px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .founder-content {
    gap: 30px;
  }

  .testimonials-container {
    gap: 30px;
  }

  .testimonials-grid {
    gap: 20px;
  }

  .footer {
    padding: 40px 20px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trusted-section {
    padding: 50px 15px !important;
  }

  .trusted-content {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .trusted-text {
    text-align: center;
  }

  .trusted-text h2 {
    font-size: 32px !important;
    text-align: center;
  }

  .trusted-text p {
    font-size: 16px;
    text-align: center;
  }

  .trusted-stats {
    align-items: center;
    margin: 0 auto;
  }

  .stat-label {
    text-align: center;
  }

  .trusted-image {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .trusted-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    display: block;
  }

  .stat-number {
    font-size: 60px;
  }

  .drive-point h3 {
    font-size: 20px;
  }

  .process-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .process-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 25px 20px !important;
    gap: 15px !important;
  }

  .process-icon {
    width: 50px !important;
    height: 50px !important;
  }

  .process-card h3 {
    font-size: 20px !important;
    text-align: left !important;
  }

  .process-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .process-intro {
    font-size: 15px !important;
    margin-bottom: 40px !important;
    padding: 0 5px !important;
  }

  .services-cards-section {
    margin-top: 40px;
  }

  .services-intro {
    gap: 30px;
    margin-bottom: 40px;
  }
}

/* How You Drive Section */
.drive-section {
  width: 100%;
  padding: 100px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.drive-section h2 {
  color: #343A40;
  font-size: 45px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

.drive-points {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.drive-point h3 {
  color: #592EE0;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.drive-point p {
  color: #212529;
  font-size: 16px;
  line-height: 1.8;
}

/* SEO Process Section */
.process-section {
  width: 100%;
  padding: 100px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.process-section h2 {
  color: #343A40;
  font-size: 45px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.process-intro {
  color: #212529;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.process-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 3px solid #592EE0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 25px;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.process-card h3 {
  color: #592EE0;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}

.process-card p {
  color: #212529;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}

/* Trusted Customers Section */
.trusted-section {
  width: 100%;
  padding: 100px 80px;
  background: #f9f9f9;
}

.trusted-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trusted-text h2 {
  color: #343A40;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.trusted-text>p {
  color: #212529;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.trusted-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.stat-label {
  color: #212529;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.stat-number {
  color: #592EE0;
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
}

.trusted-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.trusted-image img {
  width: 100%;
  height: auto;
  display: block;
}


/* Small Mobile Devices */
@media (max-width: 480px) {
  .nav-logo img {
    height: 40px;
  }

  .nav-menu {
    gap: 5px;
  }

  .nav-link {
    padding: 6px 10px;
    font-size: 12px;
  }

  .hero-section {
    padding: 70px 15px 30px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-badge {
    font-size: 28px;
  }

  .stats-section {
    padding: 20px 15px;
  }

  .stat-item h3 {
    font-size: 24px;
  }

  .stat-item p {
    font-size: 14px;
  }

  .services-section,
  .results-section,
  .videos-section,
  .founder-section,
  .testimonials-section,
  .cta-section,
  .drive-section,
  .trusted-section,
  .process-section {
    padding: 40px 15px;
  }

  .services-section h2,
  .results-section h2,
  .videos-section h2,
  .founder-section h2,
  .testimonials-section h2,
  .cta-section h2,
  .drive-section h2,
  .process-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .section-subtitle,
  .services-cards-left h3 {
    font-size: 24px;
  }

  .service-card {
    padding: 40px 20px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .btn-explore,
  .btn-contact-card,
  .btn-primary {
    font-size: 16px;
    padding: 10px 30px;
  }

  .results-content {
    padding: 20px 15px;
  }

  .results-text h3 {
    font-size: 20px;
  }

  .trusted-text h2 {
    font-size: 32px;
  }

  .trusted-text>p {
    font-size: 16px;
  }

  .stat-number {
    font-size: 50px;
  }

  .stat-label {
    font-size: 14px;
  }

  .drive-point h3 {
    font-size: 18px;
  }

  .process-card {
    padding: 30px 20px;
  }

  .process-card h3 {
    font-size: 20px;
  }

  .drive-point p {
    font-size: 15px;
  }

  .footer {
    padding: 30px 15px 15px;
  }

  .footer-column h4 {
    font-size: 16px;
  }

  .footer-column ul li a,
  .footer-column p {
    font-size: 13px;
  }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {

  .services-section,
  .results-section,
  .videos-section,
  .founder-section,
  .testimonials-section,
  .cta-section,
  .drive-section,
  .trusted-section,
  .process-section {
    padding: 80px 40px;
  }

  .services-intro {
    grid-template-columns: 1fr;
  }

  .services-cards-section {
    grid-template-columns: 1fr;
  }

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trusted-content {
    grid-template-columns: 1fr;
  }
}


/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Apply animations to sections */
.hero-content {
  animation: slideInLeft 0.8s ease-out;
}

.hero-image {
  animation: slideInRight 0.8s ease-out;
}

.stat-item {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.stat-item:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
  animation-delay: 0.4s;
}

.stat-item:nth-child(5) {
  animation-delay: 0.5s;
}

.service-card {
  animation: scaleIn 0.5s ease-out;
  animation-fill-mode: both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:nth-child(1) {
  animation-delay: 0.1s;
}

.video-card:nth-child(2) {
  animation-delay: 0.2s;
}

.video-card:nth-child(3) {
  animation-delay: 0.3s;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.3s;
}

.testimonial-card:nth-child(4) {
  animation-delay: 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-box {
  animation: scaleIn 0.5s ease-out;
  animation-fill-mode: both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-box:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-box:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover,
.btn-explore:hover,
.btn-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(89, 46, 224, 0.3);
}

.nav-link {
  transition: all 0.3s ease;
}

.nav-link:hover {
  transform: translateY(-2px);
}

.project-badge {
  animation: fadeIn 0.8s ease-out;
  transition: transform 0.3s ease;
}

.project-badge:hover {
  transform: scale(1.05);
}

.results-images img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.results-images img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.drive-point {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.drive-point:nth-child(1) {
  animation-delay: 0.1s;
}

.drive-point:nth-child(2) {
  animation-delay: 0.2s;
}

.drive-point:nth-child(3) {
  animation-delay: 0.3s;
}

.drive-point:nth-child(4) {
  animation-delay: 0.4s;
}

.drive-point:nth-child(5) {
  animation-delay: 0.5s;
}

.process-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.process-card:nth-child(1) {
  animation-delay: 0.1s;
}

.process-card:nth-child(2) {
  animation-delay: 0.2s;
}

.process-card:nth-child(3) {
  animation-delay: 0.3s;
}

.process-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Image hover effects */
.hero-image img,
.founder-image img,
.testimonial-image img,
.trusted-image img {
  transition: transform 0.5s ease;
}

.hero-image:hover img,
.founder-image:hover img,
.testimonial-image:hover img,
.trusted-image:hover img {
  transform: scale(1.05);
}

/* Heading animations */
h2 {
  animation: fadeInUp 0.8s ease-out;
}

/* Button pulse effect */
@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(89, 46, 224, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(89, 46, 224, 0);
  }
}

.btn-primary {
  animation: pulse 2s infinite;
}