@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
* {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

/* --slider styles  */
.swiper {
  width: 75%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper{
  width:80%;
  height: auto; /* Set to auto for responsive height */
}

.swiper-slide {
  width: 100%; /* Ensure slides take full width */
}

.swiper-slide video {
  width: 100%; /* Ensure videos take full width of the slide */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Ensure videos don't overflow */
}
.swiper-slide img {
  width: 100%; /* Ensure videos take full width of the slide */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Ensure videos don't overflow */
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

span.swiper-pagination-bullet.swiper-pagination-bullet {
  background-color: #d9d9d9;
  opacity: 1;
  height: 30px;
  width: 30px;
  margin-top: 2rem;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #2789f9;
  opacity: 1;
  height: 30px;
  width: 30px;
}

/* --slider styles  */

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: #fff;
}

html::-webkit-scrollbar-thumb {
  background: #1B1D59;
}

section {
  padding: 5rem 9%;
}

.heading {
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: 5.5rem;
  font-weight: 600;
  padding-top: .5rem;
  font-family: "Plus Jakarta Sans", serif;

  color: #241c50;
}

.heading2 {
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: 5rem;
  font-weight: 500;
  padding-top: .5rem;
  font-family: "Plus Jakarta Sans", serif;

  color: #ffffff;
}


.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1.2rem 3.2rem;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background: #1B1D59;
  cursor: pointer;
  font-weight: bolder;
  border: 1px solid #1b1d59;
  border-radius: .5rem;
  font-weight: 400;
  margin-right: 2rem;
}
.btn-inv{
  display: inline-block;
  margin-top: 1rem;
  padding: 1.2rem 3.2rem;
  font-size: 16px;
  color: #1B1D59;
  text-align: center;
  background: #fff;
  border: 1px solid;
  cursor: pointer;
  font-weight: bolder;
  border-radius: .5rem;
  font-weight: 500;
  margin-right: 2rem;
}

.btn:hover,.btn-inv:hover {
  background: none;
  color: #000;
  border: 1px solid;
}

.line-down {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.service-box {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
}

.service-box h3 {
  font-size: 2rem;
  color: #1B1D59;
  margin-bottom: 1.5rem;
  font-family: "Plus Jakarta Sans", serif;
}

.service-box p {
  font-size: 1.5rem;
  color: #666;
  line-height: 1.6;
}






@media (max-width: 768px) {
  .services-grid {
      grid-template-columns: 1fr;
  }}
.line-down::before {
  content: '';
  position: absolute;
  bottom: -.5rem;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #12095b;
  z-index: -1;
  -webkit-clip-path: polygon(0 85%, 100% 75%, 100% 100%, 0% 100%);
  clip-path: polygon(0 85%, 100% 75%, 100% 100%, 0% 100%);
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(4rem);
    transform: translateY(4rem);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(4rem);
    transform: translateY(4rem);
  }
}

.contactfoot{
  width: 60px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #e1e1e1;
  border: 1px solid;
}
.contactfoot:hover{
  cursor: pointer;
  
}

.top{
  width: 40px;
  height: 40px;
  position: fixed;
  right: 30px;
  top: 12rem;
  transition: 0.3s;
  z-index: 10000;

}

.top:hover{
  cursor: pointer;
}


.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  padding: 1.5rem 9%;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.header .logo {
  font-size: 34px;
  color: #000;
  font-weight: 500;
}

.header .navbar a,select {
  margin: 0 1rem;
  font-size: 18px;
  color: #000;
  width: 75px;
}

.header .navbar .active {
  color: #2D3092;
}

.header .navbar a:hover {
  text-decoration: underline;
}

.header .btn {
  margin-top: 0;
}


#menu-btn {
  cursor: pointer;
  font-size: 3rem;
  display: none;
}







/* -----home starts------ */

