* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
        
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #000000;
  color: white;
  overflow-x: hidden;
}
       
/* Navigation */
.navbar {
  position: fixed; /* Make it fixed so it stays on top */
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: rgba(128, 0, 128, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 95px;
  z-index: 1000;
}
        
.logo img {
  width: 180px;
  height: 60px;
}
        
.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}
        
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: white;
  font-size: 20px;
  text-decoration: none;
  white-space: nowrap;
}
        
.nav-link:hover,
.nav-link.active {
  color: #d800d8;
}
        
.search-icon {
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.search-icon:hover{
  color: #d800d8;
}
        
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1; /* Behind navbar */
  overflow: hidden;
  box-shadow: 0px 60px 250px #800080;
}
        
.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Behind hero content */
  box-shadow: 0px 60px 250px #800080;
  opacity: 0.8;
}
        
.hero-background::before {
  content: '';
  position: absolute;
  inset: 0;
}
        
.hero-background::after {
  content: '';
  position: absolute;
  inset: 0;
}
 
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fade 9s ease-in-out infinite;
}

.slide1 {
  animation-delay: 0s;
}

.slide2 {
  animation-delay: 3s;
}

.slide3 {
  animation-delay: 6s;
}

@keyframes fade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  30%  { opacity: 1; }
  35%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero-content {
  position: absolute;
  z-index: 2; /* In front of background */
  max-width: 1159px;
  top: 200px;
  left: 120px;
}
        
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 120px;
  line-height: 1.1;
  stroke: 1px #000000;
    
}
        
.hero-title-white {
  color: white;
  display: block;
  white-space: nowrap;
  stroke: 3px #d800d8;
}
        
.hero-title-purple {
  color: #d800d8;
  display: block;
  white-space: nowrap;
}

/* Main Content */
.main-content {
  padding-bottom: 60px;
}
        
/* Services Section */
.services {
  position: relative;
  width: 100%;
}
        
.services-container {
  max-width: 1700px;
  margin: 0 auto;
}

.section-title{
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #ffffff;
  font-size: 60px;
  text-align: center;
  padding: 10px;
}

 
.subsection-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: white;
  font-size: 30px;
  padding-bottom: 20px;
  text-align: center;
}
        
.services-scroll {
  overflow-x: auto;
  padding-bottom: 20px;
  padding-top: 30px;
  margin-bottom: 80px;
  padding-left: 95px;
  padding-right: 95px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.services-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.services-row {
  display: flex;
  gap: 50px;
  min-width: fit-content;
}
        
.service-card {
  position: relative;
  width: 400px;
  height: 600px;
  background-size: cover;
  background-position: center;
  border-radius: 50px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-20px) scale(1.03);
  background-color: #d800d8;
  z-index: 2;
}


.service-content {
  position: absolute;
  left: 15px;
  bottom: 90px;
  width: 350px;
}
        
.service-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: white;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 5px;
}
        
.service-discover {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: white;
  font-size: 24px;
  text-decoration: underline;
  cursor: pointer;
}  


 /* Process Section */
.process {
  width: 100%;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

        
.process-steps {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 0 96px;
}
        
.process-step {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 135px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.process-step:hover {
  transform: translateY(-10px);
}
   
.process-icon {
  width: 100px;
  height: 50px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}  

.fa-user{
  font-size: 40px;
  color: #ffffff;
}

.process-step:hover .process-icon {
  transform: scale(1.1);
}

.process-step:hover .fa-user {
  color: #d800d8;
}

.process-step:hover .process-title {
  color: #d800d8;
}

.fa-comment{
  font-size: 40px;
  color: #ffffff;
}

.process-step:hover .fa-comment {
  color: #d800d8;
}

.fa-pencil-ruler{
  font-size: 40px;
  color: #fff;
}

.process-step:hover .fa-pencil-ruler {
  color: #d800d8;
}

.fa-code{
  font-size: 40px;
  color: #fff;
}

.process-step:hover .fa-code {
  color: #d800d8;
}

.fa-vial{
  font-size: 40px;
  color: #fff;
}

.process-step:hover .fa-vial {
  color: #d800d8;
}

.fa-rocket{
  font-size: 40px;
  color: #fff;
}

.process-step:hover .fa-rocket{
  color: #d800d8;
}

.fa-handshake{
  font-size: 40px;
  color: #fff;
}

.process-step:hover .fa-handshake{
  color: #d800d8;
}


.process-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: white;
  font-size: 24px;
  text-align: center;
  white-space: nowrap;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(128, 0, 128, 0.3), rgba(216, 0, 216, 0.3));
}
        
.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: white;
  margin-bottom: 20px;
}
        
.cta-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
        
.cta-btn {
  background: linear-gradient(135deg, #800080, #d800d8);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
        
.cta-btn:hover {
  transform: scale(1.05);
}
        
/* Footer */
.footer {
  background: rgb(128, 0, 128, 0.2);
  padding: 40px 0;
  text-align: center;
}
        
.footer-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #cccccc;
}


@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-line {
  opacity: 0;
  animation: fadeSlideUp 1s ease-out forwards;
}

/* Staggered delays for each line */
.delay-0 {
  animation-delay: 0.2s;
}
.delay-1 {
  animation-delay: 0.5s;
}
.delay-2 {
  animation-delay: 0.8s;
}

/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 0 20px;
    height: auto;
  }

  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: rgba(128, 0, 128, 0.9);
    border-radius: 20px;
    padding: 20px 0;
    margin-top: 10px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    font-size: 18px;
    padding: 10px 20px;
  }

  .search-icon {
    padding: 10px 20px;
  }

  
  /* Hero Section */
  .hero-background {
    box-shadow: none;
    opacity: 1;
  }

  .slide {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  
  .hero-title {
    font-size: 60px;
    line-height: 1.2;
  }

  .hero-content {
    top: 250px;
    left: 30px;
    max-width: 90%;
  }

  /* Services Section */
  .services-scroll {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-row {
    gap: 20px;
  }

  .service-card {
    width: 280px;
    height: 400px;
    border-radius: 30px;
  }

  .service-title {
    font-size: 24px;
  }

  .service-discover {
    font-size: 16px;
  }

  /* Process Section */
  .section-title{
    font-size: 40px;

  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    padding: 0 0;
    gap: 0;
  }

  .process-step {
    width: 100%;
  }

  .process-icon {
    width: 80px;
    height: 80px;
  }

  .process-title {
    font-size: 20px;
  }

  /* CTA Section */
  .cta-title {
    font-size: 28px;
  }

  .cta-description {
    font-size: 16px;
    padding: 0 10px;
  }

  .cta-btn {
    padding: 15px 30px;
    font-size: 16px;
  }

  /* Footer */
  .footer-text {
    font-size: 14px;
    padding: 0 10px;
  }
}


