body {
  background-color: white;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000;
  --sky: #42CEFF;
  --mid-night: #2c3e50;
}

.section_padding {
  padding-top: 80px;

}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* navbar */
 .navbar {
  background-color: var(--black);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.navbar-toggler{
color: white;
}
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(252, 250, 250, 0.5);
  z-index: 1050;
}

.nav-item .dropdown-menu{
  background-color: #000;
}

.dropdown-menu a {
  border: 1px solid transparent;
  border-radius: 10px;
  transition: all 0.3s ease;
  color: white;
}

.dropdown-menu a:hover {
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #f5f5f8;
}
.navbar-brand img {
  height: 70px;
  width: 100%;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}


.sidebar {
  width: 280px;
  height: 100vh;
  background:var(--black);
  padding: 16px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.nav-item .nav-link {
  color: #fbf7f7 !important;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 15px !important;
  transition: all 0.3s ease;
  position: relative;
}

.sidebar.show {
  transform: translateX(0);
}

.menu-item {
  padding: 12px;
  margin-bottom: 8px;
  border-radius: 6px;
  cursor: pointer;
  color: white;
}

.menu-item:hover {
  border: 2px solid white;
}

.menu-item a {
  text-decoration: none;
  color: #ffffff;
  display: block;
}

.submenu li {
  padding: 8px 12px;
  margin-left: 10px;
  border-radius: 5px;
  color: white;
}

.submenu li:hover {
  background: #eef2ff;
}


.cta {
 background-color: #084298;
  text-align: center;
}

.cta a {
  color: #fff;
  font-weight: 600;
}

.cta:hover {
  background: #084298;
} 

/* nav end */

/* Fullscreen Loader */

/* loader start */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-wrapper.hide-loader {
  opacity: 0;
  visibility: hidden;
}

/* Dot Loader */
.dot-loader {
  text-align: center;
}

.dot-loader img {
  width: 70px;
  height: 70px;
}

/* Dots animation */
.dots {
  margin-top: 10px;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #007bff;
  border-radius: 50%;
  margin: 0 3px;
  animation: jump 0.6s infinite alternate;
}

.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes jump {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

        /* loader end */
        
/* banner start */

.hero {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

.banner-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  text-align: left;
  color: #fff;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner.active {
  opacity: 1;
  z-index: 2;
}

.banner:nth-child(1) {
  background-image: url('../img/banner6.webp');
}

.banner:nth-child(2) {
  background-image: url('../img/banner8.webp');
}

.banner:nth-child(3) {
  background-image: url('../img/banner7.webp');
}

.banner:nth-child(4) {
  background-image: url('../img/banner5.webp');
}

.banner:nth-child(5) {
  background-image: url('../img/banner4.webp');
}

.banner:nth-child(6) {
  background-image: url('../img/banner11.webp');
}

.banner:nth-child(7) {
  background-image: url('../img/banner12.webp');
}

.banner-content {
  position: absolute;
  bottom: 20%;
  left: 7%;
  transform: translateY(0);
  z-index: 2;
  max-width: 650px;
  width: 90%;
  /* Fixed from 900% */
  animation: fadeInUp 2s ease;
}

.banner-content h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.banner-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

.banner-buttons .btn {
  margin-right: 10px;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 500;
  transition: 0.3s ease;
}

.banner-buttons .btn:hover {
  background-color: #00c4ff;
  color: #fff;
  border-color: #00c4ff;
}

.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 35px;
  color: #fff;
  cursor: pointer;
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-down:hover {
  transform: translateX(-50%) scale(1.2); /* Slightly enlarge */
  text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff; /* Glow effect */
}

/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero {
    height: 500px;
  }

  .banner-content h1 {
    font-size: 38px;
  }

  .banner-content p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 400px;
  }

  .banner-content {
    bottom: 15%;
    left: 5%;
    width: 90%;
    max-width: 90%;
  }

  .banner-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .banner-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .banner-buttons .btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  .scroll-down {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 300px;
  }

  .banner-content {
    bottom: 10%;
    left: 5%;
    width: 90%;
  }

  .banner-content h1 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .banner-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .banner-buttons .btn {
    padding: 6px 15px;
    font-size: 13px;
    margin-right: 5px;
  }
}

/* banner end */


/* about start */
.about-section {
  text-align: center;
  background-image: linear-gradient(135deg, #f5f7fa 0%, #d9f3ff 100%);
  
}

.about-section .container {
  max-width: 1600px ;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.about-section h2 {
  font-size: 38px;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 30px;
}

.about-text h4 span {
  color: var(--sky);
  font-size: 50px;
}

.about-text {
  font-size: 18px;
  max-width: 600px;
  color: #06080a;
  margin: 20px 60px;
  text-align: left;
}

.about-text p {
  padding-bottom: 20px;
}

.about-text p span {
  font-size: 20px;
  color: var(--sky);
  font-weight: 700;
}

.circle-container {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 580px;
  margin: 0 auto;
  /* margin-right: 100px; */
}

.center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid var(--sky);
  border-radius: 50%;
  max-width: 150px;
  height: 150px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  z-index: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: #2c3e50;
  animation: glow 3s ease-in-out infinite alternate;
  box-shadow: 0 0 50px rgba(5, 58, 67, 0.3);
}

.center-image:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.7);
}

.center-image img {
  width: 100%;
  max-width: 100px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.30));
}

.rotating-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 83%;
  height: 83%;
  transform: translate(-50%, -50%);
  animation: rotateOrbit 20s linear infinite;
  z-index: 3;
}