.home {
    height: 105vh;
    width: 100vw;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #1B1D59 ;
  }
  
  .home .content {
    display: flex;
    justify-content: space-evenly;
    align-items: baseline;
    /* flex-direction: column; */
    padding-top: 12vh;
    flex-wrap: wrap;
}
  
  
  .home .content .mainhed {
    font-size: 60px;
    color: #ffffff;
    font-weight: 600;
    max-width: 750px;
  }
  
  .home .content .mainhed span {
    color: #715DE3;
    background-color: #efecff;
    border-radius: 10px;
    padding: 0 4px;
  }
  
  .home .content .sub {
    color: #cccccc;
    font-size: 17px;
    max-width: 700px;
    line-height: 34px;
    padding: 20px 0;
  
  }

  .home .content .right {
    display: flex;
    flex-direction: column;
  }
  .home .content .right .circles{
    display: flex;
  }

  .circlecontainer{
    display: flex;

  }

  .home .content .right .txt{
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
  }

  .home .content .right .circles *{
    background-color: #fff;
    display: flex;
    border-radius: 50%;
    height: 70px;
    width: 70px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(158, 158, 158);
  }
  .circle2,.circle3{
    margin-left: -20px;
  }


  .home .content .right .reviews .stars{
    font-size: 4.5rem;
    color: #FED762;
    display: flex;
    align-items: center;
    margin-left: 1.5rem;

  }
  
  .startbtn {
  
    display: inline-block;
    padding: 1.8rem 2rem;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    border-radius: 12px;
    font-weight: 500;
    border-radius: .5rem;
    background: #282b84;
    background: linear-gradient(90deg, rgb(96, 119, 250) 0%, rgb(64, 43, 182) 100%);
  
  }
  .startbtn:hover{
  
    background: linear-gradient(180deg, rgb(96, 119, 250) 0%, rgb(64, 43, 182) 100%);
  
  }
  
  .btns {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .video {
    display: flex;
    margin: 0 2rem;
    align-items: center;
    justify-content: center;
    padding: 1.3rem 2rem;
    border-radius: 12px;
    font-size: 16px;
    color: #FFC700;
    border: 2px solid #FFC700;
  }
  
  .video * {
    padding: 0 8px;
  }
  
  .home .cc {
    color: #49484e;
    font-size: 13px;
    margin: 10px;
  }

  
  .home .imageslider .homeimages{
    display: flex;
    justify-content: space-evenly;
    margin-top: 5rem ;
    padding: 1px 10%;
  }
  .home .imageslider .homeimages *{
    width: 300px;
    height: 400px;
    border-radius:  10px 0 10px 0;

  }

  .home .imageslider .homeimages .image2,.image4{
    margin-top: 8rem;
    
  }
  
  @media screen and (max-width: 1600px) {
    .home .imageslider .homeimages .image4{
      display: none;
    }
}
@media screen and (max-width: 1200px) {
  .home .imageslider .homeimages .image3{
    display: none;
  }

  .works{
    padding: 19rem 5rem !important;
  }
  .home .content{
    gap: 3rem;
  }
}


@media screen and (max-width: 800px) {
  .home .imageslider .homeimages .image2{
    display: none;
  }

  .home .content .sub {
    text-align: center;
  
  }

  .home .content .mainhed{
    margin-left: 2rem;
    font-size: 50px;
  }


  .works{
    padding-top: 27rem !important;
  }
}

@media screen and (max-width: 400px) {
  
  .home .content .mainhed{
    font-size: 45px;
  }


}

  /* work experience start */

  .works{
    padding: 8rem 1px;
    background-color: #f5f5f5;
  }
.works .buttons{
  margin-top: 2rem;
}
  .works .workcontainer{
    display: flex;
    justify-content: center;
    gap: 10rem;
    margin-top: 8rem;
  }


  
  .works .workcontainer {
   padding: 1px 10%;
  }
.works .workcontainer .main{
  font-size: 4rem;
  font-family: "Plus Jakarta Sans", serif;
font-weight: 600;
}
.works .workcontainer .sub{
  margin-top: 2rem;
  font-size: 1.8rem;
  color: #565656;
  font-family: "Plus Jakarta Sans", serif;
}
.centercontainer{
  display: flex;
  justify-content: center;
  align-items: center;
}
.works .imagecontainer{
  margin-top: 3rem;
  background-image: url("./assets/Home.png");
  background-repeat: no-repeat;
  background-position: center;
  width: 70vw;
  height: 60vh;
}
.works .imagecontainer{
  display: flex;
  justify-content: space-around;
}




  
  

.customers .lane{
  display: flex;
  justify-content: space-around;

}
.center{
  text-align: center;
}
 .subheading{
  font-size: 2rem;
  color: #000;
  margin-top: -1rem;
  margin-bottom: 2rem;
  font-weight: 500;
  text-align: center;

}




.specialisation{
  background-color: #1B1D59;
}




.contact .row {
  display: flex;
  flex-wrap: wrap-reverse;
  gap: 1.5rem;
  align-items: center;
}

.contact .flex {
  display: flex;
  gap: 1rem;
}

.choices__inner {
  padding: 0.5em;
}

.choices__list--multiple .choices__item {
  padding: 0.25em 0.5em;
  border-radius: 4px;
  margin: 0.25em;
}

.choices {
  margin-bottom: 2px;
}


.contact .icons-container{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap:1.5rem;
  background-color: #fff;
}

.contact .icons-container .icons{
  padding: 2.5rem;
  text-align: center;
  border: var(--border);
  border-radius: .5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
  margin-bottom: 2rem;
  align-items: center;
}

.contact .icons-container .icons i{
  height: 6rem;
  width: 6rem;
  line-height: 6rem;
  font-size: 3.5rem;
  color:#1b1d59;
  border-radius: 50%;
}

.contact .icons-container .icons h3{
  color:#000;
  padding: 1rem 0;
  font-size: 2.5rem;
}

.contact .icons-container .icons p{
  color:#999;
  line-height: 1.8;
  font-size: 1.5rem;
}


.contact .row form {
  flex: 1 1 40rem;
  padding: 2rem 2.5rem;
  border: .1rem solid rgba(0, 0, 0, .1);
  background: #fff;
  border-radius: .5rem;
}

.contact .row .image {
  flex: 1 1 40rem;

}

.contact .row .image iframe {
  width: 100%;
}

.contact .row form .box {
  padding: 1rem;
  font-size: 1.7rem;
  color: #333;
  text-transform: none;
  border: .1rem solid rgba(0, 0, 0, .1);
  border-radius: .5rem;
  margin: .7rem 0;
  width: 100%;
}

.contact .row form .box:focus {
  border-color: #1B1D59;
}

.contact .row form textarea {
  height: 15rem;
  resize: none;
}






.portfolio .box-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio .box-container .box{
  height: 30rem;
  border-radius: .5rem;
  overflow:hidden;
  position: relative;
 box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  
}

.portfolio .box-container .box img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.portfolio .box-container .box span{
  position: absolute;
  top:1rem; right: 2rem;
  font-weight: bolder;
  font-size: 5rem;
  color:var(--black);
}

.portfolio .box-container .box .content{
  height: 100%;
  width: 100%;
  position: absolute;
  top:6rem; left: 0;
  transition-delay: .3s;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
}




.portfolio .box-container .box:hover .content{
  top:0; 
  opacity: 1;
}

.portfolio .box-container .box .content h3{
  font-size: 2.5rem;
  padding-bottom: .5rem;
  color:var(--black);
}

.portfolio .box-container .box .content p{
  font-size: 1.5rem;
  color:var(--light-color);
}

.portfolio .box-container .box::before{
  height: 100%;
  width: 100%;
  content: '';
  position: absolute;
  top:0; left: 0;
  background: #fff;
  clip-path: circle(30% at 93% 0);
  transition: .3s linear;
}

.portfolio .box-container .box:hover::before{
  clip-path: circle(100%);
}



.portfolio .content h3 {
  font-size: 6rem;
  text-align: center;
  padding-bottom: 2rem;
}

.contact .subhead{
  font-size: 2rem;
  color: #000;
  margin-top: -1rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 500;

}






.footer{
  padding: 5rem 9% 2rem 9%;
  border-top: .5px solid #949494;
  background-color: #1B1D59;
}
.footer .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer .box-container .box {
  flex: 1 1 25rem;
}
.media{
  background-color: #1B1D59;
}
.footer .box-container .box h3 {
  color: #ffffff;
  font-size: 2.5rem;
  padding: 1rem 0;
}

.footer .box-container .box a {
  display: block;
  color: #d8d8d8;
  font-size: 1.5rem;
  padding: 1rem 0;
}

.footer .box-container .box a:hover {
  color: #c2ee32;
  text-decoration: underline;
}

.footer .box-container .box img {
  margin-top: 1rem;
}

.footer .credit {
  text-align: center;
  padding: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 2.5rem;
  font-size: 2rem;
  color: #ffffff;
  border-top: .1rem solid rgba(255, 255, 255, 0.1);
}

.footer .credit span {
  color: #ffffff;
}
/* media queries  */
@media only screen and (max-width: 1000px) {
  
  
    #menu-btn {
      display: inline-block;
      -webkit-transition: .2s linear;
      transition: .2s linear;
    }
    #menu-btn.fa-times {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg);
    }
  
    .header .btn {
      display: none;
    }
    .header .navbar {
      position: absolute;
      top: 99%;
      left: 0;
      right: 0;
      border-top: 0.2rem solid #000;
      background: #fff;
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
              clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
      -webkit-transition: .2s linear;
      transition: .2s linear;
    }
    .header .navbar.active {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
              clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .header .navbar a {
      display: block;
      margin: 0;
      padding: 1.5rem 2rem;
    }
    .btncontainer{
      display: none;
    }
  
  
  }
  
