* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  clip-path: none !important;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: 'Arial', sans-serif;
}

.spinner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(to right, #3eb5ff, #006eff);
  position: relative;
  animation: spin 1s linear infinite;
  mask:
    radial-gradient(farthest-side, transparent calc(100% - 10px), black calc(100% - 10px));
  -webkit-mask:
    radial-gradient(farthest-side, transparent calc(100% - 10px), black calc(100% - 10px));
}

#loading-text {
  margin-top: 20px;
  font-size: 30px;
  color: #006eff;
  font-weight: bold;
}


@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* SCROLL code start  */
.scroll-indicator {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 9999;
}

.scroll-indicator svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 2;
}

.circle {
  fill: none;
  stroke: #0B6EDA;
  stroke-width: 2;
  stroke-dasharray: 100, 100;
  stroke-linecap: round;
  transition: stroke-dasharray 0.3s ease;
}

/* button touch css*/
#openFormBtn {
  background: linear-gradient(to right, #3eb5ff, #006eff);
  color: white;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  border: none;
}

#popupForm {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  margin-top: 1%;
}

.form-box {
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  position: relative;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.form-box h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #3e4095;
  text-align: center;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 15px;
  transition: 0.3s ease;
}

.form-box input:focus,
.form-box textarea:focus {
  border-color: #3e4095;
  outline: none;
}

.form-box textarea {
  resize: none;
  height: 100px;
}

.form-box button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #3eb5ff, #006eff);
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.form-box button:hover {
  background-color: blue
}

#closePopup {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 22px;
  color: #333;
  cursor: pointer;
}

#closePopup:hover {
  color: red;
}

/* /////////// */

body {
  padding-top: 140px;
}

/* 
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 58px;
  background-color: #000D27;
  color: #49515B;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
}

.header-left a,
.header-right a {
  position: relative;
  text-decoration: none;
  margin-right: 20px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.header-left a i,
.header-right a i {
  color: transparent;
  -webkit-text-stroke: 1px #3FB5FD;
  margin-right: 8px;
  font-size: 22px;
  transition: 0.3s;
}

.header-right a i {
  color: white;
  -webkit-text-stroke: 0;
}

.header-left a:hover i {
  color: transparent;
  -webkit-text-stroke: 1px #3FB5FD;
}

.header-right a:hover i {
  color: transparent;
  -webkit-text-stroke: 1px #3FB5FD;
}

.header-left a::after,
.header-right a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #3FB5FD;
  transition: width 0.4s ease;
}

.header-left a:hover::after {
  width: 90%;
  margin-left: 20%;
} */

/* NAV PAGE START */
/* .nav {
  position: fixed;
  top: 52px;
  width: 100%;
  background-color: #ffffff;
  z-index: 999;
}

.nav-container {
  margin: 0px 35px;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 600;
  color: #0a0a23;
  padding: 10px;
  display: block;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #3e4095;
} */

/* nav responsive */
/* .menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #3e4095;
  border-radius: 3px;
  transition: 0.3s ease;
}

.arrow {
  font-size: 10px;
  margin-left: 5px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  z-index: 99;
}

.dropdown-menu li a {
  padding: 10px 15px;
  white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.nav-btn {
  background: linear-gradient(to right, #3eb5ff, #006eff);
  color: white;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.nav-btn:hover {
  background: linear-gradient(to right, #006eff, #3eb5ff);
} */

/* nav bottom start  */


.empowering-ideas {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 0;
  background: url(./IMAGE/background\ img.png)no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 679px;
  border-radius: 30px;
  /* margin: 0px 5%; */
  position: absolute;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 3s forwards;
}

.text-left {
  max-width: 46%;
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 3s forwards;
  animation-delay: 0.5s;
}

.text-left h1 {
  font-size: 55px;
  font-weight: bold;
  color: white;
  margin-top: -25%;
  margin-left: -4%;
}

.text-left h2 {
  font-size: 18px;
  color: white;
  padding-left: 5%;
  margin-top: 5%;
  margin-bottom: 50px;
  margin-left: -8%;
}

.explore-btn {
  padding: 14px 45px;
  background: linear-gradient(to right, #006eff, #3eb5ff);
  color: white;
  font-size: 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-left: -3%;
  margin-top: 5% !important;

}

.image-right img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 28%;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 3s forwards;
  /* Increased duration */
  animation-delay: 1s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.reviews {
  display: flex;
  /* justify-content: space-around; */
  margin-top: 40px;
  gap: 10% !important;
}

.review {
  margin-top: -27%;
  margin-left: 4%;
  align-items: center !important;

}

.review img {
  width: 61%;
  height: 15%;
}

.review p {
  font-size: 18px;
  color: white;
  padding-top: 5%;
}

/* card  start */
.service-section {
  padding: 60px 50px;
  background-color: #f8f9fc;
  margin-top: 50%;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.circle-with-check {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(to right, #006eff, #3eb5ff);
  color: white;
  text-align: center;
  line-height: 20px;
  font-size: 16px;
  margin: 3%;
}

.list-style li {
  padding-top: 5%;
}

.service-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-decoration: none;

  top: 0;
}

.service-card:hover {
  background: linear-gradient(to right, #0B6EDA, #3FB5FD);
  color: white;
}

.service-card:hover .service-icon img {
  filter: none;
  transform: none;

}

.service-card:hover a,
.service-card:hover p,
.service-card:hover ul li {
  color: white;
}

.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #3e4095;
}

.service-icon ul li {
  text-decoration: none;
  padding: 7%;
}

.service-icon img {
  width: 48%;
  height: auto;
}

.service-card a {
  display: block;
  font-size: 21px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  text-decoration: none;

}

.service-card a:hover {
  text-decoration: none;
}

.service-card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}

.service-card ul {
  list-style: none;

  padding-left: 5px;
  text-align: left;
  color: #333;
  font-size: 14px;
}



/* img section start  */

.tech-hero {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  padding: 50px 60px;
  background: #f7f9fc;
  gap: 150px;
  height: 130vh;
  /* border: 2px solid red; */
}

.hero-left {
  position: relative;
  width: 50%;
  /* border: 2px solid red; */
  height: 0%;
}

.image-grid {
  position: relative;
  width: 125%;
  /* border: 2px solid red; */
}

.image-grid img {
  /* width: 100%; */
  border-top-left-radius: 170px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.overlay-image {
  position: absolute;
  bottom: -40px;
  left: 80px;
  width: 80%;
  overflow: hidden;
}

.overlay-image img {
  /* width: 100%; */
  margin-left: 20%;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 150px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* PLAY BUTTON */
.play-button {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: linear-gradient(to right, #0B6EDA, #3FB5FD);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 26px;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.pulse-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, white, #0B6EDA, #3FB5FD, white);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.hero-right {
  width: 45%;
  margin-bottom: 15%;
  /* border: 2px solid red; */
}

.badgee {
  display: inline-block;
  padding: 8px 20px;
  background-color: #e4edff;
  color: #3FB5FD;
  font-size: 14px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.hero-right h1 {
  font-size: 42px;
  line-height: 1.3;
  color: #0b0c38;
  margin-bottom: 25px;
  font-weight: bold;
}

.hero-right p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0px;
}

/* VIDEO MODAL */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-container {
  position: relative;
  width: 80%;
  max-width: 800px;
  background: #000;
  border-radius: 10px;
}

.video-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

/* experience code start  */

.experience-section {
  background-color: #ffffff;
  position: relative;
  padding: 50px 0;
  color: #fff;
}

.experience-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.experience-overlay {
  position: relative;
  z-index: 2;
}

.experience-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 170px;
}

.experience-left {
  flex: 1;
  text-align: center;
  margin-bottom: 5%;
}

.counter-box h2 {
  font-size: 110px;
  color: #0B6EDA;
  font-weight: bold;
  margin-right: 50%;
}

.counter-box p {
  font-size: 25px;
  color: #333;
  margin-right: 50%;
}

.subtext {
  font-size: 40px;
  color: black;
  font-weight: bold;
  margin-top: 10px;
  /* border: 2px solid red; */
  width: 163%;
  text-align: initial;
  margin-left: 3%;
}

.experience-right {
  flex: 1;
}

.experience-right h3 {
  font-size: 35px;
  color: black;
  font-weight: bold;
  /* border: 1px solid #000; */
  width: 100%;
}

.progress-box {
  margin-top: 10%;
}

.progress-box .progress-item {
  margin-bottom: 20px;
}

.label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #222;
}

.slider {
  width: 100%;
  height: 10px;
  border-radius: 5px;
  appearance: none;
  background: #ddd;
  outline: none;
}

.slider::-webkit-slider-thumb {
  appearance: none;
  width: 0;
  height: 0;
  background: transparent;
  pointer-events: none;
}

.slider::-moz-range-thumb {
  width: 0;
  height: 0;
  background: transparent;
  border: none;
}

.slider::-ms-thumb {
  width: 0;
  height: 0;
  background: transparent;
  border: none;
}

.range-value {
  margin-top: 6px;
  font-size: 14px;
  text-align: center;
  color: black;
  margin-left: 90%;
}

/* card code start  */
.team-services-block {
  padding: 60px 20px;
  background-color: #f5f8ff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.team-services-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-card {
  width: 350px;
  height: 440px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.team-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  margin: 0px 35px;
}

/* //// */

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

@keyframes textSlide {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes glow {

  0%,
  100% {
    color: #111;
  }

  50% {
    color: #3FB5FD;
  }
}

.team-content {
  position: absolute;
  bottom: 0;
  background: white;
  width: 83%;
  margin-left: 4%;
  margin-right: 5%;
  margin-bottom: 7%;
  border-radius: 10px;
  padding: 20px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: textSlide 5s ease-in-out infinite;
}

.team-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(to right, #3FB5FD, white);
  border-radius: 50%;
  margin: -12px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iconPulse 3s ease-in-out infinite;
}

.team-icon img {
  width: 35px;
  height: 35px;
  margin-bottom: 5px;
}

.team-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #111;
  text-align: center;
  animation: glow 4s ease-in-out infinite;
}

.team-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  text-align: center;
  animation: textSlide 6s ease-in-out infinite;
}

/* //// */

.nav-links {
  display: flex;
  gap: 50px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  transition: 0.4s;
}



/* about code start  */

.about-section {
  position: relative;
  background: url('./IMAGE/background\ img.png') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  z-index: 1;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 60, 0.7);
  z-index: 0;
}