.label {
  position: absolute;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label img {
  max-width: 140px;
  width: 110%;
  border-radius: 50%;
  border: 4px solid var(--sky);
  padding: 12px;
  background: var(--dark);
  object-fit: contain;
  animation: counterRotate 20s linear infinite;
  transition: all 0.3s ease;
  background-color: #2c3e50;
}

.label:hover img {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.8);
}

.about-btn {
  padding: 10px 20px;
  border: 2px solid var(--mid-night);
  background-color: transparent;
  border-radius: 20px;
  color: var(--black);
  font-size: 16px;
  margin-top: 20px !important;
  transition: all 0.3s ease;

  cursor: pointer;
}

.about-btn:hover {
  background-color: var(--mid-night);
  color: white;
}

/* Position classes for orbit items */
/* web */
.top {
  top: 3px;
  left: 55%;
  transform: translateX(-50%);
}

/* app */
.top_right {
  top: 34%;
  right: 2%;
}

/* seo */
.bottom_right {
  bottom: 4%;
  right: 24%;
}

/* uiux */
.bottom_left {
  bottom: 16%;
  left: 9%;
}

/* software */
.top_left {
  top: 20%;
  left: 5%;
}

/* Animations */
@keyframes rotateOrbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes glow {
  from {
    box-shadow: 0 0 50px rgba(5, 58, 67, 0.3);
  }
  to {
    box-shadow: 0 0 70px rgba(5, 58, 67, 0.5);
  }
}

@keyframes rotateOrbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}


