@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



body {
  font-family: 'Poppins', sans-serif;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
.flex{
  display: flex;
}
.flex-col{
  flex-direction: column;
}
.text-small{
  font-size: small;
}
.text-3xl{
  font-size: 1.875rem; /* 30px */
line-height: 2.25rem;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.justify-around{
  justify-content: space-around;
}
.items-center{
  align-items: center;
}
.gap-10{
  gap: 2.5rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-5{
  gap: 1.25rem;
}
.px-5rem{
  padding: 0rem 5rem;
}
.mt-10{
  margin-top: 2.5rem;
}
a{
  text-decoration: none;
}

/* top black bar */
.header-links {
  display: flex;
  justify-content: space-between;
  background-color: #111111;
  color: white;
  padding: 1rem 0.7rem;
}
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: white;
}
.headeremail a {
  color: inherit;
  text-decoration: none;
}
.top-social-links {
  display: flex;
  align-items: center;
  margin-right: 1rem;
  gap: 1rem;
}
.gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #3a6ef2 0%, #264aa6 50%, transparent 50%, transparent 100%);
    z-index: -1;
}
/* top black bar end */

/* nav bar */
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.07);
}
.logo{
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-logo{
  width: 50%;
}
.nav-links {
  display: flex;
  gap: 1rem;
}
.nav-links a {
  color: inherit;
  text-decoration: none;
}

.nav-a {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s;
  color: #000; /* Default color */
  text-decoration: none;
}

.dumm {
  width: 40%;
  background-color: transparent;
  height: 5px;
  border-radius: 900pc;
  transition: background-color 0.3s;
}

/* Hover State */
.nav-a:hover {
  color: #3498db;
}

.nav-a:hover .dumm {
  background-color: #3498db;
}

/* Active State */
.nav-a.active {
  color: #3498db;
}

.nav-a.active .dumm {
  background-color: #3498db;
}



/*nav bar ends  */

/* hero section */
.hero-section {
}
.hero-text {
  width: 100%;
  height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-shadow: 0px 0px 1px black;
}
.hero-text h1 {
  font-size: 4rem;
  text-align: center;
}
.hero-text p {
  font-size: 2rem;
  text-align: center;
}

/* hero section ends */

/* service section*/
.services {
  /* height: 100vh; */
  padding: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.service-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.services-h3 {
  font-size: 3rem;
}
.services-h2 {
  font-size: 2rem;
}

.service-card {
    position: relative;
  background-color: white;
  padding: 2rem;
  border-radius: 3px;
  color: black;
  box-shadow: 0px 0px 12.46px 0px #00000026;
  width: 25vw;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s;

  /* transition: background 0.3s ease-in-out; */
}
.service-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3a6ef2, #264aa6);
    transform: translateX(-150%);
    z-index: -1;
    transition: all 0.3s;

}
.service-card:hover::before{
    transform: translateX(0);
}
.service-card-img{
  width: 45px;
  height: 45px;
  background-color: white;

}
.service-card:hover {
  /* background: linear-gradient(135deg, #3a6ef2, #264aa6); */
  color: white;
}

.service-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-top: 0;
}
/* service section ends */