@media (max-width: 768px) {
  .portfolio .box-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .portfolio .box-container {
    grid-template-columns: 1fr;
  }
}
  
/* Logo Slider */
.logo-slider-container {
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
    position: relative;
}

.logo-slider {
    display: flex;
    animation: slide 20s linear infinite;
    width: calc(150px * 14); /* Width of each logo * number of logos */
}

.logo-slider .logo {
    min-width: 150px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slider .logo img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

/* Pause animation on hover */
.logo-slider-container:hover .logo-slider {
    animation-play-state: paused;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 7)); /* Half the width (first 7 logos) */
    }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .logo-slider .logo {
        min-width: 120px;
        padding: 0 15px;
    }
    
    .logo-slider {
        width: calc(120px * 14);
    }
    
    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-120px * 7));
        }
    }
}
  








.workcontainer {
    display: flex;
    align-items: center;
    padding: 4rem 5%;
}

.workcontainer .image,
.workcontainer .text {
    flex: 1;  /* This creates the 50-50 split */
    width: 50%;
}

.workcontainer .image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.workcontainer .text {
    padding: 2rem;
}


.workcontainer .text .sub {
    line-height: 1.6;
    margin-bottom: 2rem;
}

.workcontainer .buttons {
    display: flex;
    gap: 1rem;
}