.about-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.about-label {
  display: inline-block;
  background-color: #1c2d5a;
  color: #fff;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-container h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

.about-container h1 span {
  color: #ffffff;
}

.about-container p {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 40px;
}

.about-cta {
  display: flex;
  /* flex-direction: column; */
  margin-left: 25%;
  align-items: center;
  gap: 20px;
}

.btn-primary {
  background: linear-gradient(to right, #0B6EDA, #3FB5FD);
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.3s;
  font-weight: bolder;
}

.btn-primary:hover {
  background: white;
  color: #3eb5ff;
}

.email-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ccc;
}

.email-icon {
  font-size: 20px;
  background: linear-gradient(to right, #0B6EDA, #3FB5FD);
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-info p {
  margin: 0;
  font-weight: bold;
  color: #fff;
}

/* about code start */

.zotech-about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  background: linear-gradient(to bottom, #fff, #f0f3f9);
}

.about-left {
  position: relative;
  width: 50%;
}

.bg-animation {
  position: absolute;
  top: -30%;
  left: 0;
  width: 430px;
  height: 468px;
  background: url('./IMAGE/about\ img\ 2.png') no-repeat center center;
  background-size: contain;
  animation: rotateFade 40s ease-in-out infinite;
  z-index: 1;
}

.person-img {
  position: relative;
  z-index: 2;
  width: 400px;
  max-width: 100%;
}


.about-left img {
  width: 303px;
  max-width: 100%;
  margin-left: 12%;
}

.about-right {
  max-width: 50%;
}

.about-right h1 {
  display: inline-block;
  padding: 15px 20px;
  background-color: #e4edff;
  color: #3FB5FD;
  font-size: 18px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.about-right h2 span {
  font-size: 36px;
  font-weight: bold;
  color: #101153;
}

.about-right p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin: 20px 0;
}

.about-features {
  display: flex;
  gap: 50px;
  margin-top: 30px;
}

.feature-box {
  /* text-align: center; */
  max-width: 250px;
}

.feature-icon {
  font-size: 32px;
  color: #3e4095;
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #101153;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 15px;
  color: #555;
  text-align: justify;
}

@keyframes rotateBg {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateFade {
  0% {
    transform: rotate(0deg);
    opacity: 0.3;
  }

  50% {
    transform: rotate(180deg);
    opacity: 0.2;
  }

  100% {
    transform: rotate(360deg);
    opacity: 1;
  }
}

/* slider */
.partner-section {
  background-color: #EAF0FF;
  text-align: center;
  padding: 60px 20px;
}

.partner-section h2 {
  font-size: 32px;
  color: #0c0c4f;
  margin-bottom: 40px;
  font-weight: bold;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: calc(240px * 12);
  /* total logos * width */
  animation: scroll 20s linear infinite;
}

.logo-track img {
  width: 120px;
  height: 60px;
  margin: 0 60px;
  object-fit: contain;
  transition: filter 0.3s ease;
}



@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* member code start */
.expert-team-section {
  background: #e4edff;
  padding: 60px 20px;
  position: relative;
  text-align: center;
}

.expert-team-wrapper {
  max-width: 1200px;
  margin: auto;
}

.expert-team-subtitle {
  color: #3FB5FD;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.expert-team-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.expert-team-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.expert-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
}

.expert-member-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.expert-member-icon {
  font-size: 60px;
  color: #3FB5FD;
  margin-bottom: 20px;
}

.expert-member-card h1 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.expert-member-card h2 {
  font-size: 16px;
  font-weight: 500;
  color: blue;
}

/* img code start  */
.custom-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 40px;
  background-color: #f5f5f5;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 3%;
}

.custom-left,
.custom-right {
  flex: 1;
  min-width: 300px;
}

.custom-left h1 {
  font-size: 36px;
  color: #3e4095;
  margin-bottom: 10px;
}

.custom-left h2 {
  font-size: 24px;
  color: #555;
}

.custom-right p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* ///////////// */

.empower-slider-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.empower-slider-inner {
  width: 200vh;
  overflow: hidden;
  position: relative;
}

.empower-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.empower-slide {
  flex: 0 0 33.3333%;
  padding: 0 10px;
  opacity: 0.5;
  transform: scale(0.9);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.empower-slide.active {
  opacity: 1;
  transform: scale(1);
}

.empower-slide img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* .empower-caption {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  color: #3e4095;
} */

.empower-dots {
  text-align: center;
  margin-top: 20px;
}

.empower-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
  cursor: pointer;
}

.empower-dots .dot.active {
  background-color: #3e4095;
}

.empower-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  /* background: rgba(0, 0, 0, 0.6); */
  background: linear-gradient(to right, #0B6EDA, #3FB5FD);
  color: white;
  padding: 5px 10px;
  font-size: 18px;
  border-radius: 5px;
  font-weight: bolder;
}

.testimonial-section {
  background: linear-gradient(to bottom, #f9f9fc, #ffffff);
  padding: 20px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 3%;
}

.testimonial-header h3 {
  background-color: #e4edff;
  color: #3FB5FD;
  font-size: 18px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-align: center;
  display: inline-block;
  padding: 15px 20px;
}

.testimonial-header h1 {
  font-size: 36px;
  font-weight: bold;
  color: #0a0a23;
  margin: 10px 0;
}

.testimonial-header p {
  color: #555;
  font-size: 18px;
  line-height: 1.6;
}

.testimonial-box {
  margin: 50px auto;
  max-width: 800px;
  display: flex;
  gap: 40px;
  align-items: center;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.testimonial-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #3e9eff;
  margin-right: 80%;
}

.testimonial-content {
  text-align: left;
  color: #333;
  padding-left: 5%;
}

.testimonial-content .stars {
  color: #0066ff;
  font-size: 24px;
  margin-bottom: 15px;
}

.testimonial-content p {
  font-size: 20px;
  font-weight: 500;
  color: #2c2c2c;
}


.testimonial-content h2 {
  font-size: 16px;
}

.testimonial-content h4 {
  color: black;
  font-weight: bold;
  font-size: 18px;
}

.testimonial-nav {
  position: absolute;
  top: 1148% !important;
  left: 5%;
  right: 5%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}

.testimonial-nav button {
  background: linear-gradient(to right, #0B6EDA, #3FB5FD);
  color: white;
  border: none;
  padding: 10px 14px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.testimonial-nav button:hover {
  background-color: #555;
  /* transform: scale(1.1); */
}

.testimonial-nav button:first-child {
  left: 0;
}

.testimonial-nav button:last-child {
  right: 0;
}

/* copy right css */
.blue-line {
  width: 100%;
  height: 75px;
  background: linear-gradient(to right, #0B6EDA, #3FB5FD);
  color: #ffffff;
  text-align: center;
  padding: 15px 10px;
  font-size: 18px;
  padding-top: 1%;
  border-radius: 1px;
  font-family: "playfair display";
  font-weight: 500;
}

.blue-line .legal-links {
  margin-top: 5px;
}

.blue-line .footer-link {
  color: #ffffff;
  text-decoration: underline;
  margin: 0 5px;
  transition: color 0.3s ease;
  display: inline-block;
  text-decoration: none;
  /* margin-bottom: 2%; */
}

.blue-line .footer-link:hover {
  color: #3FB5FD;
}


/* FOOTER CSS */
.zotech-footer {
  background: linear-gradient(to bottom, #f7f8fc, #ffffff);
  padding-top: 60px;
  padding-left: 50px;
  padding-right: 50px;
  font-family: 'Segoe UI', sans-serif;
}

.zotech-footer-container {
  max-width: 1300px;
  margin: auto;
}

.zotech-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

/* Column 1 */
.zotech-footer-about {
  color: #333;
}

.zotech-footer-logo {
  width: 35vh;
  margin-bottom: -63px;
  margin-top: -37%;
  margin-left: -2%;
}

.zotech-footer-text {
  font-size: 17px;
  color: black;
  margin-bottom: 20px;
  width: 110%;
}

.zotech-subscribe-heading {
  font-weight: bold;
  color: #0b0b35;
}

.zotech-subscribe-form {
  display: flex;
  margin-top: 15px;
}

.zotech-subscribe-input {
  padding: 12px;
  border: none;
  background: #f0f6fe;
  width: 100%;
}

.zotech-subscribe-btn {
  background-color: #3eb6ff;
  color: white;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
}

.zotech-social-icons {
  margin-top: 30px;
}

.zotech-social-icons i {
  font-size: 20px;
  margin-right: 15px;
  cursor: pointer;

  transition: color 0.3s;
}

.zotech-social-icons i:hover {
  color: #3e4095;
}

.zotech-footer-links {
  color: #333;
  width: 80%;
  margin: 0px 80px;
}

/* Column 2 & 3 */

.zotech-footer-services {
  color: #333;

}

.zotech-footer-title {
  font-size: 20px;
  font-weight: bold;
  color: #0b0b35;
  margin-bottom: 20px;
}

.zotech-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zotech-link-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 15px;
  color: #0B6EDA;
  font-weight: 500;

}

.zotech-link-list li::before {
  /* content: ''; */
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background-color: #0B6EDA;
  /* 👈 Change this to your desired circle color */
  border-radius: 50%;
  padding-top: 5px;
}

.zotech-link-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #0B6EDA;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  padding-right: 25px;

}

.zotech-link-list a::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 14px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%233e4095" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 17l5-5-5-5v10z"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 8px;
  transform: translateX(-5px);
  opacity: 0;
  transition: all 0.3s ease;
}


.zotech-link-list a:hover::after {
  transform: translateX(0);
  opacity: 1;
}

/* Column 4 - Contact */
.zotech-footer-contact .zotech-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.zotech-contact-icon {
  width: 45px;
  height: 45px;
  background-color: #3eb6ff;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 18px;
}

.zotech-scroll-top {
  margin-top: 30px;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: 2px solid #3eb6ff;
  color: #3eb6ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.zotech-scroll-top:hover {
  background-color: #3eb6ff;
  color: white;
}


/* ABOUT PAGE CSS */
.about-intro {
  position: relative;
  background-image: url('./IMAGE/about img 1.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-intro .about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(89deg, rgb(0 85 255 / 53%) 15.79%, rgb(0 0 0 / 5%) 91.12%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 1;
}

.about-intro h1,
.about-intro p {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s forwards;
}

.about-intro h1 {
  animation-delay: 0.5s;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  z-index: 2;
}

.about-intro p {
  animation-delay: 1s;
  font-size: 20px;
  z-index: 2;
}

/* ✅ Add this */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Info Section */
.About-section {
  padding: 75px;
  background-color: #f4f4f4;
}

.About-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Left Side Text */
.info-text {
  flex: 1;
  animation: slideInLeft 1s ease-out forwards;
  opacity: 0;
  transform: translateX(-50px);
  padding-right: 20px;
  /* Adding some padding for better text positioning */
}

.info-text h2 {
  display: inline-block;
  padding: 15px 25px;
  background-color: #e4edff;
  color: #3FB5FD;
  font-size: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.info-text p {
  font-size: 18px;
  color: #333;
  /* margin-bottom: 30px; */
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
}

.info-text ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.info-text ul li {
  font-size: 18px;
  margin-bottom: 15px;
  color: #555;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.info-text ul li strong {
  color: #3e4095;
  font-weight: 600;
}

/* Image on Right Side */
.info-image {
  flex: 1;
  animation: fadeInRight 1s ease-out forwards;
  opacity: 0;
  transform: translateX(50px);
}

.info-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Slide-in animation for text */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade-in animation for image */
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.journey-section {
  background-color: #fff;
  padding: 80px 0;
}

.journey-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.journey-image {
  flex: 1;
  animation: fadeInLeft 1s ease-out forwards;
  opacity: 0;
  transform: translateX(-40px);
}

.journey-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.journey-content {
  flex: 1;
  animation: fadeInRight 1s ease-out forwards;
  opacity: 0;
  transform: translateX(40px);
}

.journey-content h2 {
  font-size: 36px;
  color: #3e4095;
  margin-bottom: 20px;
}

.journey-content p {
  font-size: 18px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
}

.journey-content ul {
  list-style: none;
  padding: 0;
}

.journey-content ul li {
  font-size: 17px;
  color: #222;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.journey-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3e4095;
  font-weight: bold;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.our-process {
  padding: 80px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.process-header h2 {
  display: inline-block;
  padding: 15px 25px;
  background-color: #e4edff;
  color: #3FB5FD;
  font-size: 25px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
  animation: fadeInUp 0.8s ease forwards;
}

.process-header p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes slideFade {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Icon rotating animation */
@keyframes iconSpin {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(20deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* Text popping (heading) */
@keyframes popUp {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.process-step i {
  font-size: 40px;
  color: #3FB5FD;
  padding-bottom: 5%;

}

.step-box {
  flex: 1 1 calc(25% - 30px);
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.step-box.in-view {
  opacity: 1;
  transform: translateY(0);
}

.step-box:hover {
  transform: translateY(-10px);
}

.step-box i {
  font-size: 40px;
  color: #3e4095;
  margin-bottom: 15px;
  margin-right: 80%;
  animation: iconSpin 3s ease-in-out infinite;
}

.step-box h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
  text-align: justify;
  animation: popUp 1s ease-in-out forwards;
  animation-delay: 0.4s;
}

.step-box ul {
  list-style: none;
  padding: 0;
}

.step-box ul li {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  text-align: justify;
  animation: fadeIn 0.6s ease-in-out forwards;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-box ul li::before {
  content: "✔";
  color: #3e4095;
  position: absolute;
  left: 0;
  top: 0;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-section {
  padding: 60px 20px;
  background: #f9fbff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-title {
  text-align: center;
  color: #3FB5FD;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  cursor: pointer;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  background-color: #e4edff;
  color: #3e4095;
  border-radius: 12px 12px 0 0;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: #f0f7ff;
  border-radius: 0 0 12px 12px;
  padding: 0 25px;
}

.faq-answer p {
  margin: 15px 0;
  color: #333;
  line-height: 1.6;
}

/* SOFTWARE CODE START  */

.software-intro {
  position: relative;
  background-image: url('./IMAGE/about\ img\ 1.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.software-intro .software-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(89deg, rgb(0 85 255 / 53%) 15.79%, rgb(0 0 0 / 5%) 91.12%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  color: white;
  z-index: 1;
}

.software-intro h1,
.software-intro p {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s forwards;
}

.software-intro h1 {
  animation-delay: 0.5s;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  z-index: 2;
}

.software-intro p {
  animation-delay: 1s;
  font-size: 20px;
  z-index: 2;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* softeare section 2 */
.software-section {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 10px;
  gap: 50px;
  align-items: center;
  transition: all 0.3s ease;
}

.content-left {
  flex: 1;
  max-width: 600px;
  padding: 20px;
}

.content-left h2 {
  font-size: 36px;
  color: #3e4095;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

.content-left p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.content-left h3 {
  font-size: 24px;
  color: #3e4095;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.content-left ul {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

.content-left ul li {
  font-size: 18px;
  color: #555;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: all 0.3s ease;
}

.content-left ul li i {
  color: #3FB5FD;
  font-size: 22px;
}

.content-left ul li:hover {
  color: #3FB5FD;
}

.content-right {
  flex: 1;
  max-width: 600px;
  text-align: center;
  transition: transform 0.3s ease;
}

.content-right img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.content-right img:hover {
  transform: scale(1.05);
}



.software-section:hover .content-left {
  transform: translateX(10px);
}

.software-section:hover .content-right {
  transform: translateX(-10px);
}


.software-details {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 10px;
  gap: 40px;
  align-items: center;
  background-color: #f4f7fc;
}

.left-image {
  flex: 1;
  max-width: 600px;
}

.left-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.right-text {
  flex: 1;
  max-width: 600px;
  padding: 20px;
}

.right-text h2 {
  color: #3e4095;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.right-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.right-text h3 {
  color: #3e4095;
  font-size: 24px;
  margin-top: 40px;
}

.right-text ul {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

.right-text ul li {
  font-size: 18px;
  color: #555;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: all 0.3s ease;
}

.right-text ul li i {
  color: #3FB5FD;
  font-size: 20px;
}

.right-text ul li:hover {
  color: #3FB5FD;
}

/* ////////// */
.how-it-works {
  background-color: #f4f7fc;
  padding: 80px 20px;
  text-align: center;
}

.section-heading {
  font-size: 36px;
  color: #0a0a23;
  margin-bottom: 60px;
}



.step {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  max-width: 260px;
  transition: transform 0.3s ease-in-out;
  text-align: center;
}

.step:hover {
  transform: translateY(-10px);
}

.step-icon {
  font-size: 40px;
  color: #3FB5FD;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 24px;
  color: #0a0a23;
  margin-bottom: 20px;
}

.step p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

/* ///// */

.why-choose-us {
  background-color: #f7f8fa;
  padding: 60px 20px;
}

.website-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-top: 0px;
  margin-left: 0px !important;
  margin-right: 0px !important;
  /* border: 5px solid red; */
}

.left-side {
  width: 50%;
  padding-right: 20px;
}

.section-title {
  font-size: 36px;
  color: #0a0a23;
  margin-bottom: 20px;
}

.section-description {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.benefit {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.icon {
  background-color: #3FB5FD;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 25px;
  margin-right: 20px;
  transition: background-color 0.3s ease;
}

.benefit:hover .icon {
  background-color: #006eff;
}

.text h3 {
  font-size: 24px;
  color: #0a0a23;
  margin-bottom: 10px;
}

.text p {
  font-size: 16px;
  color: #555;
}

.right-side {
  width: 45%;
}

.right-side img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ./// */
.info-section {
  padding: 0px 5%;
}

.info-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.software-info-left,
.info-right {
  flex: 1;
  min-width: 300px;
}

.website-info-left img,
.info-right img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.section-title {
  font-size: 28px;
  color: #3e4095;
  margin-bottom: 20px;
}

/* Section 1: Image Left, Text Right */
.info-container .software-info-left {
  order: 1;
  /* Image on left */
}

.info-container .info-right {
  order: 2;
  /* Text on right */
}

/* Reverse layout for Section 2: Image Right, Text Left */
.info-container.reverse .software-info-left {
  order: 2;
  /* Text on left */
}

.info-container.reverse .info-right {
  order: 1;
  /* Image on right */
}

.info-image img {
  width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
}

/* .////////// */
.consultancy-cta {
  background: linear-gradient(135deg, #3FB5FD, #1F78B4);
  padding: 50px 20px;
  text-align: center;
  color: #fff;
  /* border-radius: 16px; */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin: 0px auto;
  max-width: 1500px;
}

.consultancy-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.consultancy-cta p {
  font-size: 1.1rem;
  /* margin-bottom: 35px; */
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background-color: #ffffff;
  color: #1F78B4;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5%;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: #1F78B4;
  color: white;
  transform: scale(1.05);
}

.info-section {
  background-color: #fff;
  padding-top: 60px;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 0px;
}

/* Container for Left Image and Right Text */
.info-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  margin-bottom: 60px;
}

/* Left Section: Image */
.website-info-left,
.info-right {
  flex: 1;
  min-width: 300px;
}

/* Left Image Style */
.website-info-left img {
  width: 90%;
  height: auto;
  border-radius: 10px;
}

/* Section Title */
.section-title {
  font-size: 28px;
  color: #3FB5FD;
  margin-bottom: 20px;
}

/* Section Points List */
.section-points {
  margin-top: 20px;
  font-size: 18px;
  color: #333;
}

.section-points ul {
  list-style: none;
  padding-left: 0;
}

.section-points ul li {
  margin-bottom: 10px;
  position: relative;
}

.section-points ul li::before {
  content: "•";
  position: absolute;
  left: -20px;
  color: #3e4095;
}


/* website code start */

.website-intro {
  position: relative;
  background-image: url('./IMAGE/about\ img\ 1.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.website-intro .website-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(89deg, rgb(0 85 255 / 53%) 15.79%, rgb(0 0 0 / 5%) 91.12%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  z-index: 1;
}

.website-intro h1,
.website-intro p {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s forwards;
}

.website-intro h1 {
  animation-delay: 0.5s;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  z-index: 2;
}

.website-intro p {
  animation-delay: 1s;
  font-size: 20px;
  z-index: 2;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.website-services {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 50px;
  gap: 40px;
  background: #f8f9ff;
  animation: fadeInUp 1s ease-in-out;
}

.website-content-left {
  flex: 1;
}

.website-content-left h2 {
  color: #3e4095;
  margin-bottom: 20px;
}

.website-content-left ul {
  list-style: none;
  padding: 0;
}

.website-content-left li {
  margin: 10px 0;
  font-size: 16px;
}

.website-content-left i {
  color: #3FB5FD;
  margin-right: 10px;
}

.website-content-right {
  flex: 1;
  text-align: right;
}

.website-content-right img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: zoomIn 1s ease-in-out;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.web-dev-process {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.web-dev-process-heading {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: black;
}

.process-steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.process-step {
  width: 22%;
  background-color: #fff;
  padding: 30px;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}


.process-step h3 {
  font-size: 1.4em;
  margin: 20px 0;
}

.process-step p {
  font-size: 1em;
  color: #555;
  text-align: justify;
}

.process-icon {
  font-size: 3em;
  color: #3FB5FD;
}

.why-choose-web {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
  /* margin-right: 4%; */
}

.web-left-info {
  width: 60%;
  margin: 0 auto;
  padding-right: 20px;
}

.web-section-title {
  font-size: 31px;
  margin-bottom: 20px;
  color: #3FB5FD;
  text-align: initial;
  padding-bottom: 5%;
  /* border:2px solid red; */
}

.web-left-info p {
  /* border: 2px solid red; */
  text-align: justify;
}

.web-benefit {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  text-align: left;
}

.web-icon {
  font-size: 2.5em;
  color: #3FB5FD;
  margin-right: 20px;
}

.web-text {
  font-size: 1.1em;
}

.web-text h3 {
  font-size: 1.3em;
  color: #333;
}

.web-right-img {
  width: 30%;
  margin-left: 20px;
}

.web-right-img img {
  width: 100%;
  border-radius: 8px;
}

.web-info-section {
  background-color: #f9f9f9;
  padding: 10px 50px;
  text-align: justify;
}

.info-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.business-info-left,
.info-right {
  width: 45%;
}

.business-info-left h2,
.info-right h2 {
  font-size: 2.0rem;
  margin-bottom: 20px;
  color: #3FB5FD;
}

.business-info-left p,
.info-right p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
  text-align: justify;
}

.info-image {
  margin-top: 30px;
  margin-bottom: 5%;
}

.info-image img {
  width: 100%;
  max-width: 1400px;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

/* BUSINSS CODE START */

.business-intro {
  position: relative;
  background-image: url('./IMAGE/about\ img\ 1.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.business-intro .business-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(89deg, rgb(0 85 255 / 53%) 15.79%, rgb(0 0 0 / 5%) 91.12%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  color: white;
  z-index: 1;
}

.business-intro h1,
.business-intro p {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s forwards;
}

.business-intro h1 {
  animation-delay: 0.5s;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  z-index: 2;
}

.business-intro p {
  animation-delay: 1s;
  font-size: 20px;
  z-index: 2;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* softeare section 2 */
.business-section {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 10px;
  gap: 0px;
  align-items: center;
  transition: all 0.3s ease;
}

.business-left {
  flex: 1;
  max-width: 600px;
  padding: 20px;
}

.business-left h2 {
  font-size: 36px;
  color: #3e4095;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}

.business-left p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.business-left h3 {
  font-size: 24px;
  color: #3e4095;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.business-left ul {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

.business-left ul li {
  font-size: 18px;
  color: #555;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: all 0.3s ease;
}

.business-left ul li i {
  color: #3FB5FD;
  font-size: 22px;
}

.business-left ul li:hover {
  color: #3FB5FD;
}

.business-right {
  flex: 1;
  max-width: 600px;
  text-align: center;
  transition: transform 0.3s ease;
}

.business-right img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.business-right img:hover {
  transform: scale(1.05);
}

.business-section:hover .business-left {
  transform: translateX(10px);
}

.business-section:hover .business-right {
  transform: translateX(-10px);
}

.business-details {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 10px;
  gap: 40px;
  align-items: center;
  background-color: #f4f7fc;
}

.business-image {
  flex: 1;
  max-width: 600px;
}

.business-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.business-text {
  flex: 1;
  max-width: 600px;
  padding: 20px;
}

.business-text h2 {
  color: #3e4095;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.business-text h3 {
  color: #3e4095;
  font-size: 24px;
  margin-top: 10px;
}

.business-text ul {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

.business-text ul li {
  font-size: 18px;
  color: #555;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: all 0.3s ease;
}

.business-text ul li i {
  color: #3FB5FD;
  font-size: 20px;
}

.business-text ul li:hover {
  color: #3FB5FD;
}

/* ////////// */
.business-it-works {
  background-color: #f4f7fc;
  padding: 80px 20px;
  text-align: center;
}

.business-heading {
  font-size: 36px;
  color: #0a0a23;
  margin-bottom: 60px;
}

.business-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.business {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  max-width: 260px;
  transition: transform 0.3s ease-in-out;
  text-align: center;
}

.business:hover {
  transform: translateY(-10px);
}

.business h3 {
  font-size: 24px;
  color: #0a0a23;
  margin-bottom: 20px;
}

.business p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ///// */

.business-choose-us {
  background-color: #f7f8fa;
  padding: 60px 20px;
  height: 125vh;
}

.business-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.business-side {
  width: 50%;
  padding-right: 20px;
}


.business-description {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.business-benefit {
  display: flex;
  align-items: center;
  height: 20vh;
  margin-top: 30px;

}

.business-icon {
  color: #3FB5FD;
  padding: 9px;
  border-radius: 50%;
  font-size: 30px;
  margin-right: 5px;
  transition: background-color 0.3s ease;
}

.business-benefit:hover .icon {
  background-color: #006eff;
}

.business-text p {
  font-size: 15px;
  color: #555;
}

.business-side {
  width: 50%;
  padding-right: 20px;
}


.business-side-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ./// */
.business-section {
  padding-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
  background-color: #f9f9f9;
}

.business-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.software-info-left,
.info-right {
  width: 48%;
}

.software-info-left p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.business-title {
  font-size: 30px;
  color: #333;
  margin-bottom: 20px;
}

.business-info-left p,
.info-right p {
  font-size: 18px;
  color: #555;
  line-height: 1.5;
}

.business-image {
  text-align: center;
}

.business-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}



/* ADVANCE TOOL CODE START */

.advance-intro {
  position: relative;
  background-image: url('./IMAGE/about\ img\ 1.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.advance-intro .advance-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(89deg, rgb(0 85 255 / 53%) 15.79%, rgb(0 0 0 / 5%) 91.12%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  z-index: 1;
}

.advance-intro h1,
.advance-intro p {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s forwards;
}

.advance-intro h1 {
  animation-delay: 0.5s;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  z-index: 2;
}

.advance-intro p {
  animation-delay: 1s;
  font-size: 20px;
  z-index: 2;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* section */
.advance-tools-wrapper,
.advanced-tools-section {
  background-color: #f7fbff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.advance-tools-wrapper .section-header,
.advanced-tools-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.advance-tools-wrapper .section-title,
.advanced-tools-section .tools-title {
  font-size: 32px;
  color: #3e4095;
  margin-bottom: 10px;
  font-weight: bold;
  /* margin-top: -10%; */
}

.advance-tools-wrapper .section-description,
.advanced-tools-section .tools-description {
  font-size: 19px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.advance-tools-container,
.tools-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.tools-content {
  padding-top: 5%;
}

.section-header {
  padding-top: 5%;
}

.advance-tools-left,
.tools-left {
  flex: 1 1 50%;
}

.advance-tools-right,
.tools-right {
  flex: 1 1 45%;
  text-align: center;
}

.advance-tools-subtitle {
  font-size: 24px;
  color: #3FB5FD;
  margin-bottom: 15px;
}

.advance-tools-desc {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.advance-tools-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.advance-tools-list li {
  margin-bottom: 10px;
  font-size: 17px;
  color: #333;
  padding-left: 25px;
  position: relative;
}

.advance-tools-list li::before {
  content: "✔";
  color: #3FB5FD;
  position: absolute;
  left: 0;
}

.advance-tools-btn,
.tools-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #3FB5FD;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.advance-tools-btn:hover,
.tools-button:hover {
  background-color: #36a4e8;
}

.advance-tools-img,
.tools-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.approach-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.approach-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.approach-left {
  flex: 1;
  margin-right: 30px;
}

.approach-image {
  width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.approach-right {
  flex: 1;
}

.approach-title {
  font-size: 2.5rem;
  color: #3e4095;
  margin-bottom: 20px;
  font-weight: bold;
}

.approach-description {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.approach-list {
  list-style-type: none;
  padding: 0;
}

.approach-list li {
  font-size: 1.125rem;
  color: #3FB5FD;
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.approach-list li::before {
  content: "✔";
  margin-right: 10px;
  color: #3e4095;
  font-size: 1.2rem;
}

.process-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.process-title {
  font-size: 32px;
  color: #3e4095;
  margin-bottom: 40px;
  font-weight: bold;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  background-color: #f0f7ff;
  border-radius: 12px;
  padding: 30px 20px;
  flex: 1 1 220px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: inline-block;
  background-color: #3FB5FD;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.step-title {
  font-size: 20px;
  color: #3e4095;
  margin-bottom: 10px;
}

.step-description {
  font-size: 15px;
  color: #555;
}

/* === Features Section === */
.features-section {
  background-color: #f7fbff;
  padding: 60px 20px;
  text-align: center;
}

.features-title {
  font-size: 32px;
  color: #3e4095;
  margin-bottom: 40px;
  font-weight: bold;
}

.features-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  flex: 1 1 260px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
}

.feature-item i {
  font-size: 40px;
  color: #3FB5FD;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 20px;
  color: #3e4095;
  margin-bottom: 10px;
}

.feature-description {
  font-size: 15px;
  color: #555;
}

/* DIGITAL CODE START  */

.digital-intro {
  position: relative;
  background-image: url('./IMAGE/about\ img\ 1.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.digital-intro .digital-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(89deg, rgb(0 85 255 / 53%) 15.79%, rgb(0 0 0 / 5%) 91.12%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  z-index: 1;
}

.digital-intro h1,
.digital-intro p {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s forwards;
}

.digital-intro h1 {
  animation-delay: 0.5s;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  z-index: 2;
}

.digital-intro p {
  animation-delay: 1s;
  font-size: 20px;
  z-index: 2;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.digital-data-analysis-wrapper {
  padding: 60px 50px;
  background-color: #f4f7fc;
}

.digital-data-header {
  text-align: center;
  margin-bottom: 40px;
}

.digital-data-title {
  font-size: 36px;
  font-weight: bold;
  color: #3e4095;
}

.digital-data-description {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

/* Container for the section */
.digital-data-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.digital-data-left {
  width: 50%;
}

.digital-data-subtitle {
  font-size: 28px;
  color: #3e4095;
  margin-bottom: 20px;
}

.digital-data-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.digital-data-list {
  list-style: none;
  padding: 0;
}

.digital-data-list li {
  font-size: 16px;
  color: #3FB5FD;
  margin-bottom: 10px;
  padding-left: 8%;
  position: relative;
}

.digital-data-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 2px;
  top: 2px;
  color: #3FB5FD;
  font-size: 16px;
}

.digital-data-right {
  width: 45%;
}

.digital-data-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Empower Section */
.digital-empower-section {
  background-color: #e4edff;
  padding: 60px 50px;
}

.empower-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.empower-left {
  width: 50%;
}

.empower-left p {
  font-size: 20px;
  color: #333;
  text-align: justify;
}

.empower-title {
  font-size: 32px;
  color: #3e4095;
}

.empower-description {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-top: 20px;
}

.empower-right {
  width: 45%;
}

.empower-img {
  width: 90%;
  height: 70vh;
  border-radius: 8px;
}

/* Data Approach Section */
.data-approach-section {
  padding: 60px 50px;
}

.data-approach-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.data-approach-left {
  width: 50%;
}

.data-approach-title {
  font-size: 28px;
  color: #3e4095;
  margin-bottom: 20px;
}

.data-approach-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.data-approach-list {
  list-style: none;
  padding: 0;
}

.data-approach-list li {
  position: relative;
  font-size: 16px;
  color: #3FB5FD;
  margin-bottom: 10px;
  padding-left: 8%;
}

.data-approach-list li::before {
  content: "\f00c";
  /* Font Awesome check */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 2px;
  top: 2px;
  color: #3FB5FD;
  /* or your primary color */
  font-size: 16px;
}

.data-approach-right {
  width: 45%;
}

.data-approach-img {
  width: 90%;
  height: 70vh;
  border-radius: 8px;
}

/* Data Process Section */
.data-process-section {
  padding: 60px 20px;
  background-color: #f4f7fc;
}

.data-process-title {
  text-align: center;
  font-size: 32px;
  color: #3e4095;
  margin-bottom: 40px;
}

.data-process-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.data-process-step {
  width: 23%;
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.data-process-step i {
  font-size: 40px;
  color: #3FB5FD;
  margin-bottom: 10px;
}

.data-step-title {
  font-size: 20px;
  color: #3e4095;
  margin-bottom: 10px;
}

.data-step-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  text-align: justify;
}

/* Data Features Section */
.data-features-section {
  padding: 60px 20px;
  background-color: #e4edff;
}

.data-features-title {
  text-align: center;
  font-size: 32px;
  color: #3e4095;
  margin-bottom: 40px;
}

.data-features-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.data-feature-item {
  width: 30%;
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.data-feature-item i {
  font-size: 40px;
  color: #3FB5FD;
  margin-bottom: 10px;
}

.data-feature-title {
  font-size: 20px;
  color: #3e4095;
  margin-bottom: 10px;
}

.data-feature-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  text-align: justify;
}

/* TESTING CODE START  */

.testing-intro {
  position: relative;
  background-image: url('./IMAGE/about\ img\ 1.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.testing-intro .testing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(89deg, rgb(0 85 255 / 53%) 15.79%, rgb(0 0 0 / 5%) 91.12%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  z-index: 1;
}

.testing-intro h1,
.testing-intro p {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s forwards;
}

.testing-intro h1 {
  animation-delay: 0.5s;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  z-index: 2;
}

.testing-intro p {
  animation-delay: 1s;
  font-size: 20px;
  z-index: 2;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* section */
.qa-testing-wrapper,
.qa-empower-section,
.qa-approach-section,
.qa-process-section,
.qa-features-section {
  padding: 50px 5%;
  background-color: #f5f8ff;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.qa-testing-title,
.empower-title,
.qa-approach-title,
.qa-process-title,
.qa-features-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #3FB5FD;
  text-align: center;
}

.qa-testing-description,
.empower-description,
.qa-approach-desc {
  font-size: 18px;
  line-height: 1.7;
  max-width: 1000px;
  margin: 0 auto 40px auto;
  text-align: justify;
}

.qa-testing-container,
.empower-content,
.qa-approach-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.qa-testing-left,
.empower-left,
.qa-approach-right {
  flex: 1 1 500px;
}

.qa-testing-right,
.empower-right,
.qa-approach-left {
  flex: 1 1 400px;
}

.qa-testing-img,
.empower-img,
.qa-approach-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.qa-testing-img:hover,
.empower-img:hover,
.qa-approach-img:hover {
  transform: scale(1.05);
}

.qa-testing-subtitle {
  font-size: 26px;
  color: #3e4095;
  margin-bottom: 20px;
}

.qa-testing-desc {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.qa-testing-list,
.qa-approach-list {
  list-style: none;
  padding: 0;
}

.qa-testing-list li,
.qa-approach-list li {
  margin-bottom: 12px;
  font-size: 16px;
  display: flex;
  align-items: center;
  color: #333;
}

.qa-testing-list li i,
.qa-approach-list li i {
  color: #3FB5FD;
  margin-right: 10px;
  font-size: 18px;
}

.qa-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.qa-process-step {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.qa-process-step:hover {
  transform: translateY(-8px);
}

.qa-step-title {
  font-size: 20px;
  color: #3e4095;
  margin: 15px 0 10px;
}

.qa-step-desc {
  font-size: 17px;
  color: #555;
  text-align: justify;
}

.qa-process-step i {
  font-size: 32px;
  color: #3FB5FD;
}

.qa-features-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.qa-feature-item {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.qa-feature-item:hover {
  transform: scale(1.05);
}

.qa-feature-item i {
  font-size: 30px;
  color: #3FB5FD;
  margin-bottom: 15px;
}

.qa-feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #3e4095;
  margin-bottom: 10px;
}

.qa-feature-desc {
  font-size: 15px;
  color: #666;
}

/* UI/US DESIGN  CODE START  */

.design-intro {
  position: relative;
  background-image: url('./IMAGE/about\ img\ 1.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.design-intro .design-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(89deg, rgb(0 85 255 / 53%) 15.79%, rgb(0 0 0 / 5%) 91.12%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  z-index: 1;
}

.design-intro h1,
.design-intro p {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s forwards;
}

.design-intro h1 {
  animation-delay: 0.5s;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  z-index: 2;
}

.design-intro p {
  animation-delay: 1s;
  font-size: 20px;
  z-index: 2;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* section */

.uiux-wrapper,
.uiux-empower-section,
.uiux-approach-section,
.uiux-process-section,
.uiux-features-section {
  padding: 80px 5%;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.uiux-title {
  font-size: 36px;
  color: #3FB5FD;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 2%;
}

.uiux-description,
.uiux-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.uiux-container,
.uiux-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.uiux-left,
.uiux-approach-right {
  flex: 1;
}

.uiux-left p {
  font-size: 18px;
}

.uiux-right,
.uiux-approach-left {
  flex: 1;
  text-align: center;
}

.uiux-img,
.uiux-approach-img {
  width: 80vh;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.uiux-img:hover,
.uiux-approach-img:hover {
  transform: scale(1.05);
}

.uiux-subtitle {
  font-size: 28px;
  font-weight: 600;
  color: #3FB5FD;
  margin-bottom: 10px;
}

.uiux-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.uiux-list li {
  font-size: 16px;
  color: #222;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

.uiux-list li i {
  color: #3FB5FD;
  position: absolute;
  left: 0;
  top: 2px;
}


.uiux-empower-section {
  background-color: #e4edff;

  /* border-bottom: 5px solid #3FB5FD; */
}


.uiux-process-section {
  background: #f8faff;
  text-align: center;
}

.uiux-process-title {
  font-size: 32px;
  color: #3FB5FD;
  margin-bottom: 50px;
}

.uiux-process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.uiux-process-step {
  background: #fff;
  border: 1px solid #dce9ff;
  padding: 25px;
  flex: 1 1 220px;
  max-width: 260px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.uiux-process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(63, 181, 253, 0.25);
}

.uiux-process-step i {
  font-size: 32px;
  color: #3FB5FD;
  margin-bottom: 12px;
}

.uiux-step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.uiux-step-desc {
  font-size: 15px;
  color: #555;
  text-align: justify;
}


.uiux-features-section {
  background-color: #e4edff;
  text-align: center;
  padding-bottom: 100px;
}

.uiux-features-title {
  font-size: 32px;
  color: #3FB5FD;
  margin-bottom: 50px;
  font-weight: 700;
}

.uiux-features-content {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.uiux-feature-item {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  flex: 1 1 250px;
  max-width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.uiux-feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(63, 181, 253, 0.2);
}

.uiux-feature-item i {
  font-size: 36px;
  color: #3FB5FD;
  margin-bottom: 15px;
}

.uiux-feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.uiux-feature-desc {
  font-size: 16px;
  color: #444;
  text-align: justify;
}


/* CONTACT PAGE START  */

.contact-intro {
  position: relative;
  background-image: url('./IMAGE/about\ img\ 1.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-intro .contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(89deg, rgb(0 85 255 / 53%) 15.79%, rgb(0 0 0 / 5%) 91.12%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  z-index: 1;
}

.contact-intro h1,
.contact-intro p {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s forwards;
}

.contact-intro h1 {
  animation-delay: 0.5s;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  z-index: 2;
}

.contact-intro p {
  animation-delay: 1s;
  font-size: 20px;
  z-index: 2;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* section */

.email-location {
  background-color: #f0f0f0;
  padding: 90px;
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.contact-box {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  width: 342px;
  transition: background-color 0.3s, color 0.3s;
  height: 20vh;
}

.contact-box i {
  font-size: 24px;
  color: #3FB5FD;
}

.contact-box span {
  font-size: 18px;
}

.contact-box:hover {
  background-color: #3FB5FD;
  color: white;
}

/* Hover effect for contact-box */
.contact-box.email:hover {
  background: linear-gradient(89deg, rgb(0 85 255 / 53%) 15.79%, rgb(0 0 0 / 5%) 91.12%);
  color: white;
}

.contact-box.location:hover {
  background: linear-gradient(89deg, rgb(0 85 255 / 53%) 15.79%, rgb(0 0 0 / 5%) 91.12%);
  color: white;
}

.contact-box.call:hover {
  background: linear-gradient(89deg, rgb(0 85 255 / 53%) 15.79%, rgb(0 0 0 / 5%) 91.12%);
  color: white;
}

/* Contact Us Section */
.contact-us {
  text-align: center;
  margin: 50px 0;
}

.contact-us h2 {
  background-color: #e4edff;
  color: #3FB5FD;
  font-size: 25px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 20px 46px;
}

.contact-us p {
  font-size: 35px;
  color: black;
  font-weight: bold;
}

/* Contact Form Section */
.contact-form {

  background: #ffffff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgb(0 0 0 / 0.1);
  width: 50%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.form-group {
  position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #3eb5ff;
  box-shadow: 0 0 8px rgb(62 64 149 / 0.25);
}

.form-group label {
  position: absolute;
  left: 14px;
  top: 16px;
  color: #999;
  font-size: 15px;
  background: #fff;
  padding: 0 6px;
  border-radius: 3px;
  pointer-events: none;
  transition: 0.3s ease all;
  font-weight: 500;
  user-select: none;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
  top: -10px;
  font-size: 12px;
  color: #3FB5FD;
  font-weight: 700;
}

/* Label */
label {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #999;
  font-size: 15px;
  pointer-events: none;
  background: white;
  padding: 0 5px;
  transition: 0.3s ease all;
  border-radius: 3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1.8px solid #ccc;
  border-radius: 10px;
  padding: 16px 14px 16px 14px;
  font-size: 16px;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.3s ease;
  resize: vertical;
  letter-spacing: 0.4px;
}

.form-group textarea {
  min-height: 90px;
}

button[type="submit"] {
  width: 100%;
  padding: 16px 0;
  background: linear-gradient(to right, #3eb5ff, #006eff);
  color: white;
  border: none;
  border-radius: 12px;
  /* color: #fff; */
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgb(62 64 149 / 0.4);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button[type="submit"]:hover {
  background: white;
  color: #3eb5ff;
  transform: scale(1.05);
}

/* Map Section */
.map {
  margin-top: 50px;
}

iframe {
  margin-left: 2%;
  margin-right: 2%;
  width: 96%;
  margin-bottom: 2%;
}

.contact-container {
  display: flex;
  /* max-width: 1500px; */
  width: 80%;
  margin: 40px 10%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: white;
  gap: 0;
  height: 90vh;
}

.contact-image {
  /* flex: 1; */
  display: flex;
  align-items: center;
  /* justify-content: center; */
  overflow: hidden;
  width: 60%;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* SERVICE CODE css */

.service-intro {
  position: relative;
  background-image: url('./IMAGE/about\ img\ 1.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.service-intro .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(89deg, rgb(0 85 255 / 53%) 15.79%, rgb(0 0 0 / 5%) 91.12%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  z-index: 1;
}

.service-intro h1,
.service-intro p {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s forwards;
}

.service-intro h1 {
  animation-delay: 0.5s;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  z-index: 2;
}

.service-intro p {
  animation-delay: 1s;
  font-size: 20px;
  z-index: 2;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* section */

.service-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 5%;
  gap: 50px;
  background-color: #fff;
  border-radius: 20px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  flex-wrap: wrap;
}

.service-block:hover {
  transform: translateY(-5px);
}

.service-image {
  flex: 1 1 45%;
  text-align: center;
}

.service-image img {
  width: 80vh;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-text {
  flex: 1 1 45%;
}

.service-text h2 {
  font-size: 32px;
  color: #3e4095;
  margin-bottom: 20px;
}

.service-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
  text-align: justify;
}

.service-text a {
  display: inline-block;
  text-decoration: none;
  padding: 12px 25px;
  background-color: #3FB5FD;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-text a:hover {
  background-color: #349bdc;
  transform: translateY(-2px);
}

/* PRIVACY CODE CSS */
.policy-intro {
  position: relative;
  background-image: url('./IMAGE/about\ img\ 1.jpg');

  background-size: cover;
  background-position: center;
  height: 70vh;

  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.policy-intro .policy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(89deg, rgb(0 85 255 / 53%) 15.79%, rgb(0 0 0 / 5%) 91.12%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  color: white;
  z-index: 1;
}

.policy-intro h1,
.policy-intro p {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s forwards;
}

.policy-intro h1 {
  animation-delay: 0.5s;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  z-index: 2;
}

.policy-intro p {
  animation-delay: 1s;
  font-size: 20px;
  z-index: 2;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.privacy-wrapper {
  max-width: 1133px;
  margin: 0 5%;
  padding: 5% 30px;
  background-color: #fff;
  border-radius: 12px;
  /* box-shadow: 0 8px 24px rgb(0 0 0 / 6%); */
  line-height: 1.7;
}

.privacy-wrapper h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #3e4095;
  border-bottom: 3px solid #3e4095;
  display: inline-block;
  padding-bottom: 5px;
  text-align: center;
}

.privacy-intro {
  font-size: 1.1rem;
  margin-bottom: 30px;
  background-color: #e4edff;
  padding: 15px 20px;
  border-left: 4px solid #3e4095;
  border-radius: 6px;
}

.privacy-wrapper h2 {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #3FB5FD;
  border-left: 5px solid #3FB5FD;
  padding-left: 10px;
}

.privacy-wrapper p {
  margin-bottom: 15px;
}

.privacy-wrapper ul {
  padding-left: 20px;
  margin: 15px 0;
}

.privacy-wrapper li {
  margin-bottom: 10px;
}

.privacy-wrapper strong {
  color: #3e4095;
}

.privacy-wrapper section {
  margin-bottom: 40px;
}

.privacy-contact p strong {
  display: inline-block;
  width: 90px;
  color: #3FB5FD;
}

/* TERM CONDITION CSS */

.term-intro {
  position: relative;
  background-image: url('./IMAGE/about\ img\ 1.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.term-intro .term-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(89deg, rgb(0 85 255 / 53%) 15.79%, rgb(0 0 0 / 5%) 91.12%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  color: white;
  z-index: 1;
}

.term-intro h1,
.term-intro p {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s forwards;
}

.term-intro h1 {
  animation-delay: 0.5s;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  z-index: 2;
}

.term-intro p {
  animation-delay: 1s;
  font-size: 20px;
  z-index: 2;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* section */

.terms-wrapper {
  max-width: 1133px;
  margin: 0 5%;
  padding: 5% 30px;
  background-color: #fff;
  border-radius: 12px;
  line-height: 1.7;
}

.terms-wrapper h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #3e4095;
  border-bottom: 3px solid #3e4095;
  display: inline-block;
  padding-bottom: 5px;
}

.terms-intro {
  font-size: 1.1rem;
  margin-bottom: 30px;
  background-color: #e4edff;
  padding: 15px 20px;
  border-left: 4px solid #3e4095;
  border-radius: 6px;
}

.terms-wrapper h2 {
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #3FB5FD;
  border-left: 5px solid #3FB5FD;
  padding-left: 10px;
}

.terms-wrapper p {
  margin-bottom: 15px;
}

.terms-wrapper section {
  margin-bottom: 40px;
}

.terms-contact p strong {
  display: inline-block;
  width: 90px;
  color: #3FB5FD;
}

/* term / policy css */

.legal-info-section {
  background-color: #f8faff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.legal-info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.legal-box {
  flex: 1 1 45%;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.legal-box h2 {
  font-size: 1.6rem;
  color: #3e4095;
  margin-bottom: 15px;
}

.legal-box p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.read-more-btn {
  display: inline-block;
  background-color: #3FB5FD;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #319eda;
}

/* PROJECT CODE START  */

.project-intro {
  position: relative;
  background-image: url('./IMAGE/about\ img\ 1.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.project-intro .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(89deg, rgb(0 85 255 / 53%) 15.79%, rgb(0 0 0 / 5%) 91.12%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  z-index: 1;
}

.project-intro h1,
.project-intro p {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s forwards;
}

.project-intro h1 {
  animation-delay: 0.5s;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  z-index: 2;
}

.project-intro p {
  animation-delay: 1s;
  font-size: 20px;
  z-index: 2;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* section  */
.project-section {
  padding-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 0px;
  background-color: #f7f9fc;
  text-align: center;
}

.project-header h1 {
  background-color: #e4edff;
  color: #3FB5FD;
  font-size: 21px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 20px 46px;
}

.project-header p {
  color: black;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 42px;
}

.portfolio {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 20px;
}

.portfolio h1 {
  font-size: 2.8rem;
  color: #3e4095;
  margin-bottom: 30px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: scale(1.03);
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(62, 64, 149, 0.8);
  color: #fff;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.project-card:hover .overlay {
  opacity: 1;
}

.overlay p {
  font-size: 1.2rem;
  font-weight: bold;
}

/* Project Detail Page */
.portfolio {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: scale(1.05);
}

.project-card img {
  width: 100%;
  height: 50vh;
  display: block;
  transition: transform 0.4s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(62, 64, 149, 0.75); */
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  transition: opacity 0.3s ease;
}

.project-card:hover .overlay {
  opacity: 1;
}

.overlay p1 {
  color: red;
  padding-top: 18%;
  margin-left: -53%;
}


/* ////// */

.project-details {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 50px;
  background-color: #f4f6fc;
  font-family: sans-serif;
  color: #333;
  text-align: center;
}

.project-details h1 {
  font-size: 40px;
  text-align: center;
  color: #3FB5FD;
  font-weight: bolder;
  margin-bottom: 30px;
}

.project-details .top-image {
  width: 100%;
  max-width: 1400px;
  height: 300px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  padding-left: 5%;
  padding-right: 5%;
}

.project-text {
  max-width: 1099px;
  /* border: 2px solid red; */
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 5%;


}

.project-text h1 {
  font-size: 40px;
  color: #3e4095;
  margin-bottom: 20px;
  text-align: justify;
  font-weight: 500px;
}

.project-text p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.challenges-section {
  margin-top: 50px;
  max-width: 1124px;
  margin-left: 5%;
  margin-right: 5%;
  text-align: justify;
  /* border: 2px solid red; */
}

.challenges-section h2 {
  font-size: 28px;
  color: #3e4095;
  margin-bottom: 15px;
}

.challenges-section p {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.challenges-section ul {
  list-style-type: disc;
  padding-left: 20px;
}

.challenges-section ul li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* pss code css*/

.image-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

.banner-img {
  width: 90%;
  height: 85%;
  object-fit: cover;
  margin: 5%;
  margin-top: 0px;
}

/* ABOUT SECTION */
.pss-section {
  margin: 0px 5% 80px;
  padding: 0 20px;
  /* border: 2px solid red; */
}

.pss-section h2 {
  color: #3e4095;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
  border-bottom: 4px solid #3e4095;
  display: inline-block;
  padding-bottom: 8px;
}

.pss-section p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 40px;
}

/* FEATURES GRID */
.pss-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.pss-card {
  flex: 1 1 250px;
  background: #f5f7ff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(62, 64, 149, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.pss-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(62, 64, 149, 0.25);
}

.pss-icon {
  font-size: 3.5rem;
  margin-bottom: 18px;
}

.pss-card h3 {
  color: #3e4095;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 1.4rem;
}

.pss-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* VISION & MISSION */
.vision-mission {
  background: #e8ebff;
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto 80px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(62, 64, 149, 0.1);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.vision-box {
  flex: 1 1 450px;
  background: white;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(62, 64, 149, 0.05);
  transition: box-shadow 0.3s ease;
}

.vision-box:hover {
  box-shadow: 0 12px 30px rgba(62, 64, 149, 0.2);
}

.vision-box h3 {
  color: #3e4095;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 1.8rem;
}

.vision-box p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* TECH STACK */
.tech-stack {
  max-width: 1000px;
  margin: 0 5% 80px;
  padding: 0 20px;
}

.tech-stack h2 {
  color: #3e4095;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 30px;
  border-bottom: 4px solid #3e4095;
  display: inline-block;
  padding-bottom: 8px;
}

.tech-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.tech-icon {
  font-size: 4rem;
  color: #3e4095;
  text-align: center;
  width: 100px;
  user-select: none;
  transition: transform 0.3s ease;
  cursor: default;
}

.tech-icon:hover {
  transform: scale(1.2);
  color: #5a5cdf;
}

.tech-label {
  font-size: 1rem;
  margin-top: 10px;
  color: #222;
}

/* TESTIMONIALS */
.testimonials {
  background: #f5f7ff;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto 80px;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(62, 64, 149, 0.1);
}

.testimonials h2 {
  color: #3e4095;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 40px;
  border-bottom: 4px solid #3e4095;
  display: inline-block;
  padding-bottom: 8px;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 30px;
  padding-bottom: 10px;
}

.testimonial-card {
  flex: 0 0 320px;
  background: white;
  padding: 25px 30px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(62, 64, 149, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(62, 64, 149, 0.25);
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 18px;
}

.testimonial-author {
  font-weight: 700;
  color: #3e4095;
  font-size: 1.1rem;
}

/* CTA SECTION */
.cta-section {
  background: #3e4095;
  color: white;
  padding: 50px 20px;
  text-align: center;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* .cta-button {
  background: #5a5cdf;
  padding: 14px 36px;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 8px 20px rgba(90, 92, 223, 0.5);
}

.cta-button:hover {
  background: #474ccf;
  box-shadow: 0 12px 30px rgba(71, 76, 207, 0.7);
} */

/* SCROLLBAR HIDE for testimonial */
.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.live-website-link {
  text-align: center;
  margin: 40px 0;
  font-size: 18px;
  font-weight: 600;
}

.live-website-link a {
  color: #3e4095;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
  padding-bottom: 2px;
}

.live-website-link a:hover {
  border-bottom: 2px solid #3e4095;
}

/* GNK CSS CODE START  */
.gnk-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

.gnk-img {
  width: 90%;
  height: 85%;
  object-fit: cover;
  margin: 5%;
  margin-top: 5px;
}

.gnk-section {
  margin: 0px 5% 80px;
  padding: 0 20px;
  /* border: 2px solid red; */
}

.gnk-section h2 {
  color: #3e4095;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
  border-bottom: 4px solid #3e4095;
  display: inline-block;
  padding-bottom: 8px;
}

.gnk-section p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 40px;
}

/* OBICULE CODE CSS */
.obicule-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

.obicule-img {
  width: 90%;
  height: 85%;
  object-fit: cover;
  margin: 5%;
  margin-top: 6px;
}

.obicule-section {
  margin: 0px 5% 80px;
  padding: 0 20px;
  /* border: 2px solid red; */
}

.obicule-section h2 {
  color: #3e4095;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
  border-bottom: 4px solid #3e4095;
  display: inline-block;
  padding-bottom: 8px;
}

.obicule-section p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 40px;
}

/* aashakiran CODE CSS */
.aashakiran-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

.aashakiran-img {
  width: 90%;
  height: 85%;
  object-fit: cover;
  margin: 5%;
  margin-top: 0px;
}

.aashakiran-section {
  margin: 0px 5% 80px;
  padding: 0 20px;
  /* border: 2px solid red; */
}

.aashakiran-section h2 {
  color: #3e4095;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
  border-bottom: 4px solid #3e4095;
  display: inline-block;
  padding-bottom: 8px;
}

.aashakiran-section p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 40px;
}

/* aashakiran CODE CSS */
.aashakiran-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

.aashakiran-img {
  width: 90%;
  height: 85%;
  object-fit: cover;
  margin: 5%;
  margin-top: 0px;
}

.aashakiran-section {
  margin: 0px 5% 80px;
  padding: 0 20px;
  /* border: 2px solid red; */
}

.aashakiran-section h2 {
  color: #3e4095;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
  border-bottom: 4px solid #3e4095;
  display: inline-block;
  padding-bottom: 8px;
}

.aashakiran-section p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 40px;
}

/* aashakiran CODE CSS */
.agroha-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

.agroha-img {
  width: 90%;
  height: 85%;
  object-fit: cover;
  margin: 5%;
  margin-top: 0px;
}

.agroha-section {
  margin: 0px 5% 80px;
  padding: 0 20px;
  /* border: 2px solid red; */
}

.agroha-section h2 {
  color: #3e4095;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
  border-bottom: 4px solid #3e4095;
  display: inline-block;
  padding-bottom: 8px;
}

.agroha-section p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 40px;
}

/* ---------- Media Queriesc(429 or 361) ---------- */


/* HOME */
@media (max-width: 429px) {
  .service-block {
    padding: 30px 5%;
    gap: 30px;
  }

  .service-text h2 {
    font-size: 22px;
  }

  .service-text p {
    font-size: 14px;
  }

  .service-text a {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ----------- Responsive HOME ----------- */

@media(max-width:361px) {
  .container {
    flex-direction: column;
  }

  .testimonial-nav {
    top: 1500vh !important;
  }

  .service-section {
    margin-top: 211%;
    padding: 20px 10px;
  }

  .service-card {
    padding: 15px
  }

  .service-card a {
    font-size: 23px;
    text-align: justify;
  }

  .service-card p {
    font-size: 15px;
    text-align: left;
  }

  .list-style li {
    font-size: 20px;
  }

  .service-icon img {
    width: 30%;
    height: auto
  }

  .text-left {
    max-width: 100%;
  }

  .text-left h1 {
    font-size: 34px;
    margin-top: 30%;
    text-align: center;
    padding-left: 0px;
  }

  .text-left h2 {
    text-align: center;
    padding-left: 6%;
    line-height: 1.7;
  }

  .explore-btn {
    margin-left: 21%;
    padding: 18px 61px;
    font-size: 24px;
  }

  .review {
    margin-top: -77%;
    display: none;
  }

  .image-right img {
    width: 100%;
    height: 40vh;
  }

  .empowering-ideas {
    width: 100%;
    margin: 0px 0px;
    height: 765px;
    margin-top: -4%;
  }

  .tech-hero {
    flex-direction: column;
    padding: 50px 5px
  }

  .image-grid img {
    width: 46vh;
  }

  .overlay-image img {
    display: none;
  }

  .hero-right {
    width: 100%;
    margin-top: 100%;
  }

  .badgee {
    margin-left: 20%;
  }

  .hero-right h1 {
    text-align: center;
    font-size: 30px;
  }

  .experience-section {
    margin-top: 60%;
  }

  .counter-box {
    display: none;
  }

  .subtext {
    font-size: 30px;
    width: 100%;
    text-align: center;
    margin-left: 0px;
  }

  .experience-right {
    margin-top: -51%;
  }

  .experience-right h3 {
    font-size: 20px;
    color: #333;
  }

  .team-services-block {
    padding: 0px;
  }

  .team-image {
    margin: 0px;
  }

  .team-content {
    width: 89%;
    margin-bottom: 6%;
  }

  .about-container h1 {
    font-size: 35px;
    text-align: center
  }

  .about-cta {
    flex-direction: column;
    margin-left: -4% !important;
  }

  .zotech-about {
    flex-direction: column;
    padding: 15px 0px;
  }


  .bg-animation {
    display: none;
  }

  .about-left img {
    margin-top: 25%;
    height: 39vh;
    margin-left: -33%;
    max-width: 39vh;

  }

  .about-right {
    max-width: 76vh;
    margin-left: 2%;
    /* border: 2px solid red; */
    margin-top: 20%;
    text-align: center;
  }

  .about-features {
    flex-direction: column;
    gap: 20px;
  }

  .feature-box {
    margin-left: 10%;
  }

  .feature-box p {
    text-align: center;
  }

  .expert-team-subtitle {
    /* margin-top: 15%; */
    margin-left: 5%;
  }

  .expert-team-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .expert-member-image img {
    height: 50vh;
  }

  .hover-image {
    width: 40% !important;
    height: 35% !important;
  }

  .custom-section {
    text-align: center;
    padding: 45px 32px;
  }

  .empower-slider-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .empower-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .empower-slide {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .empower-slide img {
    width: 100%;
    display: block;
  }

  .testimonial-item {
    flex-direction: column;
  }

  .testimonial-box {
    padding: 10px 10px;
    margin-bottom: 5%;
  }

  .testimonial-image img {
    margin-right: 0%;
  }

  .testimonial-content .stars {
    text-align: center;
  }

  .testimonial-content {
    padding-left: 0%;
  }

  .testimonial-content p {
    text-align: center;
  }

  .testimonial-content h4,
  h2 {
    text-align: center;
  }

  .zotech-footer {
    padding: 50px 15px;
    padding-bottom: 0px;
  }

  .zotech-link-list li {
    padding-left: 0px;
  }

  .zotech-footer-links {
    margin: 0px 0px
  }

  .zotech-footer-grid {
    gap: 20px;
  }

  .about-section {
    padding: 50px 20px
  }

  .blue-line {
    height: 10vh;
    font-size: 15px;

  }

  .hero-right p {
    font-size: 17px;
  }

  /* ABOUT RESPONSIVE CODE  */
  .about-intro {
    height: 35vh;
  }

  .about-intro h1 {
    font-size: 35px;
  }

  .info-text h2 {
    margin-left: 2%;
  }

  .About-section {
    padding: 12px;
  }

  .About-container {
    flex-direction: column;
    gap: 0px;
    margin-top: 10%;
  }

  .info-text {
    padding-right: 0px;
    text-align: justify;
  }

  .journey-container {
    flex-direction: column;
  }

  .journey-section {
    padding: 20px 0;
  }

  .process-steps {
    flex-direction: column;
  }

  .our-process {
    padding: 20px 20px;
  }

  .info-image img {
    display: none;
  }

  /* SOFTWARE RESPONSIVE CODE  */
  .software-intro {
    height: 35vh;
  }

  .software-info-left p {
    padding: 15px;
    font-size: 20px;
  }

  .content-left p,
  .right-text p,
  .info-right p {
    font-size: 24px;
    text-align: justify;
    padding: 15px
  }

  .info-left p {
    font-size: 20px;
    text-align: justify;
    padding: 15px;
  }

  .website-info-left img {
    margin-left: 3%;
    width: 58vh;
  }

  .content-left ul li,
  .section-description,
  .text p {
    font-size: 24px;
  }

  .how-it-works {
    padding: 5% 5%;
  }

  .software-intro h1 {
    font-size: 35px;
  }

  .software-section {
    flex-direction: column;
    padding-top: 20px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .software-info-left {
    margin-top: 10% !important;
  }

  .content-left {
    padding: 10px;
  }

  .content-left h2 {
    font-size: 28px;
  }

  .content-right img {
    width: 57vh;
  }

  .software-details {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
  }

  .left-image img {
    width: 56vh;
  }

  .right-text h2 {
    font-size: 27px;
  }

  .right-text ul li {
    font-size: 23px;
  }

  .right-text {
    padding: 10px;
  }

  .step {
    max-width: 455px;
  }

  .step p {
    font-size: 20px;
  }

  .step h3 {
    font-size: 30px;
  }

  .why-choose-us {
    padding: 10px 10px;
  }

  .left-side {
    width: 100%;
  }

  .section-description {
    width: 100%;
    text-align: justify;
  }

  .text p {
    width: 100%;
    text-align: justify;
  }

  .right-side img {
    width: 57vh;
    margin-left: -66%;
  }

  .info-right img {
    width: 58vh;
    margin-left: 3%;
    height: 30vh;
  }

  /* WEBSITE RESPONSIVE CODE  */
  .website-intro {
    height: 35vh;
  }

  .website-intro h1 {
    font-size: 35px;
  }

  .website-services {
    flex-direction: column;
    padding: 50px 10px
  }

  .website-container {
    flex-direction: column;
  }

  .info-section {
    padding-top: 30px;
    padding-left: 0%;
    padding-right: 0%;
    /* margin-top: 65%; */
  }

  .website-content-left p {
    text-align: justify;
    font-size: 16px;
  }

  .website-content-left h3 {
    font-size: 21px;
  }

  .info-text p {
    padding-left: 10px;
    padding-right: 10px;
  }

  .info-text ul li {
    padding-left: 10px;
    padding-right: 10px;
  }

  .info-left img {
    width: 50vh;
    margin-left: 3%;
    margin-top: -7%;

    /* display: none; */
  }

  .section-points {
    padding: 15px;
  }

  .info-left h2 {
    font-size: 30px;
    margin-left: -4%;
    width: 100%;
    margin-top: 4%;
  }

  .info-right h2 {
    font-size: 30px;
    /* padding-top: 10%; */
    margin-left: -1%;
    width: 100%;
  }

  .web-dev-process {
    padding: 15px 10px;
  }

  .web-dev-process-heading {
    font-size: 2rem;
  }

  .process-step {
    margin-left: 1%;
    width: 47vh;
  }

  .why-choose-web {
    padding: 30px 10px;
  }

  .web-left-info {
    width: 100%;
  }

  .web-section-title {
    font-size: 2rem;
    text-align: center;
  }

  .web-right-img {
    margin-left: 0px;
    width: 62vh;
  }

  .web-right-img img {
    width: 52vh;
  }

  .web-info-section {
    padding: 20px 10px;
  }

  .info-right p {
    width: 100%;
    text-align: justify;
  }

  .faq-question {
    padding: 25px 5px;
  }

  .faq-question::after {
    right: 10px
  }

  /* BUSINESS RESPONSIVE CODE  */
  .business-intro {
    height: 35vh;
  }

  .business-right img {
    width: 45vh;
  }

  .business-intro h1 {
    font-size: 30px;
  }

  .business-left {
    padding: 10px;
  }

  .business-section {
    flex-direction: column;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 10px;
    padding-bottom: 40px;
    gap: 10px;
  }

  .business-left h2 {
    font-size: 25px;
  }

  .business-text {
    padding: 0px;
  }

  .business-text h2 {
    font-size: 25px;
  }

  .business-text p {
    font-size: 18px;
    color: #555;
    text-align: justify;
  }

  .business p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
  }

  .business-details {
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
  }

  .business {
    max-width: 200vh;
  }

  .business-container {
    flex-direction: column;
    gap: 0px;
  }

  .business-it-works {
    padding: 10px 20px;
  }

  .business-choose-us {
    padding: 50px 10px;
  }

  .business-side {
    width: 100%;
    padding-right: 0px;
  }

  .business-description {
    text-align: justify;
  }

  .business-info-left {
    width: 100%;
    text-align: justify;
    margin-top: 0%;
  }

  .info-right {
    width: 100%;
    text-align: justify;
    font-size: 20px;
  }

  .advance-intro {
    height: 35vh;
  }

  .advance-intro h1 {
    font-size: 35px;
  }

  .advance-tools-desc {
    font-size: 20px;
  }

  .advance-tools-list li {
    font-size: 24px;
  }

  .advance-tools-img,
  .tools-image {
    width: 55vh;
  }

  .process-step p,
  .step-title,
  .feature-description {
    text-align: center;
    font-size: 20px;
  }

  .approach-description,
  .approach-list li {
    font-size: 20px;
  }

  .advance-tools-wrapper .section-description,
  .advanced-tools-section .tools-description {
    /* border: 1px solid #000; */
    max-width: 52vh;
  }

  .advance-tools-left {
    margin-left: 3%;
  }

  .approach-content {
    flex-direction: column;
  }

  .approach-image {
    width: 52vh;
  }

  .process-section {
    padding: 10px 10px;
  }

  .approach-right {
    margin-top: 8%;
  }

  .zotech-link-list a {
    font-size: 18px;
  }

  /* DIGITAL RESPONSIVE START */
  .digital-intro {
    height: 35vh;
  }

  .digital-intro h1 {
    font-size: 35px;
  }

  .digital-data-analysis-wrapper {
    padding: 50px 15px;
  }

  .digital-data-header {
    text-align: justify;
  }

  .digital-data-container {
    flex-direction: column;
  }

  .digital-data-description,
  .digital-data-desc {
    font-size: 21px;
  }

  .data-step-title {
    font-size: 25px;
  }

  .digital-data-list li,
  .data-feature-desc {
    font-size: 22px;
  }

  .digital-data-left {
    width: 100%;
  }

  .digital-data-subtitle {
    font-size: 25px;
  }

  .digital-data-right {
    width: 100%;
  }

  .digital-data-img {
    width: 61vh;
  }

  .data-approach-section,
  .uiux-empower-section,
  .digital-empower-section {
    padding: 30px 15px;
  }

  .data-approach-content {
    flex-direction: column;
  }

  .data-approach-img {
    width: 59vh;
  }

  .data-approach-right {
    width: 100%;
  }

  .data-approach-title,
  .zotech-footer-title {
    font-size: 29px;
  }

  .data-approach-desc,
  .data-approach-list li,
  .data-step-desc {
    font-size: 25px;
  }

  .data-process-steps,
  .data-features-content,
  .uiux-container {
    flex-direction: column;
  }

  .data-process-step,
  .data-feature-item {
    width: 100%;
    height: 40vh;
  }

  .zotech-footer-text {
    width: 100%;
    font-size: 18px;
  }

  b,
  strong,
  p {
    font-size: 18px;
  }

  /* TESTING RESPONSIVE CODE  */
  .testing-intro {
    height: 35vh;
  }

  .testing-intro h1 {
    font-size: 35px;
  }

  .qa-testing-title {
    font-size: 30px;
  }

  .qa-testing-subtitle {
    font-size: 25px;
  }

  .qa-empower-section,
  .qa-process-section,
  .uiux-approach-section {
    padding: 0px 15px;
  }

  .empower-img {
    height: 40vh;
  }

  .qa-approach-title,
  .qa-process-title {
    font-size: 30px;
  }

  /* UI/UX RESPONSIVE CODE  */
  .design-intro {
    height: 35vh;
  }

  .design-intro h1 {
    font-size: 35px;
  }

  .uiux-wrapper,
  .uiux-process-section,
  .uiux-features-section,
  .project-section {
    padding: 20px 15px;
  }

  .uiux-title {
    font-size: 31px;
  }

  .uiux-img,
  .uiux-approach-img {
    width: 43vh;
  }

  .uiux-process-step,
  .uiux-feature-item {
    max-width: 55vh;
  }

  /* PROJECT RESPONSIVE CODE */
  .project-intro {
    height: 35vh;
  }

  .project-intro h1 {
    font-size: 35px;
  }

  .project-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-details {
    padding: 20px 0px;
  }

  .project-details .top-image {
    padding-left: 3%;
    border-radius: 9%;
    padding-right: 3%;
  }

  .project-text h1 {
    font-size: 29px;
  }

  .image-split img {
    width: 45vh;
  }

  /* pss project */
  .image-banner,
  .gnk-banner,
  .obicule-banner,
  .aashakiran-banner,
  .agroha-banner {
    height: 25vh;
  }

  .banner-img,
  .gnk-img,
  .obicule-img,
  .aashakiran-img {
    height: 20vh;
    width: 45vh;
    object-fit: cover;
    margin: 2%;
  }

  .pss-section,
  .gnk-section,
  .obicule-section,
  .aashakiran-section,
  .agroha-section {
    margin: 0px;
    padding: 10px;
  }

  .pss-section h2,
  .gnk-section h2,
  .agroha-section h2 {
    font-size: 27px;
  }

  .obicule-section h2 {
    font-size: 24px;
  }

  .aashakiran-section h2 {
    font-size: 21px;
  }

  .pss-section p,
  .gnk-section p,
  .obicule-section p,
  .aashakiran-section p {
    text-align: justify;
  }

  .tech-stack h2 {
    font-size: 34px;
  }

  /* CONTACT  RESPONSIVE CODE*/
  .contact-intro {
    height: 35vh;
  }

  .contact-intro h1 {
    font-size: 35px;
  }

  .contact-info {
    flex-direction: column;
    gap: 30px;
  }

  .email-location {
    padding: 30px 15px;
  }

  .contact-box {
    width: 100%;
  }

  .contact-us {
    margin: 20px 0;
  }

  .contact-us p {
    font-size: 25px;
  }

  .contact-container {
    flex-direction: column;
    height: 65vh;
  }

  .contact-form {
    width: 100%;
  }

  .contact-image img {
    display: none;
  }

  .zotech-footer-logo {
    width: 21vh;
    padding-top: 13%;
    margin-bottom: -14%;
  }

  /* TERMS & CONDITION RESPONSIVE CODE  */
  .term-intro {
    height: 36vh;
  }

  .term-intro h1 {
    font-size: 36px;
  }

  .terms-wrapper {
    margin: 0 0px;
    padding: 10% 5%
  }
}

.custom-swal-btn {
  background-color: #3e4095 !important;
  color: white !important;
  border: none !important;
}

.custom-swal-btn:hover {
  background-color: red !important;
}