/* about section */
.about {
    height: 100vh;
    padding: 3rem 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f6fa;
}
.about-img-section {
  width: 45%;
  height: 70%;
  display: flex;
  justify-content: center;
  object-fit: cover;
}
.about-img {
  object-fit: cover;
  width: 40%;
}
.about-right-section{
    width: 40%;
}
.top-about{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.about-para{
    font-weight: 600;
}
.about-para2{
    font-size: 1rem;
    font-weight: 300;
}
.about-h2{
    font-size: 2rem;
    font-weight: 800;
}
.mid-text h2{
    font-size: 1rem;
    font-weight: 800;
}
.mid-text p{
    font-weight: 300;
}

.explore-button{
    position: relative;
    padding: 0.5rem 1rem;
    background-color: #3a6ef2;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
}
.explore-button span{
    width: 100%;
    height: 100%;
}
.explore-button span::before, .explore-button span::after{
    position: absolute;
    content: "";
    width: 50% !important;
    height: 100%;
    z-index: -1;
    background-color: black;
    transition: all 0.3s ease;
}
.explore-button span::before{
    top: 0;
    left: 0;
    transform: translateY(-100%);
}

.explore-button span::after{
    bottom: 0;
    right: 0;
    transform: translateY(100%);
}
.explore-button span:hover::before, .explore-button span:hover::after{
    transform: translateY(0);
}
.profile-text h2{
    font-size: 1rem;
    font-weight: 500;
}
.profile-text p{
    font-size: 0.6rem;
    font-weight: 400;
}


/* about section ends */

/* banner 1 */
.banner-container{
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-1, .banner-2{
    position: relative;
    background: linear-gradient(to right,#3a6ef2, #264aa6);
    color: white;
    border-radius: 5px;
    z-index: 1;

}

.banner-text h2 {
  transition: color 0.3s ease, transform 0.3s ease; /* Adjust as necessary */
}

.banner-1{
  background: #1c0c59;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 3rem;
}
.banner-1 h3{
  color: #295bff;
  font-size: 2rem;
}
.banner1-text{
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.banner-card{
    padding: 1rem 3rem;
}
.banner-card-img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    object-fit: cover;
    background-color: white;
}
.banner-text h2{
    font-size: 3rem;
    font-weight: 700;
}
.banner-text p{
    font-size: 1rem;
    font-weight: 500;
}
.bg-shape{
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    opacity: 0.3;
}

/* banner 1 ends */

/* solutions */
.solutions {
  /* margin-top: 5rem; */
  height: 100vh;
}
.solution-container{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.solution-h21 {
  color: #3a6ef2;
}
.carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.carousel-track {
  display: flex;
  width: max-content;
  gap: 3rem;
}
.carousel-slide {
  min-width: 300px;
  flex-shrink: 0;
  position: relative;
}
.slide-img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}
.slide-text {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 10;
  color: #fff;
}
.slide-text p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3460cf;
}
.slide-text h3 {
  font-size: 1rem;
  font-weight: 700;
}

.case-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#0f0d1d), color-stop(125%, rgba(15, 13, 29, 0)));
}

/* solution ends */

/* offering */
.offering{
  width: 100%;
  height: 70vh;
  position: relative;
  padding: 3rem 5rem;
  background: radial-gradient(circle, #283563, #0f0d1c, #0f0d1c);
  margin-bottom: 5rem;
}
.offering-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5rem;
}
.offer-img{
  position: absolute;
  width: 20%;
  opacity: 0.5;
}
.offer-left{
  left: 0;
  bottom: 0;
}
.offer-right{
  right: 0;
  top: 0;
}
.offering-h21 {
  color: #3a6ef2;
}
.offering-h2{
  color: white;
}
.offering-mid-container{
  display: flex;
  justify-content: space-between;
}
.offer-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  position: relative;
  width: fit-content;
  border: 1px solid #c2c2c26b;
  border-radius: 0.5rem;
  width: 150px;
  height: 100px;
  padding: 1.5rem 5rem;
}
.offer-card-text{
  color: white;
}
.offer-card-text h3{
  font-size: 1rem;
}

.img{
  top: -30%;
  position: absolute;
  fill: white !important;
  color: #3d73fc;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  background: linear-gradient(to bottom, #142959, #0f0d1c);
  transition: all 1s ease;
}
.card-img{
  width: 70px;
  height: 70px;
}

.banner-card-img img {
  width: 60px;  /* Adjust the size as needed */
  height: 60px; /* Adjust the size as needed */
}


.offer-card:hover .img {
  transform: rotateY(360deg);
  color: white;
  background: #3a6ef2;
}
.banner-2{
  position: absolute;
  bottom: -2rem;
}

/* offering ends */

