*{
    margin: 0;
    padding: 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
header{
  align-items: center;
     position: sticky;
  top: 0;
  overflow: hidden;
box-shadow: 0px 7px 14px -2px rgba(0,0,0,0.37);

    /* position: sticky; 
    top: 0;
    left: 0;
    right: 0;
    z-index: 20; */
}
.main-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);

}

.logo {
  font-size: 44px;
  font-weight: 700;
  color: #0d0d2b;
}

nav{
  display: flex;
  gap: 30px;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  
}
nav ul li {
  align-items: center;
}
nav a {
  text-decoration: none;
  font-size: 16px;
  color: #0d0d2b;
  transition: color 0.3s;
  align-items: center;
}

nav a:hover,
nav a.active {
  color: #aa00ff; /* Bright purple */
}

/* Call Now Button */
.call-btn {
  background: linear-gradient(135deg, #a259ff, #c058f3);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.call-btn:hover {
  opacity: 0.85;
}


/* section hero */
.hero {

  background: url(assets/background.png) no-repeat center center/cover;
  height: 100vh;
  color: white;
    animation: slideDown 1.2s ease-in-out; 
}

.hero-content {
    padding-top: 100px;
    color: black;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 25px;
    margin-bottom: 30px;
}


/* services section */
.services-section{
  animation: slideDown 1.2s ease-in-out; /* Apply the animation */

}

.services{
  padding-top: 160px;
  text-align: center;
}
.services h3 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 400;
  color: rgba(158, 63, 253);
}
.services h1 {
      line-height: 1.3em;
    text-align: center;
    font-size: 36px;
}


.service {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service svg{
  height: 150px;
}
.service-text {
  text-align: center;
  margin-top: 60px;
}
.main-services {

  padding-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@keyframes slideDown {
    0% {
      top: -100%;
    }
    100% {
      top: 0;
    }
  }

  /* numbers section */


#numbers{
  margin-top: 100px;
  padding: 50px 20px;
  background-color: rgb(22, 22, 63);
  color: white;
}

.main-numbers{
  padding-top: 50px;
  text-align: center
  ;
}

.numbers{
  padding-top: 50px;
  display: flex;
  justify-content: center;
  gap: 50px;
}
.numbers h1{
  text-align: center;
    font-size: 80px;
}

#about{
  margin-top: 100px;
}


/* about */
#about{
  animation: slideDown 1.2s ease-in-out; 
}
.about{
  display: grid;
  grid-template-columns: 1fr 1fr;
    
  
}

.main-about{
  padding-top: 100px;
  padding-left: 50px;
  padding-right: 50px;
}
.about .main-about h4{
  margin-top: 30px;
  font-size: 20px;
  color: #a259ff;
}
.about .main-about p{
  margin-top: 30px;
  font-size: 20px;
    width: 433px;
    height: auto;
  /* font-size: 36px; */
}
.about .img{
  margin-top: 300px;
}


/* testimonials */


.testimonials{
  margin-top: 100px;
  width: 100%;
  padding: 10% 0;
  background-color: #a259ff;
}

.testimonial{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}
.testimonial h4{
  margin-bottom: 50px;
}
.testimonial h2{
  margin-bottom: 30px;
}
.testimonial .coompany{
  margin-top: 50px;
  align-items: center;
}

/* client section */


.clients-section {
  
  margin-bottom: 50px;
  background-color: #76757681;
  width: 100%;
  height: 150px;
}
.client1 h4{
  padding-top: 50px;
  text-align: center;
}
.clients-section1 {
  
  margin-top: 74px;
  background-color: #76757681;
  width: 100%;
  height: 150px;
  padding-top: 50px;
  padding-right: 80px;
  padding-left: 80px;
  display: flex;
  gap: 50px;
}
.client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;}
/* contact  */

.contact{
  padding-top: 150px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  
}
.contact .contact-info h3{
  color: #c058f3;
  margin-bottom: 20px
}
.contact .contact-info h1{
  margin-bottom: 50px;
  font-size: 35px;
}

.contact-info h4,h5,h6{
   font-size: 20px;
   color: gray;
}

.contact-info .socials{
  display: flex;
  gap: 20px;
  margin-top: 20px;
  list-style: none;
}
.contact .socials .location{
  margin-top: 50px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;  
  border: 1px solid #131111;
  border-radius: 8px;
}

.footer-content {
  margin-top: 50px;
  text-align: center;
  padding: 20px;
  background-color: #f8f9fa;
  color: #6c757d;
}















@media only screen and (max-width: 480px) {
  
}


@media only screen and (max-width: 768px) {
  .hero{
    display: grid;
    grid-template-columns: 1fr;
  }
  .main-numbers{
    display: grid;
    grid-template-columns: 1fr;
  }
  .numbers{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .service .service-text{
    gap: 20px;
  }
  .services{
    display: grid;
    grid-template-columns: 1fr;
  }
  .main-services{
    display: grid;
    grid-template-columns: 1fr;
  }
  .about{
    display: grid;
    grid-template-columns: 1fr;
  }
  .about .main-about img{
    display: none;
  }
  .testimonial{
    display: grid;
    grid-template-columns: 1fr;
   text-align: center;

  }
  /* .clients-section {
  
  
  background-color: #76757681;
  width: 100%;
  height: 800px;
}
  .client{
    margin-top: 160px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  } */
   .contact{
    display: grid;
    grid-template-columns: 1fr;
  }
  .contact .contact-info{
    padding-left: 20px;
    padding-right: 20px;
  }
  .contact .contact-info .location{
    width: 50%;
    height: 400px;
    margin-top: 20px;
    margin-right: 20px;
  }
}


@media only screen and (max-width: 480px) {

}