/* Responsive layout */
@media screen and (max-width: 1298px) {
    .workcontainer {
        flex-direction: column;
        padding: 2rem 5%;
        gap: 7rem !important;
    }

    .workcontainer .image,
    .workcontainer .text {
        width: 100%;
    }

    .workcontainer .text {
        padding: 1rem 0;
    }

    .workcontainer .text .main {
        font-size: 3rem;
    }
    
    .workcontainer .buttons {
        justify-content: center;
    }
}


@media screen and (max-width: 600px) {
  .workcontainer .image,
  .workcontainer .text {
      width: 140%;
  }

  .workcontainer{
    gap: 3rem !important;
  }
}





.discover .discovercontainer{
  display: flex;
  border-bottom: 1px solid #fff;
}

.discovercontainer *{
  border-right: 1px solid #fff;
  flex: 1;
}

.discover .discovercontainer .discovertext{
  background-color: #12095b;
  display: flex;
  flex-direction: column;
}
.discover .discovercontainer .discovertext h3{
  color: #fff;
  font-size: 4rem;

  padding-top: 4rem;
  margin-left: 1rem;
}
.discover .discovercontainer .discovertext p{
  font-size: 18px;
  color: #bbbbbb;
  padding: 11px;
  margin-top: -20rem;
}






.tagcontainer{
  display: flex;
  justify-content: center;
  align-items:center;
  gap: 20px;
  flex-wrap: wrap;
}
.tagcontainer .tag{
    padding: 5px;
    background-color: #e2e2e2;
    border-radius: 2px;
    font-size: 15px;
}



.contact .icons-container .icons a{
  color: #645E80;
}

.contact .icons-container .icons a:hover{
  color: #1B1D59;
}






@media (max-width: 1600px) {
  .discover .discovercontainer .discovertext p{
  
    margin-top: -10rem !important;
  }
}

@media (max-width: 1200px) {
  .discover .discovercontainer .discovertext h3 {
  font-size: 3rem !important;
    padding-top: 2rem !important;
  }

  .discover .discovercontainer .discovertext p{
  
    font-size: 15px !important;
  }
}


@media (max-width: 950px) {
  .discover{
    display: none;
  }
}

@media (max-height: 850px) {
  
.home {
  height: 120vh !important;
}
}

@media (max-height: 6000px) {
  
  .home {
    height: 130vh !important;
  }
  }
  