/* Hero Section */
.hero-slider {
  position: relative;
  width: 100%;
  height: 610px;
  overflow: hidden;
  background: #000;
}
.hero-gradient-design {
  width: 313px;
  height: 390px;
  position: absolute;
  top: -90px;
  left: -190px;
  object-fit: cover;
  z-index: 2;
  opacity: 0.4;
  transform: rotate(14deg);
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-content{
    position: relative;
    z-index: 3;
    width: 60%;
    padding: 150px 0 120px 60px;
}
.hero-content h2 {
  font-size: 82px;
  line-height: 72px;
  letter-spacing: 5px;
  background: -webkit-linear-gradient(120deg, #1dd604, #5ba2f3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content .hero-description{
    color: #fff;
    font-size: 32px;
    line-height: 40px;
    margin: 4px 0 32px;
}
.hero-insights{
  padding: 24px 40px;
  background: #01022865;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  width: 600px;
}
.hero-insights p{
  color: #c4c4c4;
  text-align: center;
}
.hero-insights p span{
  display: block;
  font-size: 32px;
  color: #4977d8;
  text-shadow:2px 2px 3px #1440bb;
  font-weight: bold;
}
.hero-img{
  position: absolute;
  width: 60%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
  object-fit: cover;
  object-position: center bottom;
}
.hero-img-overlay{
  position: absolute;
  width: 80%;
  height: 100%;
  top: 0;
  left: 0;
  background:linear-gradient(to right, #0E1C2C, #043874, transparent);
  z-index: 2;
}
.hero-social{
  position: absolute;
  right: 16px;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
.hero-social a{
  display: block;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background: rgba(226, 226, 226, 0.26);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
.hero-social a img{
  height: 16px;
  opacity: 0.5;
  transition: 0.3s ease-in-out;
}
.hero-social a:hover img{
  opacity: 1;
}
.arrow{
  position: absolute;
  bottom: 60px;
  right: 80px;
  z-index: 2;
}
.arrow-wrapper{
  position: relative;
  display: flex;
  gap: 16px;
}
.arrow-wrapper::after, .arrow-wrapper::before{
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  top: 50%;
  transform: translateY(-50%);
}
.arrow-wrapper::after{
  background: linear-gradient(to left,#0077ff,  transparent);
  right: 110%;
}
.arrow-wrapper::before{
  background: linear-gradient(to right, #0077ff, transparent);
  left: 110%;
}
.left-arrow, .right-arrow{
  height: 36px;
  width: 36px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.left-arrow img, .right-arrow img{
  opacity: 0.5;
  height: 12px;
  transition: 0.2s ease-in-out;

}
.left-arrow:hover img, .right-arrow:hover img{
  opacity: 1;
}


/* Our Service Section */
.services{
  padding: 150px 0;
}
.services .services-title{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services .services-title .section-title-wrapper{
  width: 50%;
}
.service-wrapper{
  display: flex;
  justify-content: center;
  gap: 32px;
}
.service{
  height: 380px;
  width: 300px;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  overflow: hidden;
  transition: 0.2s ease;
}
.service1{
  background-image: url('/images/service1.jpg');
}
.service2{
  background-image: url('/images/service2.jpg');
}
.service3{
  background-image: url('/images/service5.jpg');
}
.service::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #010349, transparent);
  z-index: 1;
  border-radius: 10px;
}
.service .service-name{
  position: relative;
  z-index: 1;
  font-size: 28px;
  color: #ffffff;
  margin: 0 30px 32px;
  text-align: center;
  transition: 0.2s ease;
}
.service .service-name::before, .service .service-name::after{
  content: "";
  width: 20px;
  height: 20px;
  border: solid var(--primary-color);
  position: absolute;
}
.service .service-name::before{
  top: -3px;
  left: -16px;
  border-width: 2px 0 0 2px;
}
.service .service-name::after{
  bottom: -5px;
  right: -16px;
  border-width: 0 2px 2px 0;
}
.service-overlaytext{
  position: absolute;
  bottom: -20%;
  transition: 0.2s ease-in;
  width: 100%;
  padding: 16px 16px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
}
.service:hover .service-overlaytext{
  bottom: 0;
  z-index: 2;
  opacity: 1;
}
.service:hover::before{
  background: linear-gradient(to top, #010349ad, #010349ad);
}
.service:hover .service-name{
  opacity: 0;
}
.service-overlaytext p{
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 22px;
}
.service-link{
  display: block;
  background: var(--primary-color);
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  transition: 0.2s ease;
}
.service-link:hover{
  background: #4848e7;
}




/* Aboutus Section */
.aboutus{
  padding: 70px 0 170px;
}
.aboutus .container{
  margin: 0 0 0 auto !important;
  width: 100%;
  max-width: 100%;
}
.aboutus-wrapper{
  display: flex;
  align-items: start;
  justify-content: end;
}
.aboutus-content-wrapper{
  width: 48%;
  padding: 80px 40px 120px 100px;
  overflow: hidden;
  position: relative;
  background: var(--secondary-color);
}
.aboutus-content{
  position: relative;
  z-index: 2;
}
.aboutus-img{
  position: relative;
}
.about-img1{
  position: relative;
  right: -50px;
  z-index: 4;
  top: -50px;
  width: 450px;
  height: 570px;
  object-fit: cover;
}
.about-img2{
  position: absolute;
  left: -100px;
  bottom: 150px;
  width: 290px;
  height: 330px;
  z-index: 5;
  object-fit: cover;
  border: 10px solid #fff;
}
.aboutus-content-wrapper::after, .aboutus-content-wrapper::before{
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}
.aboutus-content-wrapper::after {
  background-image: url(/images/blue-circle-gradient-design.png);
  height: 320px;
  width: 320px;
  z-index: 1;
  bottom: -120px;
  right: -120px;
  opacity: 0.4;
  transform: scaleX(-1);
}
.aboutus-content-wrapper::before {
  background-image: url(/images/blue-gradient-design3.png);
  height: 430px;
  width: 310px;
  z-index: 1;
  top: -80px;
  left: -120px;
  opacity: 0.3;
}
.aboutus-content .section-subtitle{
  color: #ffffff;
}
.aboutus-description, .aboutus-description2{
  color: #dddddd;
  line-height: 24px;
}
.aboutus-description2{
  margin: 16px 0 32px;
}



/* Why Choose Us Section */
.whychooseus{
  padding: 0 0 150px;
}
.whychooseus .section-title-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.whychooseus .section-subtitle{
  text-align: center;
}
.whychooseus-wrapper{
  display: flex;
  justify-content: space-between;
}
.whychooseus-box {
  border-radius: 0 40px 0 0;
  width: 23.5%;
  padding: 50px 20px 20px;
  border-right: 2px solid var(--primary-color);
}
.whychooseus img{
  height: 40px;
}
.whychooseus h3 {
  font-size: 20px;
  margin:12px 0 16px;
  line-height: 25px;
  letter-spacing: 2px;
}
.whychooseus-box p {
  text-align: left;
  line-height: 20px;
  color: #181818;
  font-size: 15px;
}



/* Instagram Section */
body.modal-open {
    overflow: hidden;
}
.main-content.blurred {
    transition: filter 0.3s ease-in-out;
}
.instagram .instagram-introduction{
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.instagram-introduction .section-title-wrapper{
  width: 50%;
  margin-bottom: 0;
}
.instagram-introduction .instagram-description{
  width: 40%;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.instagram-introduction .instagram-description p{
  line-height: 27px;
}
.instagram-introduction .instagram-description .cta-btn{
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
}
.instagram-introduction .instagram-description img{
  height: 24px;
}
#gallery {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 150px;
}

.cols {
    -moz-column-count: 4;
    -moz-column-gap: 8px;
    -webkit-column-count: 4;
    -webkit-column-gap: 0;
    column-count: 4;
    column-gap: 8px;
    column-width: 25%;
}

.instagram-wrapper .box {
    margin-bottom: 10px;
    display: block;
    background-color: #ddd;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 0;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

.instagram-wrapper .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.instagram-wrapper .box.one {
    height: 150px;
    background-color: #9e9eec;
}

.instagram-wrapper .box.two {
    height: 170px;
    background-color: #8d8dee;
}

.instagram-wrapper .box.three {
    background-color: #7a7aec;
    height: 150px;
}

.instagram-wrapper .box.four {
    background-color: #6464ec;
    height: 170px;
}


/* Optional: Hover effect */
.instagram-wrapper .box:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Popup Style */
.instagram .popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    text-align: center;
}

.instagram  .popup img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
}

.instagram  .popup .close {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

.instagram  .popup .close:hover {
    color: #bbb;
}
.instagram  .popup  .arrow {
    position: absolute;
    top: 50%;
    font-size: 18px;
    font-weight: bold;
    color: #414141;
    cursor: pointer;
    user-select: none;
    z-index: 1001;
    transition: 0.3s ease;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram  .popup .arrow:hover {
    color: #000;
}

.instagram  .popup .arrow.left {
    left: 20px;
    transform: translateY(-50%);
}

.instagram  .popup .arrow.right {
    right: 20px;
    transform: translateY(-50%);
}


/* Testimonial Section */
.testimonial{
  padding: 0 0 80px;
  position: relative;
  overflow: hidden;
}
.testimonial::after, .testimonial::before{
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.testimonial::before {
  background-image: url('/images/blue-gradient-design3.png');
  height: 430px;
  width: 310px;
  top: 0;
  left: -220px;
  opacity: 0.1;
}
.testimonial::after {
  background-image: url('/images/blue-circle-gradient-design.png');
  height: 320px;
  width: 320px;
  bottom: -140px;
  right: -140px;
  opacity: 0.1;
  transform: scaleX(-1);
}
.testimonial .section-subtitle{
  color: #000;
}
.testimonial .section-title-wrapper{
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-content{
  position: relative;
  z-index: 2;
}
.carousel {
  position: relative;
  width: 100%;
  /* max-width: 800px;  */
  margin: 0 auto; 
  overflow: hidden; 
}
.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%; /* Or the combined width of all slides */
}
.review-slide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center; 
}
.review-box {
  width: 820px;
  flex: 0 0 820px;
  padding: 0 40px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-box p {
  /* margin: 14px 0; */
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  text-align: center;
}
.review-box img {
  width: 115px;
}
.name-photo {
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  margin-top: 40px;
}
.name-photo div{
  align-items: center;
  gap: 12px;
}
.name-photo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-name {
  margin: 0 0 4px !important;
}

.name-photo .review-date {
  font-size: 12px;
  color: darkgray;
  margin: 0;
  text-align: left;
}

.testimonial-prev, .testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10; 
  opacity: 0.6;
  transition: 0.2s ease-in-out;
  height: 32px;
}
.testimonial-prev:hover, .testimonial-next:hover {
  opacity: 1;
}

.testimonial-prev {
  left: 20px; 
}

.testimonial-next {
  right: 20px;
}

.testimonial-prev , .testimonial-next {
  cursor: pointer;
}
.testimonial .cta-btn{
  margin-top: 24px;
  padding: 6px 12px;
  font-size: 14px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}





@media (max-width:1300px) {
  .hero-slider{
    height: 800px;
  }
  .hero-content{
    padding: 150px 0 120px 20px;
  }
}

@media (max-width:1000px) {
  /* Aboutus Section 1000*/
  .about-img1 {
    width: 370px;
  }
  .aboutus-content-wrapper {
    padding: 80px 32px 120px 80px;
  }
  
  
  /* Testimonial Section 1000*/
  .testimonial-content-wrapper {
    width: 58%;
  }
  .testimonail-img {
    width: 40%;
  }
  
}

@media (max-width: 768px) {
  /* Hero Section 768*/
  .hero-slider {
    height: 730px;
  }
  .hero-content {
    width: 90%;
  }
  .hero-img {
      width: 100%;
      object-position: center right;
  }
  .hero-img-overlay {
      width: 100%;
      background: linear-gradient(to right, #0E1C2C, #043874b3, #0438741f);
  }
  .hero-content h2 {
      font-size: 72px;
      line-height: 66px;
  }
  .hero-insights{
    width: 100%;
  }


  /* Our Service Section 768*/
  .service-wrapper{
    flex-wrap: wrap;
  }
  
  
  /* Aboutus Section 768*/
  .aboutus {
    padding: 0 0 70px;
  }
  .aboutus-wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }
  .aboutus-content-wrapper {
      width: 100%;
      padding: 80px 40px 120px 40px;
  }
  .about-img1 {
    top: -80px;
    height: 440px;
  }
  .about-img2 {
    bottom: 140px;
    border: 6px solid #fff;
  }
  
  
  /* Why Choose Us Section 768*/
  .whychooseus-wrapper {
    row-gap: 40px;
    flex-wrap: wrap;
  }
  .whychooseus-box {
      width: 46%;
  }
  
  
  /* Instagram Section 768*/
  .instagram .instagram-introduction {
      flex-wrap: wrap;
      margin-bottom: 40px;
  }
  .instagram-introduction .section-title-wrapper {
      width: 100%;
      margin-bottom: 18px;
  }
  .instagram-introduction .instagram-description {
      width: 100%;
      text-align: start;
      align-items: start;
  }

  .cols {
      column-count: 2;
      /* 2 columns on smaller screens */
  }
  .box.one {
      height: 120px;
  }

  .box.two {
      height: 160px;
  }

  .box.three {
      height: 200px;
  }

  .box.five {
      height: 250px;
  }

  .box.six {
      height: 120px;
  } 

  /* Testimonial Section 768*/
  .review-box{
    width: 90%;
    flex: 0 0 90%;
  }
  
  

  
}


@media (max-width:480px) {
  /* Hero Section 480*/
  .hero-slider {
    height: 640px;
  }
  .hero-img-overlay {
    background: linear-gradient(to right, #0E1C2C, #043874d4, #0438747d);
  }
  .hero-content {
    padding: 100px 0 120px 10px;
  }    
  .hero-content h2 {
    font-size: 56px;
    line-height: 56px;
  }
  .hero-social {
    top: 47%;
    right: 8px;
  }
  .hero-content .hero-description {
    font-size: 22px;
    line-height: 28px;
    margin: 14px 0 32px;
  }
  .hero-insights {
    padding: 12px 10px;
    width: 108%;
  }
  .hero-insights p {
    font-size: 14px;
    /* width: 33%; */
  }
  .hero-insights p span {
    font-size: 26px;
  }


  .services .container {
    flex-direction: column; /* Stack the service boxes */
    align-items: center; /* Center content */
  }

  .swiper-slide {
    height: auto; /* Allow height to adjust */
    margin-bottom: 15px; /* Add some space between slides */
  }

  .swiper {
    padding: 0; /* Remove padding */
  }
   
   
   
  /* Aboutus Section 480*/
  .aboutus {
    padding: 0 0 60px;
  }
  .aboutus-content-wrapper {
      padding: 56px 16px 96px 16px;
  }
  .about-img1 {
    height: 280px;
    width: 280px;
    top: -60px;
  }
  .about-img2 {
    left: -50px;
    width: 200px;
    height: 170px;
    border: 4px solid #fff;
  }
  

  /* Our Service Section 480*/
  .services .container {
    align-items: start;
    margin-bottom: 32px;
  }
  .services .services-title{
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .services .container .section-title-wrapper {
    width: 100%;
  }
  .swiper-slide {
    width: 100% !important;
    height: 320px !important;
    /* margin: 0 10px; */
}
  

  /* Why Choose Us Section 480*/
  .whychooseus-wrapper {
    justify-content: center;
  }
  .whychooseus-box {
    width: 86%;
  }
  
  
  /* Testimonial Section 480*/
  .testimonial {
    padding: 0 0 60px;
  }
  .rating{
    width: 100px !important;
  }
  .name-photo {
      margin-top: 10px;
  }
  .testimonial-prev {
      left: 6px;
  }
  .testimonial-next {
      right: 6px;
  }
  .review-box p {
      font-size: 14px;
      line-height: 1.4;
  }
  
}