/* Work section */
.work-progress{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 5rem;
  gap: 3rem;
  padding: 3rem 5rem;
}
.progress-top p{
  font-size: 1rem;
  font-weight: 600;
  color: #3d73fc;
}
.progress-top h3{
  font-size: 3rem;
  font-weight: 700;
}

.development-card-container{
  display: flex;
  justify-items: center;
  align-items: center;
  gap: 1rem;
}
.development-card{
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;

}
.progress-img-container{
  position: relative;
  width: fit-content;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.progress-img-container::after{
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 1px dashed #3d73fc;
  content: "";
  border-radius: 50%;
  position: absolute;
  -webkit-animation: rotate 20s linear infinite;
  animation: rotate 20s linear infinite;
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
}
.array-img{
  animation: bobble 3s ease-in-out infinite alternate;
}
@keyframes bobble {
  0% {
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
}

100% {
    -webkit-transform: translateY(-20px) scale(1.1);
    transform: translateY(-20px) scale(1.1);
}
}
.progress-text-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  width: 80%;
}
/* Work section ends */


/* contact-client-review */
.contact-client-review{
  height: 100vh;
  width: 100%;
  background-image: url(./assets/testimonial-bg.png);
  object-fit: cover;
  background-repeat: no-repeat;
  object-position: right;
  /* object-fit: scale-down; */
  margin-bottom: 10rem;
}
.contact-review-container{
  padding: 3rem 5rem;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 2rem;
}
.contact-us-container{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  color: white;
  background: linear-gradient(to right,#3b6ff5,#264aa6);
  width: 40%;
}
.input-container{
  display: flex;
  flex-direction: column;
  width: 45%;
}
.form{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.from-label{
  font-size: 1rem;
}
.form-input{
  padding: 1rem;
  border-radius: 3px;
  border: none;
  outline: none;
}
.text-area-container{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.text-area{
  height: 100px;
  resize: none;
  outline: none;
  padding: 1rem 1rem;
}
.form-btn{
  width: 100%;
  padding: 1rem 2rem;
  border: none;
  background-color: #0f0d1c;
  color: white;
}
.review-carousel{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}
.review-card{
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  background-color: white;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0px 2.08px 5.19px 0px #0000000D;

}
.review-container{
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.review-top{
  width: 80%;
}
.clients-para{
  color: #3a6ef2;
  font-size: 1rem;
  font-weight: 600;
}
.review-top h3{
  font-size: 3rem;
  font-weight: 700;
}
.review-img img{
  width: 60px;
  height: auto;
}
.profile-role i{
  color: #3460cf;
}
.testimonial{
  font-style: italic;
  font-size: 1rem;
  color: #8a8a8a;
}


/* Contact-client-review ends */


/* Footer */

.footer{
  width: 100%;
  height: fit-content;
  position: relative;
  padding: 3rem 5rem;
  background: radial-gradient(circle, #283563, #1f1b39, #0f0d1c);
  color: white;
}
.footer-logo{
  width: 50%;
}
.footer-logo img{
  width: 100%;
}
.footer-container{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.footer-links{
  display: flex;
  gap: 0.5rem;
}
.footer-icon-container{
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #c2c2c254;
}
.logo-para{
  width: 90%;
  text-align: left;
  color: #c2c2c2 !important;
  font-weight: 300;
  line-height: 2rem;
}
.logo-container,.footer-list-container{
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-list{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-list1{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-list1 a{
  text-decoration: none;
  color: white;
}
.footer-list a , .footer-list p{
  text-decoration: none;
  font-size: 1rem;
  color: #e8e8e8;
  font-weight: 300;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-list a:hover{
  color: #3d73fc;
  margin-left: 0.3rem;
}





.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  background-color: white;
  padding: 0.5rem 0;
  min-width: max-content;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  display: block;
  padding: 0.5rem 1rem;
  color: black;
  transition: all 0.5s;
}

.dropdown-content a:hover {
  background-color: #3b6ff5;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}