@media screen and (max-width: 1399px) {
  .about-section .container {
    max-width: 1200px !important; 
    padding: 0 30px;
  }
  
  .circle-container {
     max-width: 500px; 
    height: 500px;
    margin-right: 60px;
  }
  .about-btn {
  padding: 10px 20px;
  border: 2px solid var(--mid-night);
  background-color: transparent;
  border-radius: 20px;
  color: var(--black);
  font-size: 16px;
  margin: 20px 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.about-text {
  font-size: 18px;
  max-width: 600px;
  color: #06080a;
  margin: 50px 60px;
  text-align: left;
}
}

@media screen and (max-width: 1350px) {

}


/* 1200px */
@media screen and (max-width: 1200px) {
  .about-section {
    padding: 80px 0;
  }
  
  .circle-container {
    max-width: 450px;
    height: 450px;
    margin-right: 40px;
  }
  
  .center-image {
    max-width: 130px;
    height: 130px;
  }
  
  .label img {
    max-width: 120px;
  }
}


/* 992px */
@media screen and (max-width: 992px) {
  .about-section {
    padding: 70px 0;
  }

  .about-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .about-text {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 50px;
    padding: 0 20px;
  }

  .circle-container {
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
  }

  .center-image {
    max-width: 120px;
    height: 120px;
  }
  
  .center-image img {
    max-width: 90px;
  }

  .label {
    width: 90px;
    height: 90px;
  }

  .label img {
    max-width: 110px;
    padding: 10px;
  }
}

/* 768px */
@media screen and (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-section .container {
    padding: 0 20px;
  }

  .about-section h2 {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .about-text h4 span {
    font-size: 40px;
  }

  .about-text {
    font-size: 16px;
    padding: 0 15px;
  }

  .about-text p span {
    font-size: 18px;
  }

  .circle-container {
    max-width: 350px;
    height: 350px;
  }

  .center-image {
    max-width: 100px;
    height: 100px;
  }

  .center-image img {
    max-width: 80px;
  }

  .label {
    width: 80px;
    height: 80px;
  }

  .label img {
    max-width: 100px;
    padding: 8px;
  }
}

/* 576px */
@media screen and (max-width: 576px) {
  .about-section {
    padding: 50px 0;
  }

  .about-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .about-text h4 span {
    font-size: 35px;
  }

  .about-text {
    font-size: 15px;
    padding: 0 10px;
  }

  .circle-container {
    max-width: 300px;
    height: 300px;
  }

  .center-image {
    max-width: 80px;
    height: 80px;
    border-width: 3px;
  }

  .center-image img {
    max-width: 60px;
  }

  .label {
    width: 70px;
    height: 70px;
  }

  .label img {
    max-width: 85px;
    padding: 6px;
    border-width: 3px;
  }

  .about-btn {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* 480px */
@media screen and (max-width: 480px) {
  .about-section {
    padding: 40px 0;
  }

  .about-section h2 {
    font-size: 24px;
  }

  .about-text h4 span {
    font-size: 30px;
  }

  .circle-container {
    max-width: 280px;
    height: 280px;
  }

  .center-image {
    max-width: 70px;
    height: 70px;
  }

  .center-image img {
    max-width: 55px;
  }

  .label {
    width: 60px;
    height: 60px;
  }

  .label img {
    max-width: 75px;
    padding: 5px;
  }

  /* Adjusted positions for smaller screens */
 .top { top: 0px; left: 58%; }
  .top_right { top: 32%; right: 0px; }
  .bottom_right { bottom: 4%; right: 25%; }
  .bottom_left { bottom: 15%; left: 6%; }
  .top_left { top: 16%; left: 5%; }
}

/* 360px */
@media screen and (max-width: 360px) {
  .about-section h2 {
    font-size: 22px;
  }
  
  .about-text h4 span {
    font-size: 28px;
  }

  .circle-container {
    max-width: 250px;
    height: 250px;
  }

  .center-image {
    max-width: 60px;
    height: 60px;
    border-width: 2px;
  }
  
  .center-image img {
    max-width: 45px;
  }

  .label {
    width: 50px;
    height: 50px;
  }

  .label img {
    max-width: 65px;
    padding: 4px;
    border-width: 2px;
  }
}

/* 320px (smallest common mobile size) */
@media screen and (max-width: 320px) {
  .about-section {
    padding: 30px 0;
  }
  
  .about-section .container {
    padding: 0 15px;
  }

  .about-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .about-text h4 span {
    font-size: 26px;
  }

  .about-text {
    font-size: 14px;
  }

  .circle-container {
    max-width: 220px;
    height: 220px;
  }

  .center-image {
    max-width: 55px;
    height: 55px;
  }
  
  .center-image img {
    max-width: 40px;
  }

  .label {
    width: 45px;
    height: 45px;
  }

  .label img {
    max-width: 58px;
    padding: 3px;
  }

  .about-btn {
    padding: 7px 10px;
    font-size: 13px;
  }
}


/* about end */

/* service start */

.services-wrapper {
  position: relative;
  margin: 0;
  background-color: var(--black);
}

.services-wrapper h2 {
  font-size: 38px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0px;
}

.service {
  position: sticky;
  top: 0;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: white;
  transition: transform 0.6s ease, opacity 0.6s ease;
  overflow: hidden;
  padding: 0 80px;
  gap: 60px;
  margin: 0;
  border: none;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service:last-child {
  margin-bottom: 0;
}


.service-1 {
  background: url(../img/DeWatermark.ai_1759903133610.jpeg) center/cover no-repeat;
}

.service-2 {
  background: url(../img/wmremove-transformed\ \(16\).jpeg) center/cover no-repeat;
}

.service-3 {
  background: url(../img/huji23.jpg) center/cover no-repeat;
}

.service-4 {
  background: url(../img/abstract.jpg) center/cover no-repeat;
}

.service-5 {
  background: url(../img/topographic.jpg) center/cover no-repeat;
}

.service-6 {
  background: url(../img/digi.jpg) center/cover no-repeat;
}

.service-7 {
  background: url(../img/seob.jpg) center/cover no-repeat;
}

.service-content {
  z-index: 3;
  max-width: 600px;
  width: 100%;
  padding: 0px ;
  text-align: left;
  animation: slideDown 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

@keyframes slideDown {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.service-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 600;
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.service img {
  width: 100%;
  max-width: 475px;
  height: auto;
  border-radius: 20px;
  margin: 50px 30px;
  padding: 25px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  z-index: 2;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  border: 2px solid white;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: transparent;
}

.btn:hover {
  background: white;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

@media(max-width:1200px) {
  .service-wrapper {
    font-size: 30px;
  }

  .service-content h3 {
    font-size: 30px;
    padding: 20px 0;
  }

  .service-content p {
    font-size: 16px;
    font-weight: 500;
  }

  .service-content {
    padding: 20px;
  }
}

@media (max-width: 1023px) {
  .service {
    padding: 0 40px;
    gap: 30px;
  }

  .service-wrapper h3 {
    font-size: 28px;
  }

  .service-content h3 {
    font-size: 24px;
  }

  .service-content p {
    font-size: 16px;
  }

  .service img {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .service {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: auto;
    min-height: 550px;
    padding: 40px 20px;
    gap: 25px;
  }

  .service img {
    order: 1;
    display: block;
    margin: 0 auto;
    width: 70%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
  }

  .service-content {
    order: 2;
    max-width: 500px;
    padding: 20px;
    text-align: center;
    animation: slideDown 0.8s ease forwards;
    animation-delay: 0.6s;
  }

  .service-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .service-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .service {
    min-height: 500px;
    padding: 30px 15px;
  }

  .service img {
    max-width: 240px;
  }

  .service-content h3 {
    font-size: 22px;
  }

  .service-content p {
    font-size: 13px;
  }

  .btn {
    font-size: 13px;
    padding: 9px 22px;
  }
}

@media (max-width: 480px) {
  .service {
    padding: 25px 15px;
  }

  .service img {
    max-width: 210px;
  }

  .service-content h3 {
    font-size: 20px;
  }

  .service-content p {
    font-size: 12.5px;
  }
}


@media (max-width: 320px) {
  .service {
    padding: 20px 10px;
    min-height: 420px;
  }

  .service img {
    max-width: 180px;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .service-content p {
    font-size: 12px;
  }

  .btn {
    font-size: 12px;
    padding: 8px 18px;
  }
}

/* who we are start */

.who-section {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  font-weight: 600;
  font-size: 38px;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--black);
}

.who-sub {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--black);
}

.background-wrapper {
  position: relative;
  width: 100%;
}

.people-illustration {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 0 auto;
  margin-bottom: -180px;
  opacity: 0.6;
}

.cards-container {
  margin-top: -100px;
  position: relative;
  z-index: 5;
}

.cards-container .row {
  row-gap: 30px;
  /* This adds gap between rows */
}

.who-card {
  background: white;
  border-radius: 15px;
  gap: 25px;
  padding: 20px 15px;
  box-shadow: 2px 2px 5px var(--mid-night);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  animation: floatCard 4s ease-in-out infinite;
  height: 100%;
}

.who-card:hover {
  transform: translateY(-15px);
  box-shadow: 2px 2px 10px var(--mid-night);
}

.who-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 15px;
  position: relative;
}

.who-icon:before {
  content: '';
  position: absolute;
  background-color: #d8a5e5;
  border-radius: 50%;
}

.who-icon img {
  width: 90px;
  height: 90px;
  padding: 12px;
  z-index: 1;
}

.who-title {
  font-weight: 600;
  font-size: 22;
  text-transform: uppercase;
  margin: 15px 0;
  letter-spacing: 0.5px;
  color: var(--mid-night);
}

.who-title:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  margin: 10px auto 0;
}

.who-description {
  color: var(--mid-night);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
  max-width: 500px;
  width: 100%;
}

@keyframes floatCard {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1350px) {
  .section-heading {
    font-size: 28px;
    position: absolute;
    top: 30%;

  }

  .who-icon {
    margin: 10px 0;
  }

  .who-title {
    font-size: 18px;
    margin: 10px 0;
  }

  .who-sub {
    font-size: 18px;
    position: absolute;
    top: 38%;
  }

  .people-illustration {
    max-width: 650px;
    margin-bottom: -140px;
  }

  .cards-container {
    margin-top: 0px;
  }

  .who-card {
    padding: 18px 12px;

  }
}


@media (max-width: 1024px) {
  .section-heading {
    font-size: 28px;
    position: absolute;
    top: 28%;

  }

  .who-icon {
    margin: 10px 0;
  }

  .who-title {
    font-size: 18px;
    margin: 10px 0;
  }

  .who-sub {
    font-size: 18px;
    position: absolute;
    top: 35%;
  }

  .people-illustration {
    max-width: 650px;
    margin-bottom: -140px;
  }

  .cards-container {
    margin-top: -60px;
  }

  .who-card {
    padding: 18px 12px;

  }
}


@media (max-width: 992px) {
  .section-heading {
    font-size: 28px;
    position: absolute;
    top: 20%;
  }

  .who-sub {
    font-size: 18px;
    position: absolute;
    top: 25%;
  }


  .cards-container {
    margin-top: -35px;
    text-align: center;
  }

  .people-illustration {
    margin-bottom: -40px;
  }


  .background-wrapper {
    padding-top: 50px;
  }

  .cards-container {
    margin-top: -40px;
  }

  .who-card {
    padding: 18px 12px;
    height: 60%;
  }


}

@media (max-width: 768px) {
  .service-section {
    padding-top: 150px;
  }

  .section-heading {
    font-size: 28px;
    position: absolute;
    top: 10%;
  }

  .who-sub {
    font-size: 18px;
    position: absolute;
    top: 13%;
  }


  .background-wrapper {
    padding-top: 30px;
  }

  .cards-container {
    margin-top: -10px;
  }

  .people-illustration {
    max-width: 520px;
    margin-bottom: -100px;
  }

  .cards-container {
    margin-top: -40px;
  }

  .who-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .who-title {
    font-size: 16px;
  }

  .who-description {
    font-size: 13px;

  }
}

@media (max-width: 576px) {

  .section-heading {
    font-size: 28px;
    position: absolute;
    top: 13%;
  }

  .who-sub {
    font-size: 14px;
    position: absolute;
    top: 16%;
  }

  .people-illustration {
    margin-bottom: -20px;
  }


}

@media (max-width: 468px) {

  .section-heading {
    font-size: 28px;
    position: absolute;
    top: 11%;
  }

  .who-sub {
    font-size: 14px;
    position: absolute;
    top: 13%;
  }
}

@media (max-width: 400px) {

  .section-heading {
    font-size: 28px;
    position: absolute;
    top: 7%;
  }

  .who-sub {
    font-size: 12px;
    position: absolute;
    top: 10%;
  }
}

@media (max-width: 320px) {

  .section-heading {
    font-size: 22px;
    position: absolute;
    top: 6%;
  }

  .who-sub {
    font-size: 8px;
    position: absolute;
    top: 8%;
  }

}

/* who we are end */

/* why choose us */

.why-choose-us {
  position: relative;
  z-index: 2;
  overflow: hidden;
  clear: both;
  text-align: center;
}

.section-title {
  font-size: 38px;
  font-weight: 600;
  color: #1a1a1a;
  animation: fadeInDown 1s ease-out;
  letter-spacing: 1px;
}

.content-wrapper {
  margin-top: 40px;
}

.left-content {
  padding-right: 30px;
}

.left-content .tagline {
  font-size: 32px;
  line-height: 1.4;
  color: #2c3e50;
  font-weight: 600;
  animation: fadeInLeft 1.2s ease-out;
  text-align: left;
}

.right-content {
  position: relative;
  overflow: hidden;
  padding-left: 30px;
}

.swiper-container {
  height: 350px;
  overflow: hidden;
  position: relative;
  padding: 10px;
  text-align: center;
}

.swiper-wrapper {
  display: flex;
  flex-direction: column;
  will-change: transform;
  animation: autoScroll linear infinite;
  text-align: center;
}

.swiper-wrapper:hover {
  animation-play-state: paused;
}

.feature-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  background: linear-gradient(145deg, #2c3e50, #34495e);
  color: white;
  border-radius: 50px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  margin-bottom: 20px;
}

.feature-btn:hover {
  transform: translateX(-15px) scale(1.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  background: linear-gradient(145deg, #3498db, #2980b9);
  z-index: 10;
}

.feature-icon {
  width: 35px;
  height: 35px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes autoScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-1 * var(--scroll-height)));
  }
}

@keyframes scrollUpStaircase {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.swiper-container::before,
.swiper-container::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}

.swiper-container::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(245, 247, 250, 1) 0%, rgba(245, 247, 250, 0) 100%);
}

.swiper-container::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(245, 247, 250, 1) 0%, rgba(245, 247, 250, 0) 100%);
}

@media (min-width: 1400px) {
  .who-section {
    min-height: 700px;
    padding: 80px 0;
  }

  .content-wrapper {
    max-width: 800px;
  }


  .subtitle {
    font-size: 26px;
  }

  .description {
    font-size: 16px;
  }

  .floating-box {
    padding: 50px 40px;
  }
}

@media (max-width: 1200px) {
  .who-section {
    min-height: 600px;
  }

  .content-wrapper {
    width: 85%;
  }

  .floating-box {
    padding: 35px 30px;
  }

  .why-choose-us {
    padding: 60px 20px;
  }
}

@media (max-width: 992px) {
  .who-section {
    min-height: 550px;
    padding: 40px 0;
  }

  .main-title {
    font-size: 28px;
    letter-spacing: 1.5px;
  }

  .subtitle {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .floating-box {
    padding: 30px 25px;
  }

  .why-choose-us {
    padding: 50px 15px;
  }

  .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .content-wrapper {
    margin-top: 30px;
  }

  .left-content {
    padding-right: 15px;
    margin-bottom: 40px;
  }

  .left-content .tagline {
    font-size: 24px;
    text-align: center;
  }

  .right-content {
    padding-left: 15px;
  }

  .swiper-container {
    height: 400px;
  }

  .feature-btn {
    font-size: 14px;
    padding: 10px 15px;
  }

  .feature-btn:nth-child(n) {
    margin-left: 0 !important;
  }

  .feature-btn:nth-child(even) {
    margin-left: 20px !important;
  }
}

@media (max-width: 768px) {
  .who-section {
    min-height: 500px;
    padding: 30px 0;
  }

  .content-wrapper {
    width: 90%;
  }

  .main-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .subtitle {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .description {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .description span {
    font-size: 13px;
  }

  .floating-box {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .info-section {
    gap: 12px;
  }

  .info-item .icon img {
    width: 22px;
    height: 22px;
  }

  .info-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .info-content p {
    font-size: 13px;
  }

  .why-choose-us {
    padding: 40px 15px;
  }
}

@media (max-width: 576px) {
  .who-section {
    min-height: 450px;
    padding: 25px 0;
  }

  .content-wrapper {
    width: 92%;
  }

  .main-title {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .subtitle {
    font-size: 15px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .description {
    font-size: 11px;
    line-height: 1.6;
  }

  .description span {
    font-size: 14px;
  }

  .floating-box {
    padding: 18px 15px;
    border-radius: 10px;
  }

  .info-section {
    gap: 10px;
  }

  .info-item {
    gap: 10px;
  }

  .info-item .icon img {
    width: 20px;
    height: 20px;
  }

  .info-content h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .info-content p {
    font-size: 11px;
    line-height: 1.5;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .left-content .tagline {
    font-size: 20px;
  }

  .swiper-container {
    height: 350px;
  }
}

@media (max-width: 400px) {
  .who-section {
    min-height: 400px;
    padding: 20px 0;
  }

  .content-wrapper {
    width: 95%;
  }

  .main-title {
    font-size: 20px;
    letter-spacing: 0.5px;
  }

  .subtitle {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .floating-box {
    padding: 15px 12px;
  }

  .info-item .icon img {
    width: 18px;
    height: 18px;
  }

  .info-content h3 {
    font-size: 14px;
  }

  .info-content p {
    font-size: 11px;
  }
}

@media (max-width: 320px) {
  .who-section {
    min-height: 380px;
    padding: 15px 0;
  }

  .content-wrapper {
    width: 96%;
  }

  .main-title {
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }

  .subtitle {
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }

  .description {
    font-size: 11px;
    margin-bottom: 15px;
  }

  .description span {
    font-size: 12px;
  }

  .floating-box {
    padding: 15px 10px;
    border-radius: 8px;
  }

  .info-section {
    gap: 8px;
  }

  .info-item {
    gap: 10px;
  }

  .info-item .icon img {
    width: 16px;
    height: 16px;
  }

  .info-content h3 {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .info-content p {
    font-size: 10px;
    line-height: 1.4;
  }
}

/* who we are end */

/* why choose us start*/
.why-choose-us {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.section-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #1a1a1a;
  animation: fadeInDown 1s ease-out;
  letter-spacing: 1px;
}

.content-wrapper {
  margin-top: 60px;
}

.left-content {
  padding-right: 30px;
}

.left-content .tagline {
  font-size: 32px;
  line-height: 1.4;
  color: #2c3e50;
  font-weight: 600;
  animation: fadeInLeft 1.2s ease-out;
  text-align: left;
  word-wrap: break-word;
}

.right-content {
  position: relative;
  overflow: hidden;
  padding-left: 30px;
}

.swiper-container {
  height: 350px;
  overflow: hidden;
  position: relative;
  padding: 10px;
}

.swiper-wrapper {
  display: flex;
  flex-direction: column;
  will-change: transform;
  transform: translateY(0);
  animation: fullScroll 22s linear infinite;
}

.swiper-wrapper:hover {
  animation-play-state: paused;
}

.feature-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  background: linear-gradient(145deg, #2c3e50, #34495e);
  color: white;
  border-radius: 50px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  margin-bottom: 20px;
}

.scroll-box {
  height: 450px;
  overflow: hidden;
  position: relative;
}

.scroll-wrapper {
  display: flex;
  flex-direction: column;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.item {
  margin-bottom: 15px;
  padding: 12px 20px;
  background: #333;
  color: #fff;
  border-radius: 50px;
  border: none;
}

.feature-btn:nth-child(1) {
  margin-left: 10px;
}

.feature-btn:nth-child(2) {
  margin-left: 25px;
}

.feature-btn:nth-child(3) {
  margin-left: 40px;
}

.feature-btn:nth-child(4) {
  margin-left: 60px;
}

.feature-btn:nth-child(5) {
  margin-left: 90px;
}

.feature-btn:nth-child(6) {
  margin-left: 120px;
}

.feature-btn:nth-child(7) {
  margin-left: 150px;
}

.feature-btn:nth-child(8) {
  margin-left: 90px;
}

.feature-btn:nth-child(9) {
  margin-left: 40px;
}

.feature-btn:nth-child(10) {
  margin-left: 25px;
}

.feature-btn:nth-child(11) {
  margin-left: 10px;
}

.feature-btn:nth-child(12) {
  margin-left: 25px;
}

.feature-btn:nth-child(13) {
  margin-left: 40px;
}

.feature-btn:nth-child(14) {
  margin-left: 60px;
}

.feature-btn:nth-child(15) {
  margin-left: 90px;
}

.feature-btn:nth-child(16) {
  margin-left: 120px;
}

.feature-btn:nth-child(17) {
  margin-left: 150px;
}

.feature-btn:nth-child(18) {
  margin-left: 90px;
}

.feature-btn:nth-child(19) {
  margin-left: 40px;
}

.feature-btn:nth-child(20) {
  margin-left: 25px;
}

.feature-btn:hover {
  transform: translateX(-15px) scale(1.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  background: linear-gradient(145deg, #3498db, #2980b9);
  z-index: 10;
}

.feature-icon {
  width: 35px;
  height: 35px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.swiper-wrapper {
  display: flex;
  flex-direction: column;
  will-change: transform;
  animation: smoothScroll var(--scroll-speed) linear infinite;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-1 * var(--full-height)));
  }
}

.swiper-wrapper:hover {
  animation-play-state: paused;
}

@keyframes smoothStairScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.swiper-container::before,
.swiper-container::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}

@media (min-width: 1400px) {

  .who-section,
  .why-choose-us {
    padding: 40px 60px;
    /* min-height: 700px; */
  }

  .section-title {
    font-size: 38px;
    margin-bottom: 23px;
  }

  .content-wrapper {
    max-width: 1400px;
    margin-top: 70px;
  }

  .left-content .tagline {
    font-size: 36px;
  }

  .main-title {
    font-size: 40px;
  }

  .subtitle {
    font-size: 26px;
  }

  .description {
    font-size: 16px;
  }

  .floating-box {
    padding: 50px 40px;
  }

}


@media (max-width: 1399px) and (min-width: 1200px) {

  .who-section,
  .why-choose-us {
    padding: 40px 50px;
  }

  .content-wrapper {
    max-width: 1140px;
  }

  .floating-box {
    padding: 40px 35px;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {

  .who-section,
  .why-choose-us {
    padding: 40px 40px;
    min-height: 600px;
  }

  .section-title {
    font-size: 40px;
    margin-bottom: 60px;
  }

  .content-wrapper {
    max-width: 960px;
    margin-top: 50px;
  }

  .left-content .tagline {
    font-size: 28px;
  }

  .floating-box {
    padding: 35px 30px;
  }

 
  .feature-btn {
    font-size: 15px;
    padding: 11px 18px;
  }
}

@media (max-width: 991px) and (min-width: 768px) {

  .who-section,
  .why-choose-us {
    padding: 40px 30px;
    min-height: 550px;
  }

  .section-title {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .content-wrapper {
    max-width: 720px;
    margin-top: 40px;
  }

  .left-content {
    padding-right: 15px;
    margin-bottom: 40px;
  }

  .left-content .tagline {
    font-size: 26px;
    text-align: center;
  }

  .right-content {
    padding-left: 15px;
  }

  .main-title {
    font-size: 30px;
  }

  .subtitle {
    font-size: 20px;
    letter-spacing: 3px;
  }

  .floating-box {
    padding: 30px 25px;
  }

  .swiper-container {
    height: 420px;
  }

  .feature-btn {
    font-size: 14px;
    padding: 10px 16px;
    gap: 12px;
  }

  .feature-btn:nth-child(n) {
    margin-left: 0 !important;
  }

  .feature-btn:nth-child(even) {
    margin-left: 25px !important;
  }

  .feature-icon {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .swiper-container {
    text-align: center;
  }
}

@media (max-width: 767px) and (min-width: 576px) {

  .who-section,
  .why-choose-us {
    padding: 40px 30px;
    min-height: 500px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .content-wrapper {
    width: 95%;
    margin-top: 35px;
  }

  .left-content {
    padding-right: 10px;
    margin-bottom: 35px;
  }

  .left-content .tagline {
    font-size: 22px;
    text-align: center;
    line-height: 1.5;
  }

  .right-content {
    padding-left: 20px;
  }

  .main-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .subtitle {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .description {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .description span {
    font-size: 14px;
  }

  .floating-box {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .info-section {
    gap: 12px;
  }

  .info-item {
    gap: 12px;
  }

  .info-item .icon img {
    width: 22px;
    height: 22px;
  }

  .info-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .info-content p {
    font-size: 13px;
  }

  .swiper-container {
    height: 380px;
  }

  .feature-btn {
    font-size: 13px;
    padding: 9px 14px;
    gap: 10px;
    margin-bottom: 15px;
  }

  .feature-btn:nth-child(n) {
    margin-left: 0 !important;
  }

  .feature-btn:nth-child(even) {
    margin-left: 20px !important;
  }

  .feature-icon {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .swiper-container::before,
  .swiper-container::after {
    height: 60px;
  }
}


@media (max-width: 575px) and (min-width: 400px) {

  .who-section,
  .why-choose-us {
    padding: 40px 15px;
    min-height: 450px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
  }

  .content-wrapper {
    width: 96%;
    margin-top: 30px;
  }

  .left-content {
    padding-right: 5px;
    margin-bottom: 30px;
  }

  .left-content .tagline {
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
  }

  .right-content {
    padding-left: 20px;
  }

  .main-title {
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .subtitle {
    font-size: 16px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .description {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .description span {
    font-size: 13px;
  }

  .floating-box {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .info-section {
    gap: 10px;
  }

  .info-item {
    gap: 10px;
  }

  .info-item .icon img {
    width: 20px;
    height: 20px;
  }

  .info-content h3 {
    font-size: 15px;
    margin-bottom: 7px;
  }

  .info-content p {
    font-size: 12px;
    line-height: 1.5;
  }

  .swiper-container {
    height: 350px;
    text-align: center;
  }

  .feature-btn {
    font-size: 13px;
    padding: 8px 12px;
    gap: 8px;
    margin-bottom: 12px;
  }

  .feature-btn:nth-child(n) {
    margin-left: 0 !important;
  }

  .feature-btn:nth-child(even) {
    margin-left: 15px !important;
  }

  .feature-icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .swiper-container::before,
  .swiper-container::after {
    height: 50px;
  }
}

@media (max-width: 399px) and (min-width: 320px) {

  .who-section,
  .why-choose-us {
    padding: 30px 12px;
    min-height: 400px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
    letter-spacing: 0px;
  }

  .content-wrapper {
    width: 98%;
    margin-top: 25px;
  }

  .left-content {
    padding-right: 0;
    margin-bottom: 25px;
  }

  .left-content .tagline {
    font-size: 18px;
    text-align: center;
    line-height: 1.4;
  }

  .right-content {
    padding-left: 15px;
  }

  .main-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
  }

  .subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .description {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .description span {
    font-size: 12px;
  }

  .floating-box {
    padding: 15px 12px;
    border-radius: 10px;
  }

  .info-section {
    gap: 8px;
  }

  .info-item {
    gap: 8px;
  }

  .info-item .icon img {
    width: 18px;
    height: 18px;
  }

  .info-content h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .info-content p {
    font-size: 11px;
    line-height: 1.4;
  }

  .swiper-container {
    height: 320px;
    padding: 5px;
  }

  .feature-btn {
    font-size: 12px;
    padding: 7px 10px;
    gap: 6px;
    margin-bottom: 10px;
  }

  .feature-btn:nth-child(n) {
    margin-left: 0 !important;
  }

  .feature-btn:nth-child(even) {
    margin-left: 10px !important;
  }

  .feature-icon {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .swiper-container::before,
  .swiper-container::after {
    height: 40px;
  }
}

@media (max-width: 320px) {

  .who-section,
  .why-choose-us {
    padding: 25px 10px;
    min-height: 380px;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .content-wrapper {
    width: 100%;
    margin-top: 20px;
  }

  .left-content .tagline {
    font-size: 17px;
  }

  .main-title {
    font-size: 18px;
  }

  .subtitle {
    font-size: 13px;
  }

  .description {
    font-size: 10px;
  }

  .floating-box {
    padding: 12px 10px;
    border-radius: 8px;
  }

  .info-content h3 {
    font-size: 13px;
  }

  .info-content p {
    font-size: 10px;
  }

  .swiper-container {
    height: 300px;
  }

  .feature-btn {
    font-size: 11px;
    padding: 6px 8px;
  }

  .feature-icon {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }
}

/* why choose us end */

/* PROJECTS START */

#tabs {
  background: #f5f4f4;
  color: #333;

}

.tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.tab-pane.active {
  display: block;
}

.tab-pane.active.show {
  opacity: 1;
}

.project-heading h5 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #222;
}

#tabs .nav-tabs {
  border-bottom: 2px solid #e0e0e0;
}

#tabs .nav-tabs .nav-link {
  border: none;
  color: #000 !important;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 15px 25px;
  background: transparent;
}

#tabs .nav-tabs .nav-link:hover {
  color: #007b5e;
  background: transparent;
}

#tabs .nav-tabs .nav-link.active {
  color: #007b5e;
  font-weight: 700;
  background-color: transparent;
}

.project {
  position: relative;
  overflow: hidden;
  padding-bottom: 0px;
}

.project-col {
  position: relative;
  overflow: hidden;
  height: 500px;
  border-radius: 12px;
  transition: transform 0.4s ease;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.project-col img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: contain;
  object-position: top;
  transform: translateY(0);
  transition: transform 6s ease-in-out;
}

.project-col:hover img {
  transform: translateY(calc(500px - 100%));
}

.project-col-two {
  position: relative;
  overflow: hidden;
  height: 200px;
  border-radius: 12px;
  transition: transform 0.4s ease;
   display: flex;
  align-items: flex-start;
  justify-content: center; 
  
}

.project-col-two img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: contain;
  object-position: top;
  transform: translateY(0);
  transition: transform 6s ease-in-out;
}



.project-col-three {
  position: relative;
  overflow: hidden;
  height: 500px;
  width: 25%;
  /* border-radius: 12px; */
  transition: transform 0.4s ease;
   display: flex;
  align-items: flex-start;
  justify-content: center; 
  
}

.project-col-three img {
  width: 100%;
  height: 500px;
  /* min-height: 100%; */
  object-fit: contain;
  object-position: top;
  transform: translateY(0);
  transition: transform 6s ease-in-out;
}

 .project-col-three:hover {
      transform: translateY(-8px);
     
    }

.tab-pane {
  display: none;
}

.tab-pane.active.show {
  display: block;
}

@media (max-width: 1200px) {
  .project-col {
    height: 400px;
  }

  .project-heading h5 {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .project {
    padding-top: 40px;
  }

  .project-col {
    height: 300px;
  }

  .project-heading h5 {
    font-size: 28px;
  }
  .project-col-three{
    height: 300px;
}
.project-col-three img{
    height: 300px;
}
}

@media only screen and (max-width: 767px) {
    .project-col {
        height: 220px;
        margin-bottom: 0;
    }

    .project-heading h5 {
        font-size: 28px;
    }

    #tabs .nav-tabs .nav-link {
        font-size: 16px;
        padding: 12px 15px;
    }

    .project-col-three {
        width: 50%;
    }

    .project-col-three img {
        width: 100%;
        height: 300px;
    }
}


@media (max-width: 575px) {
  .project {
    padding-top: 40px;
  }

  .project-col {
    height: 180px;
  }

  .project-heading h5 {
    font-size: 26px;
  }

  #tabs .nav-tabs .nav-link {
    font-size: 14px;
    padding: 10px 12px;
  }
  .project-col-three{
    /*height: 300px;*/
    width:100%;
}
.project-col-three img{
    /*height: 300px;*/
}
}

/* PROJECTS END */

/* testimonial start */
.text-secondary {
  font-size: 24px;
  font-weight: 600;
}

.text-head {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 30px;
}

.testimonial-text {
  font-style: italic;
  color: #444;
  font-size: 18px;
  line-height: 1.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 50%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

@media (max-width:990px) and (max-width: 767px) {

  .testimonial-text {
    font-size: 15px;
  }

  .text-head {
    font-size: 28px;
  }

  .img-fluid {
    height: 280px;
  }
}

/* testimonial end */

/* blog start */

.update-section h6 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 30px;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.news-title {
  font-size: 30px;
  font-weight: 400;
}

.read-all {
  background-color: var(--mid-night);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
}

.read-all:hover {
  background-color: var(--sky);
  color: white;
}

.news-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  height: 100%;
}

.news-img {
  height: 240px;

  object-fit: cover;
  border-radius: 30px;
}

.news-img:hover {
  transform: scale(1.05);
  border-radius: 30px;
}

.news-content {
  padding: 25px 40px;
}

.news-date {
  color: #666;
  font-size: 12px;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
}

.news-date::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 50%;
  margin-right: 5px;
}

.news-title-card {
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
}

.news-excerpt {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.read-more {
  background-color: var(--mid-night);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
}

.read-more:hover {
  background-color: var(--sky);
  color: white;
}


@media (max-width:1400px) {
  .news-title {
    font-size: 22px;
  }

  .news-title-card {
    font-size: 16px
  }

  .news-img {
    height: 250px;
  }

  .news-content {
    padding: 15px 0px;
    padding-left: 30px;
  }
}


@media (max-width:1280px) {
  .news-title {
    font-size: 22px;
  }

  .news-title-card {
    font-size: 16px
  }

  .news-img {
    height: 250px;
  }

  .news-content {
    padding: 15px 0px;
    padding-left: 30px;
  }
}

@media (max-width:992px) {
  .update-section h3 {
    font-size: 28px;
  }

  .news-title-card {
    font-size: 12px
  }

  .news-img {
    height: 250px;
  }

  .news-content {
    padding: 0;
    padding-left: 20px;
  }

  .news-excerpt {
    font-size: 12px;
  }

  .read-more {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .news-row {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
  }

  .news-title-card {
    font-size: 18px;
    padding-top: 10px;
  }

  .news-img {
    height: 250px;
  }

  .news-content {
    padding: 0;
    padding-left: 20px;
  }

  .news-excerpt {
    font-size: 12px;
  }

  .read-more {
    font-size: 12px;
  }
}

@media (max-width:468px) {
  .news-card {
    display: flex;
    flex-direction: column;
    gap: 20px
  }

}
/* blog end */

/* call information start */
.connect {
  background: #0c0c0c;
}

.c-heading {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.4;
  max-width: 400px;
}

.contact-item {
  display: block;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;

}

.contact-item i {
  color: #f4f7f8;
  transition: all 0.3s ease;
}

.contact-item-two i {
  color: #fb0303;
  transition: all 0.3s ease;
}

.contact-item-two a {
  color: #f8f9fa;
}

.contact-item i {
  color: #f4f7f8;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  color: var(--sky);
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
}

.contact-item:hover i {
  color: var(--sky);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* end */


/* footer start */
.footer_section {
  background-color: var(--black);
  color: white;
  padding: 60px 0 20px;
}

.footer-row {
  align-items: stretch;
}

.footer-col {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 120px;
  width: 100%;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 16px;
  color: #ddd;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}

.footer-tagline span {
  color: var(--sky);
  font-size: 18px;
  font-weight: 600;
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.footer-col a[href^="tel"],
.footer-col a[href^="mailto"] {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-col a[href^="tel"]:hover,
.footer-col a[href^="mailto"]:hover {
  color: var(--sky);
}

.footer-col a[href^="tel"] i,
.footer-col a[href^="mailto"] i {
  margin-right: 8px;
  color: var(--sky);
}



.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--sky);
}

.footer-right {
  background: #3d3738;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.footer-contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.footer-contact-form .form-control {
  background: #fff;
  color: #222;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 10px 12px;

}

.footer-contact-form .form-control::placeholder {
  color: #666;
}

.footer-contact-form .form-control:focus {
  box-shadow: none;
  border-color: #00c4ff;
}

.footer-contact-form textarea {
  flex-grow: 1;
  min-height: 100px;
}

.footer-contact-form .btn {
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 600;
}

.footer-right .btn {
  background-color: var(--sky);
}

.footer-right .btn:hover {
  background-color: #007bff;
}

.footer-social-icons {
  display: flex;
  justify-content: flex-start;
  margin: 22px 0;
  gap: 8px;
}

.social-icon-group {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-icons a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
}

.social-icon-group:hover {
  background: var(--sky);
}

.social-icon-group:hover a {
  color: #000;
}

@media (max-width: 767.98px) {
  .footer-right {
    margin-top: 12px;
  }

  .footer-heading.ms-5,
  .footer-links.ms-5 {
    margin-left: 0 !important;
  }

  .footer-heading.me-5,
  .footer-links.me-5 {
    margin-right: 0 !important;
  }
}

/* footer end */