body{
    margin: 0%;
    padding: 0%;
    font-family: Epilogue;
    background-color: black;
}
@font-face {
    font-family: Epilogue;
    src: url(fonts/Epilogue/static/Epilogue-Regular.ttf);
}
/* Apply globally or to a specific container like body, html, or .scroll-track */

::-webkit-scrollbar {
  width: 8px; /* Change thickness */
}

::-webkit-scrollbar-track {
  background: #000; /* Optional: scrollbar background */
}

::-webkit-scrollbar-thumb {
  background-color: #00b4d8; /* Blue scrollbar color */
  border-radius: 6px;
  border: 2px solid transparent; /* Adds spacing */
  background-clip: content-box;
}

/* Optional: On hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #0096c7;
}

h1 {
  font-size: 70px;
  line-height: 90px;
  font-weight: 700;
  color: #ffffff;
  margin: 0%;
}
h2 {
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  color: #0fafb7;
  margin: 0%;
}
h3 {
  font-size: 38px;
  line-height: 44px;
  font-weight: 700;
  color: #0fafb7;
  margin: 0%;
}
h4 {
  font-size: 28px;
  line-height: 35px;
  font-weight: 700;
  color: #0fafb7;
  margin: 0%;
}
p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #ffffff;
}
/* button {
  background-color: #0fafb7;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 28px;
  font-size: 16px;
} */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: white;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}
.logo {
  height: 67px;
  width: 180px;
  z-index: 1001;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}
.nav-links a {
  position: relative;
  font-weight: 500;
  text-decoration: none;
  color: #000;
  font-size: 20px;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0fafb7;
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #0fafb7;
}
.search-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 30%;
  max-width: 300px;
}
.search-container input {
  padding: 8px 15px 8px 40px;
  border: 1px solid #0fafb7;
  border-radius: 30px;
  outline: none;
  height: 35px;
  width: 100%;
}
.search-icon {
  position: absolute;
  left: 256px;
  width: 25px;
  height: 25px;
  pointer-events: none;
}
.search-container input::placeholder {
  font-size: 16px;
  font-weight: 400;
}
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 5px 0;
  transition: all 0.3s ease;
}       /* Header Banner 
 Banner Section */
.banner {
  padding: 100px 0;
  position: relative;
  background: url(images/banner-bg.png) center/cover no-repeat;
  width: 100%;
  height: 500px;
}
@media (max-width: 767px) {
  .banner {
    height: 350px;
  }
}
.banner .overlay {
  margin-top: -99px;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.banner-div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  z-index: 2;
  padding: 0 20px;
  text-align: center;
}
.typing-container {
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: #0fafb7;
  font-weight: 600;
  margin: 10px 0px;
  text-transform: uppercase;
}
.cursor {
  color: #0fafb7;
  animation: blink 1s infinite;
}
.banner-button {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
}
.banner-btn-1 {
  background-color: #0fafb7;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 28px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.banner-btn-1:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(15, 175, 183, 0.4);
}
.banner-text-p {
  font-size: clamp(1rem, 2vw, 2rem);
  color: #ffffff;
  margin: 0;
}      /* Icons */
.banner-icon {
  position: absolute;
  opacity: 0.8;
}
.icon1 {
  top: 20%;
  left: 10%;
  width: 47px;
  height: 47px;
}
.icon2 {
  top: 57%;
  left: 21%;
  width: 47px;
  height: 47px;
}
.icon3 {
  bottom: 15%;
  right: 10%;
  width: 63px;
  height: 63px;
}
.icon4 {
  bottom: 10%;
  left: 5%;
  width: 43px;
  height: 43px;
}
.icon5 {
  top: 20%;
  right: 15%;
  width: 68px;
  height: 68px;
}
.icon6 {
  left: 50%;
  top: 10%;
  width: 42px;
  height: 42px;
}    /* Next Section */
.next {
  display: flex;
  background-color: black;
  padding: clamp(3rem, 6vw, 6.25rem);
  gap: 5%;
  align-items: center;
}
.next-div1 {
  flex: 1;
  min-width: 300px;
}
.next-text-2 {
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 3.625rem);
  line-height: 1.2;
  color: #0fafb7;
  margin: 0 0 20px;
}
.next-text-p {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 30px;
}
.next-button {
  background-color: #0fafb7;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 28px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.next-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(15, 175, 183, 0.4);
}
.next-div2 {
  flex: 1;
  display: flex;
  justify-content: center;
}
.next-image {
  max-width: 100%;
  height: auto;
  border-radius: 181px;
}       /* Project Completed section  */
.main-container {
  background-color: black;
  padding: 80px 90px;
}
.stats-container {
  background-color: black;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.stat-item {
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
}
.label-text {
  color: white;
  font-size: 30px;
  line-height: 40px;
  margin: 0;
}
.count-number {
  color: #0fafb7;
  font-size: 50px;
  font-weight: 700;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, grey 50%, #0fafb7 50%);
}
.mobile-divider {
  display: none;
  border: none;
  height: 1px;
  background-color: #555;
  margin: 20px 0px;
  width: 100%;
}   
/* Servive section */
.service {
  padding: 0px 90px 80px 90px;
  background-color: black;
}
.service .service-image {
  width: 100%;
  display: block;
  margin: auto;
  max-width: 800px;
}
.service .service-button {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  margin-top: 50px;
}
.service .service-btn1 {
  text-decoration: none;
  background-color: white;
  color: #0fafb7;
  border: none;
  border-radius: 25px;
  padding: 12px 28px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.service .service-btn1:hover {
  background-color: #0fafb7;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(15, 175, 183, 0.4);
}   
/* Buisness Grow */
.industries-container {
  background-color: #000;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 70px;
  padding: 0 90px 90px 90px;
}
.industries-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.industry-card {
  background-color: #171717;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.industry-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.5);
}
.industry-icon {
  margin: 30px 0px;
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.industry-title {
  color: #0fafb7;
  text-align: center;
  font-weight: 500;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
.industries-col-offset-1, .industries-col-offset-2, .industries-col-offset-3 {
  padding-top: 120px;
}
/* Slider Review  */
.testimonial .slick-next.slick-arrow::before {
  content: "\f061";
  font-family: "FontAwesome";
  background-color: #0fafb7;
  color: #ffffff;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  font-size: 20px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.testimonial .slick-prev.slick-arrow::before {
  content: "\f060";
  font-family: "FontAwesome";
  background-color: #0fafb7;
  color: #ffffff;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  font-size: 20px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.testimonial {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(images/Review\ Bg\ 1.png);
  background-color: #000000;
  color: #ffffff;
  padding: 32px 0;
  overflow: hidden;
}
.testimonial__header {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  padding: 16px 0;
}
.testimonial__slider {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.testimonial__slider-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.testimonial__cards {
  margin: 0 -10px;
}
.testimonial__card {
  background: #ffffff;
  color: #414141;
  padding: 24px;
  margin: 0 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: auto;
}
.testimonial__card h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #000000;
}
.testimonial__rating {
  color: #0fafb7;
  margin: 8px 0;
}
.testimonial__text {
  color: #414141;
  line-height: 32px;
  font-size: 16px;
  margin-top: 16px;
}
.testimonial__footer {
  text-align: center;
  margin-top: 32px;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}
/* Slick slider overrides */
.slick-list {
  padding: 20px 0;
}
.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
}
.testimonial .slick-prev {
  left: -50px !important;
}
.testimonial .slick-next {
  right: -30px !important;
}
.testimonial .slick-dots {
  bottom: -40px;
  display: none !important;
}
.slick-dots li button:before {
  font-size: 12px;
  color: #ffffff;
  opacity: 0.5;
}
.slick-dots li.slick-active button:before {
  color: #0fafb7;
  opacity: 1;
}
/* Contect Us Section */
.contact-container {
  background-color: black;
  display: flex;
  padding: 60px 90px 80px 90px;
  gap: 50px;
}
.contact-info {
  color: white;
  flex: 2;
  width: 100%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-div {
  width: 100%;
  max-width: 50%;
}
.contact-form {
  background-color: white;
  padding: 30px 40px;
  border-radius: 10px;
  margin-top: 10px;
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.5);
}
.contact-details {
  display: flex;
  flex-direction: column;
}
.detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.detail-item:hover {
  background-color: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.3);
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.5);
}
.detail-icon {
  font-size: 40px;
  color: #0FAFB7;
}
.detail-text {
  font-size: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group i {
  position: absolute;
  margin-top: 14px;
  margin-left: 20px;
  color: #0FAFB7;
}
input,
textarea {
  padding: 12px 15px 12px 40px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  width: 88%;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #0FAFB7;
  box-shadow: 0 0 5px rgba(0, 188, 212, 0.3);
}
.submit-btn {
  background-color: #0FAFB7;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  width: 100%;
  margin-top: 10px;
}
.submit-btn:hover {
  background-color: #00a5bb;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 188, 212, 0.3);
}
.contact-title {
  font-size: 38px;
  line-height: 40px;
  font-weight: 700;
  color: #0FAFB7;
  margin-bottom: 20px;
}

.form-label {
  color: black;
  padding-bottom: 10px;
  display: block;
}
/* Footer Section */
.footer-area {
    background-color: black;
    border-top: 1px solid #0FAFB7;
    padding: 80px 90px;
}
.footer-links-icons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.footer-logo {
    width: 30%;
}
h6 {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0FAFB7;
    margin: 0%;
}
.footer-logo h6 {
    margin-bottom: 14px;
    margin-top: 32px;
    font-weight: 600;
    color: #fff;
}
.social-a {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 210px;
}
.social-a a {
    width: 40px;
    height: 40px;
    transition: all 0.4s;
}
.social-a a img {
    width: 100%;
    opacity: 0.6;
    transition: all 0.4s;
}
.social-a a img:hover {
    opacity: 1;
}
.social-a a:last-child img {
    border-radius: 100%;
}
.links-box {
    width: 35%;
    display: flex;
}
.footer-links {
    width: 100%;
}
.footer-links h6 {
    margin-bottom: 14px;
    font-weight: 600;
}
ul {
    list-style-type: none;
    box-sizing: border-box;
    padding: 0%;
}
ul li {
    color: #fff;
}
.footer-links ul li a {
    color: #FFF;
    font-size: 16px;
    line-height: 32px;
    list-style: none;
    margin-top: 10px;
    transition: all 0.2s;
    text-decoration: none;
}
.footer-links ul li a:hover {
    color: #0FAFB7;
}
.social-links {
    width: 30%;
}
.address-li h6 {
    margin-bottom: 14px;
    font-weight: 600;
}
.address-li p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #fff;
}
.address-li p::before {
    content: "\f3c5";
    font-family: 'FontAwesome';
    font-size: 20px;
    color: #0FAFB7;
}
.address-li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #fff;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 10px;
    transition: all 0.2s;
    text-decoration: none;
}
.address-li a:hover {
    color: #0FAFB7;
}
.address-li a::before {
    font-family: 'FontAwesome';
    font-size: 20px;
    color: #0FAFB7;
}
.telto::before {
    content: "\f095";
}
.mailto::before {
    content: "\f0e0";
}
.teams {
    width: 23px ;
    height: 25px;
}
.copyright-bottom {
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #0FAFB7;
}
.copy-p {
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #fff;
    margin: 0%;
}
.policy-terms {
    display: flex;
    gap: 60px;
}
.policy-terms a {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    text-decoration: none;
}
@media only screen and (max-width: 992px) {
    .footer-area {
        padding: 60px;
    }
}
@media only screen and (max-width: 768px) {
    .footer-area {
        /* text-align: center; */
        padding: 40px 20px;
    }
    .footer-links-icons {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }
    .social-a {
        margin: auto;
        justify-content: center;
    }
    .footer-logo {
        width: 100%;
        text-align: center;
    }
    .links-box {
        width: 100%;
    }
    .social-links {
        width: 100%;
    }
    .copyright-bottom {
        padding-top: 40px;
        gap: 20px;
        text-align: center;
        flex-direction: column;
    }
    .copyright-bottom .copy-p {
        width: 100%;
        max-width: 250px;
        margin: auto;
    }
    .policy-terms {
        justify-content: center;
    }
}
/* Mobile styles */
@media (min-width: 1024px) and (max-width: 1100px) {
  .search-icon {
    left: 90%;
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: 50px;
    line-height: 60px;
  }
  .navbar {
    padding: 16px 20px;
  }
  .nav-links {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 0;
    transform: translateY(-10%);
    transition: transform 0.4s ease-out;
    z-index: 999;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
  }
  .nav-links.active {
    transform: translateY(0);
    max-height: 100vh;
  }
  .nav-links li {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
  }
  .nav-links li:hover {
    background: #f9f9f9;
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .hamburger {
    display: block;
  }
  .hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  .search-container {
    position: absolute;
    right: 70px;
    width: calc(100% - 140px);
    max-width: none;
  }
  .search-container input {
    width: 0;
    opacity: 0;
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
  }
  .search-container input.active {
    width: 70%;
    opacity: 1;
  }
  .search-icon {
    pointer-events: auto;
    cursor: pointer;
    right: 10px;
    left: auto;
  }
  .stats-container {
    grid-template-columns: 1fr;
  }
  .stat-item {
    text-align: center;
  }
  .main-container {
    padding: 60px 40px;
  }
  .count-number {
    text-align: center;
  }
  .happy-clients {
    padding-left: 0;
  }
  .Projects-completed {
    padding-left: 0px;
  }
  .label-text {
    text-align: center;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .label-text br {
    display: none;
  }
  .mobile-divider {
    display: block;
  }
  /* Slider Review */
  .testimonial__header h3 {
    font-size: 22px;
  }
  .testimonial__card h4 {
    font-size: 18px;
  }
  .testimonial__text {
    font-size: 15px;
  }
  /* Service Section */
  .service {
    padding: 60px 40px;
  }
  h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .service .service-image {
    width: 100%;
  }
  /* Buisness Grow */
  .industries-grid {
    margin-top: 20px;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px 80px 40px;
  }
  .industries-column {
    display: contents;
  }
  .contact-container {
    padding: 60px 40px;
  }
  .contact-title {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  h4 {
    font-size: 20px;
  }
  .section-title {
    font-size: 25px;
  }
  .next-text-2 {
    font-size: 22px;
  }
  .main-container {
    padding: 40px 20px;
  }
  .happy-clients {
    padding-left: 0;
  }
  .Projects-completed {
    padding-left: 0px;
  }
  h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .stats-container {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .stat-item {
    text-align: center;
  }
  .count-number {
    padding: 30px 0px;
    text-align: center;
    font-size: 30px;
  }
  .label-text {
    text-align: center;
    font-size: 16px;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .label-text br {
    display: none;
  }
  .mobile-divider {
    display: block;
  }
  .next {
    flex-direction: column;
    gap: 50px;
    padding: 40px 20px;
  }
  .next-div1,
  .next-div2 {
    width: 100%;
    min-width: 100%;
  }
  .nav-links {
    top: 80px;
  }
  .logo {
    height: 50px;
    width: 140px;
  }
  .search-container {
    width: calc(100% - 120px);
  }
  /* Slider Review */
  .testimonial__slider {
    min-height: auto;
    padding: 32px 0 64px;
  }
  .slick-prev,
  .slick-next {
    display: none !important;
  }
  .testimonial__header h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .testimonial__header p {
    font-size: 15px;
  }
  .testimonial__footer h5 {
    font-size: 22px;
  }
  .slick-dots {
    display: block !important;
    bottom: -30px;
  }
  /* service section */
  .service {
    padding: 40px 20px;
  }
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .service .service-button {
    gap: 20px;
  }
  .service .service-btn1 {
    width: 100%;
    text-align: center;
  }
  /* Buisness Grow */
  .industries-grid {
    margin-top: 20px;
    grid-template-columns: 1, 2fr;
    gap: 15px;
    padding: 0 0px 0px 0px;
  }
  .industry-card {
    margin-top: 10px;
    aspect-ratio: 1;
  }
  h3 {
    font-size: 25px;
    line-height: 40px;
  }
  p {
    font-size: 18px;
    line-height: 26px;
  }
  /* Contect Us Section */
  .contact-container {
    padding: 40px 20px;
    flex-direction: column;
    gap: 20px;
  }
  .contact-form {
    max-width: 100%;
    padding: 20px;
  }
  .contact-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .detail-icon {
    font-size: 20px;
  }
  .detail-text {
    font-size: 18px;
  }
  .contact-info {
    padding: 0;
    max-width: 100%;
  }
  .contact-div {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .navbar {
    padding: 15px;
  }
  .logo {
    height: 40px;
    width: 105px;
  }
  .nav-links {
    top: 70px;
  }
  .search-container input.active {
    width: 60%;
  }
  .search-container input {
    height: 40px;
    padding: 8px 10px 8px 20px;
  }
  .search-container {
    right: 58px;
    width: calc(100% - 100px);
  }
  .industries-grid {
    margin-top: 20px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .industries-container {
    padding: 40px 20px;
  }
  /* Slider Review */
  .testimonial__header {
    margin-bottom: 24px;
    margin: 0%;
    padding: 16px 20px;
  }
  .testimonial__card {
    padding: 20px;
  }
  .testimonial__card h4 {
    font-size: 16px;
  }
  .testimonial__text {
    font-size: 14px;
  }
  .testimonial__footer h5 {
    font-size: 20px;
  }
  .testimonial {
    padding: 0px;
  }
  input, textarea {
  width: 83%;
}
}    
@media (max-width: 330px) {
  input, textarea { width: 75%;}
}      
/*--- responsive section home page */
.app-area {
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.app-heading {
    text-align: center;
    max-width: 900px;
    margin-bottom: 30px;
}
.app-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
@media (max-width: 1024px) {
  .app-area {
    padding: 60px 40px;
  }
}
@media (max-width: 769px) {
  .app-area {
      padding: 40px 20px;
    }
}
@media (min-width: 768px) {
    .app-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 60px;
    }
}
.preview-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.device-preview {
    width: 100%;
    max-width: 600px;
    height: auto;
    aspect-ratio: 6 / 5;
    position: relative;
    border: 4px solid #0FAFB7;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: 0 0 30px 0 #0FAFB7;
}
.device-btn img {
  width: 40px;
  position: absolute;
}
.scrolling-content {
    position: absolute;
    width: 100%;
    height: 200%;
    animation: scroll 20s linear infinite;
}
.scrolling-content img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    display: block;
}
@keyframes scroll {
   0% {
       transform: translateY(0);
   }
   100% {
       transform: translateY(-50%);
   }
}
.device-label {
  color: #0FAFB7;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-top: 15px;
  font-weight: bold;
}
.device-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.device-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #222222;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: grid;
  place-items: center;
  padding: 30px;
}
.device-btn:hover,
.device-btn.active {
    background: white;
    transform: translateY(-5px);
}
#phone-btn img {
    width: 35%;
}
/* slider section */
.slick-slider .slide {
      min-height: 107vh;
      display: flex !important;
      justify-content: center;
      align-items: center;
      padding: 80px 90px;
      box-sizing: border-box;
      background-color: #000;
      color: #fff;
} /* Slide 1 Layout */
.slide-1 .content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 60px;
      max-width: 1340px;
      width: 100%;
}
.slide-1 .text-slide {
      flex: 1;
      max-width: 50%;
}
.slide-1 h2 {
    font-weight: 700;
    color: #0FAFB7;
    margin: 0%;
}
.slide-1 p {
      font-size: 24px;
    line-height: 35px;
    font-weight: 400;
    color: #ffffff;
}
.slide-1 button {
      background-color: #0FAFB7;
    color: white;
    width: 180px;
    border: none;
    border-radius: 25px;
    padding: 12px 28px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.slide-1 .image-slider {
      flex: 1;
      display: flex;
      justify-content: end;
}
.slide-1 .image-img {
      width: 100%;
      max-width: 488px;
      height: 620px;
}
/* Slide 2 */
  .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  width: 100%;
}
.feature-card {
  position: relative;
  background-color: #00c6d7;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  height: 180px;
  transition: transform 0.3s ease;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-card:hover {
  transform: translateY(-10px);
}
.feature-card.has-hover-img > img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: 16px;
  background-color: transparent;
}
.feature-card.has-hover-img:hover > img {
  opacity: 0.6;
}
.icon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  position: relative;
  color: white;
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
  transition: all 0.3s ease;
}
.feature-card.has-hover-img:hover .icon-content {
  transform: translateY(40px); /* Push text to bottom */
}
.icon-content img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: opacity 0.3s ease;
}
.feature-card.has-hover-img:hover .icon-content img {
  opacity: 0;
}
.slick-slider .slick-dots li.slick-active button:before {
    color: #00c2d6;
    font-size: 16px;
}
.slick-slider .slick-dots li button:before {
    font-size: 16px;
    color: white;
    opacity: 1;
}
.slick-slider .slick-dots {
  bottom: 6px;
}
.Mobile-view {
  display: none;
}
/* Responsive */
@media (max-width: 992px) {
  .slick-slider .slide {
    padding: 60px 40px;
  }
}
@media (max-width: 768px) {
  .Mobile-view {
    display: block;
  }
  .why-slider {
    display: none;
  }
  .slide.slide-1 {
    padding: 40px 20px;
  }
  .slide-1 .content {
    flex-direction: column;
  }
  .slide.slide-2 {
    padding: 40px 20px;
  }
  .slide-2 .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .slide-1 .text-slide {
    max-width: 100%;
  }
  .slide-1 .image-img  {
    height: 367px;
  }
  .slide-1 p {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .slide-2 .feature-grid {
    grid-template-columns: 1fr;
  }
}
/* in home page how we work section */
/* .lock-scroll {
  overflow: hidden;
}
.fixed-active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.process-container {
  display: flex;
  padding: 80px 90px 120px 90px;
  background-color: #0a0a0a;
  color: white;
  gap: 100px;
}
.process-container.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
}
.process-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.process-heading {
  font-size: 48px;
  margin-bottom: 20px;
  color: #0FAFB7;
}
.process-description {
  font-size: 18px;
  line-height: 1.6;
  color: #b3b3b3;
  max-width: 500px;
}
.process-timeline {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}
.timeline {
  position: relative;
  width: 300px;
}
.timeline-line {
  height: 220px;
  position: absolute;
  left: 109px;
  top: -11px;
  width: 2px;
  background-color: #0FAFB7;
}
.timeline-line::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, transparent, #0FAFB7, transparent);
  animation: pulse-line 2s infinite;
  opacity: 0.5;
}
@keyframes pulse-line {
 0% {
     opacity: 0.3;
 }
 50% {
     opacity: 0.8;
 }
 100% {
     opacity: 0.3;
 }
}
.timeline-counter {
  height: 20px;
  width: 20px;
  background-color: white;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  font-size: 12px;
  color: #0FAFB7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.timeline-counter-animate {
      animation: pulse 0.5s ease-out;
}
@keyframes pulse {
     0% {
         transform: translateX(-50%) scale(1);
}
     50% {
         transform: translateX(-50%) scale(1.5);
         background-color: #0FAFB7;
         color: white;
}
     100% {
         transform: translateX(-50%) scale(1);
     }
}
.timeline-item-left {
    width: 106px;
    padding-right: 20px;
    position: relative;
    margin-top: 40px;
}
.timeline-item-right {
    margin-left: 120px;
    position: relative;
}
.timeline-title {
    margin-left: -70px;
    font-size: 24px;
    line-height: 1.3;
    transition: opacity 0.3s, transform 0.5s ease;
}
.timeline-title-right {
    padding-left: 90px;
}
.fade-out {
    opacity: 0;
    transform: translateY(10px);
}
.fade-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.5s ease-out;
}
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(10px);
}
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }
.timeline-hline-top {
    position: absolute;
    top: -28px;
    right: -156px;
    height: 1px;
    width: 142px;
    background-color: #0FAFB7;
    transform: translateY(-50%);
}
.timeline-hline-bottom {
    position: absolute;
    top: 137%;
    right: 52px;
    height: 1px;
    width: 142px;
    background-color: #0FAFB7;
    transform: translateY(-50%);
}
.timeline-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    transition: transform 0.5s ease, opacity 0.3s ease;
}
.timeline-icon-right {
    top: 2px;
    left: -80px;
}
.timeline-icon-left {
    top: 42%;
    left: 136px;
    transform: translateY(-50%);
}
.timeline-counter {
    transition: top 0.4s ease;
}
.timeline-counter.step-0 { top: 20px; }
.timeline-counter.step-1 { top: 80px; }
.timeline-counter.step-2 { top: 140px; }
.timeline-counter.step-3 { top: 200px; }
.timeline-counter.step-4 { top: 260px; }
@media (max-width: 1024px) {
  .process-container {
    padding: 60px 40px;
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .process-container {
      flex-direction: column;
      padding: 40px 20px;
      gap: 20px;
  }
  .process-content {
     
      text-align: center;
  }
  .process-heading {
      font-size: 28px;
  }
  .process-description {
      font-size: 16px;
      max-width: 100%;
  }
  .process-timeline {
      align-items: flex-start;
  }
  .timeline {
      width: 100%;
      padding: 20px;
  }
  .timeline-line {
      top: 30px;
      left: 80%;
      height: 130px;
  }
  .timeline-item-left,
  .timeline-item-right {
      width: 100%;
      margin-left: 0;
      padding-right: 0;
      margin-top: 20px;
  }
  .timeline-title {
      margin-left: 0;
      padding-left: 60px;
      font-size: 18px;
  }
  .timeline-title-right {
      padding-left: 60px;
  }
  .timeline-icon-right {
      left: 10px;
  }
  .timeline-icon-left {
      left: 10px;
      top: 50%;
  }
  .timeline-hline-top,
  .timeline-hline-bottom {
      display: none;
  }
  .timeline-counter.step-1 { top: 40px; }
  .timeline-counter.step-2 { top: 80px; }
  .timeline-counter.step-3 { top: 100px; }
  .timeline-counter.step-4 { top: 180px; }
} */
 .container {
  padding: 60px 90px;
  text-align: center;
  background-color: black;
}

.how-we-work h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.how-we-work .subtitle {
  max-width: 800px;
  margin: auto;
  padding-bottom: 90px;
  color: #fff;
}

/* Step Boxes */
.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.step-box {
  width: 23%;
  background: #000;
  text-align: center;
  position: relative;
}

.icon-box {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transform: rotate(45deg);
}

.icon-box img {
  transform: rotate(-45deg);
}

/* Color Classes */
.how-we-work .cyan { color: #00ffff; }
.orange { color: #00cc66; }
.blue { color:  #3399ff; }
.gray { color: #ffffff; }

.step-box h3 {
  font-size: 22px;
  padding-top: 20px;
  margin: 10px 0;
}

.step-box p {
  font-size: 16px;
  color: #fff;
}

/* Dashed Line Between Steps */
.steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 12%;
  width: 76%;
  height: 2px;
  border-top: 2px dashed #ccc;
  z-index: 0;
}



/* Responsive */
@media (max-width: 1024px) {
  .container {
    padding: 60px 40px;
  }
  .step-box {
    width: 48%;
    margin-bottom: 40px;
  }

  .steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 40px 20px;
  }
  .step-box {
    width: 100%;
  }
}

/* ------------ Animation section ---*/
.transform-section {
  position: relative;
  text-align: center;
  color: white;
  background: black;
}
.transform-section .tech-icons {
  position: relative;
  height: 200px;
}
.transform-section .tech-icons img {
  position: absolute;
}
@keyframes moveLeftRight {
  0% { transform: translateX(0); }
  50% { transform: translateX(150px); }
  100% { transform: translateX(0); }
}
@keyframes moveRightLeft {
  0% { transform: translateX(0); }
  50% { transform: translateX(-150px); }
  100% { transform: translateX(0); }
}
@keyframes moveUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(100px); }
  100% { transform: translateY(0); }
}
@keyframes moveZigZag {
  0% { transform: translate(0, 0); }
  25% { transform: translate(60px, -60px); }
  50% { transform: translate(-80px, 40px); }
  75% { transform: translate(50px, 80px); }
  100% { transform: translate(0, 0); }
}
@keyframes moveCircle {
  0% { transform: translate(0, 0); }
  25% { transform: translate(40px, -40px); }
  50% { transform: translate(80px, 0); }
  75% { transform: translate(40px, 40px); }
  100% { transform: translate(0, 0); }
}
@keyframes moveLeftRightSmall {
  0% { transform: translateX(0); }
  50% { transform: translateX(20px); }
  100% { transform: translateX(0); }
}
@keyframes moveCircleSmall {
  0% { transform: translate(0, 0); }
  25% { transform: translate(20px, -20px); }
  50% { transform: translate(40px, 0); }
  75% { transform: translate(20px, 20px); }
  100% { transform: translate(0, 0); }
}
.animationicon-icon1  { top: 90%; left: 1%; animation: moveLeftRight 10s linear infinite; }
.animationicon-icon2  { top: 40%; left: 8%; animation: moveZigZag 12s linear infinite; }
.animationicon-icon3  { bottom: -71%; left: 2%; animation: moveUpDown 9s linear infinite; }
.animationicon-icon4  { bottom: -90%; left: 14%; animation: moveRightLeft 11s linear infinite; }
.animationicon-icon5  { top: 66%; left: 22%; animation: moveZigZag 13s linear infinite; }
.animationicon-icon6  { top: 10%; left: 32%; animation: moveCircle 14s linear infinite; }
.animationicon-icon7  { top: 50%; left: 45%; animation: moveLeftRight 10s linear infinite; }
.animationicon-icon8  { top: 25%; left: 56%; animation: moveCircle 12s linear infinite; }
.animationicon-icon9  { top: 65%; right: 34%; animation: moveRightLeft 9s linear infinite; }
.animationicon-icon10 { top: 25%; right: 26%; animation: moveZigZag 11s linear infinite; }
.animationicon-icon11 { top: 35%; right: 15%; animation: moveUpDown 13s linear infinite; }
.animationicon-icon12 { top: 50%; right: 7%; animation: moveLeftRightSmall 5s linear infinite; }
.animationicon-icon13 { bottom: -40%; right: 7%; animation: moveCircleSmall 5s linear infinite; }
.animationicon-icon15 { bottom: -95%; right: 14%; animation: moveZigZag 10s linear infinite; }
.transform-section .headline-text-h2 {
  font-size: 68px;
  line-height: 80px;
  font-weight: 700;
  color: #0FAFB7;
  margin: 0;
}
.transform-section .headline-text-p {
  font-size: 40px;
  line-height: 55px;
  font-weight: 500;
  margin-top: 10px;
  color: #ffffff;
}
.transform-section .wave-img {
  width: 100%;
  display: block;
  position: relative;
}
.transform-section .wave-text {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 13%;
}
.transform-section .wave-text-p {
  line-height: 55px;
  font-weight: 500;
  font-size: 36px;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 1024px) {
  .transform-section .tech-icons img {
    width: 25px;
    height: 25px;
  }
  .transform-section .headline-text-h2 {
    font-size: 38px;
    line-height: 48px;
  }
  .transform-section .headline-text-p {
    font-size: 30px;
    line-height: 40px;
  }
  .transform-section .wave-text-p {
    font-size: 30px;
    line-height: 40px;
  }
  .transform-section .tech-icons {
    height: 130px;
  }
}
@media (max-width: 768px) {
  .transform-section .tech-icons {
    height: 180px;
  }
  .transform-section .tech-icons img {
    width: 22px;
    height: 22px;
  }
  .transform-section .headline-text-h2 {
    font-size: 30px;
  }
  .transform-section .headline-text-p {
    font-size: 25px;
  }
  .transform-section .wave-text-p {
    font-size: 20px;
    line-height: 30px;
  }
  .transform-section .wave-text {
    bottom: 8%;
  }
  @keyframes moveCircleSmall {
    0% { transform: translate(0, 0); }
    25% { transform: translate(10px, -10px); }
    50% { transform: translate(20px, 0); }
    75% { transform: translate(10px, 10px); }
    100% { transform: translate(0, 0); }
  }
  @keyframes moveCircle {
    0% { transform: translate(0, 0); }
    25% { transform: translate(15px, -15px); }
    50% { transform: translate(30px, 0); }
    75% { transform: translate(15px, 15px); }
    100% { transform: translate(0, 0); }
  }
  @keyframes moveUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(30px); }
    100% { transform: translateY(0); }
  }
  @keyframes moveZigZag {
    0% { transform: translate(0, 0); }
    25% { transform: translate(20px, -20px); }
    50% { transform: translate(-25px, 10px); }
    75% { transform: translate(15px, 25px); }
    100% { transform: translate(0, 0); }
  }
}
@media (max-width: 480px) {
  .transform-section .tech-icons {
    height: 150px;
  }
  .transform-section .tech-icons img {
    width: 20px;
    height: 20px;
  }
  .transform-section .headline-text-h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .transform-section .headline-text-p {
    font-size: 18px;
    line-height: 20px;
  }
  .transform-section .wave-text-p {
    font-size: 16px;
    line-height: 26px;
  }
  .transform-section .wave-img {
    padding-bottom: 20%;
  }
  .animationicon-icon15 { bottom: -40%; }
  .animationicon-icon3 { bottom: -34%; }
  .animationicon-icon4 { bottom: -53%; }
}
@media (max-width: 340px) {
  .transform-section .wave-text {
    bottom: 3%;
  }
}
/* -----------------------------------About us page ----------------*/  /* start about us section */
.about {
    position: relative;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    width: 100%;
}
.about .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.about .banner-contant {
    position: relative;
    z-index: 22;
    max-width: 800px;
}
.about .banner-h5 {
    font-size: 32px;
    line-height: 50px;
    font-weight: 500;
    color: #9F9F9F;
    margin: 0%;
    width: 100%;
    max-width: 65%;
    display: block;
    margin: auto;
}
.about span {
    color: #ffffff;
}
@media only screen and (max-width: 1024px) {
  .about {
    height: 50dvh;
  }
    h2 {
        font-size: 50px;
        line-height: 60px;
    }
    .about .banner-h5 {
        font-size: 25px;
        line-height: 35px;
        max-width: 50%;
    }
}
@media only screen and (max-width: 768px) {
    .about .banner-h5 {
        font-size: 16px;
        line-height: 30px;
        max-width: 60%;
    }
}
/* start the foundaers section */
.text-area {
    text-align: center;
    padding: 50px 90px 30px 90px;
    background-color: black;
}
.team-section {
    background-color: #171717;
    padding: 80px 90px 80px 90px;
}
.team-slider .slick-slide {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    margin: 0px 10px;
}
.team-slider .section {
    flex: 1;
}
.slide-h2 {
    font-size: 40px;
    line-height: 60px;
    font-weight: 400;
    color: #ffffff;
    margin-top: 0%;
    padding-bottom: 50px;
}
.slide-h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    color: #0FAFB7;
    margin: 0%;
}
.slide-p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #0FAFB7;
    margin: 0%;
}
.image {
    flex: 1;
    display: flex;
    justify-content: end;
}
.image img {
    width: 100%;
    max-width: 456px;
    height: 600px;
    object-fit: cover;
    display: block;
}/* Slick dots styling */
.team-slider .slick-dots li button:before {
    font-size: 16px;
    color: white; 
    opacity: 1;
}
.team-slider .slick-dots li.slick-active button:before {
    color: #00c2d6; 
    font-size: 16px;
}
.team-slider .slick-dots {
  bottom: -50px;
}
@media only screen and (max-width: 1100px) {
    .team-section {
        padding: 60px 40px;
    }
    .text-area {
       padding: 60px 40px;
    }
}
@media only screen and (max-width: 768px) {
    .team-slider .slick-slide {
      flex-direction: column-reverse !important;
      text-align: left;
      margin: 0%;
      gap: 50px;
    }
    .team-section {
        padding: 40px 20px;
    }
    .slide-h2 {
        font-size: 30px;
        line-height: 46px;
    }
    .slide-h3 {
        font-size: 32px;
        line-height: 48px;
    }
    .slide-p {
        font-size: 20px;
        line-height: 30px;
    }
    .text-area {
        padding: 40px 20px;
    }
    p {
        font-size: 18px;
        line-height: 25px; margin: 0%;
    }
}
/* founder slider is complete now start the meet our team */
.team-member {
    background-color: #000000;
    padding: 80px 90px;
}
.team-member .team-grid {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 50px;
    row-gap: 150px;
}
.team-member .team-text {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    padding-bottom: 50px;
}
.team-member .team-grid-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0%;
}
.team-member img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    background-color: #fff;
}
.team-member .team-grid-h3 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    color: #0FAFB7;
    padding-top: 30px;
    margin-bottom: 0%;
}
.team-member .team-grid-p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #ffffff;
    padding-top: 10px;
    margin: 0%;
}
.team-member .team-text1 {
  font-size: 30px;
  line-height: 40px;
    font-weight: 600;
    color: #0FAFB7;
    text-align: center;
    padding-top: 50px;
}
@media only screen and (max-width: 1200px) {
    .team-member {
        padding: 60px 40px;
    }
}
@media only screen and (max-width: 1024px) {
    .team-member .team-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        row-gap: 50px;
    }
}
@media only screen and (max-width: 768px) {
    .team-member {
      padding: 40px 20px;
    }
    .team-member .team-grid {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(6, 1fr);
    }
    .team-member .team-text1 {
      font-size: 25px;
      padding-top: 0%;
    }
    .team-member .team-grid-h3 {
      font-size: 25px;
    }
    .team-member .team-grid-p {
      font-size: 18px;
    }
}
/*-------------------------------------services page ----------------------------*/
.decription {
    padding: 80px 135px;
    background-color: black;
    text-align: center;
}
.decription-text-h2 {
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    color: #0FAFB7;
    margin-bottom: 20px;
}
.decription-text-p {
    font-size: 24px;
    font-weight: 400;
    line-height: 44px;
    color: #ffffff;
    width: 100%;
    max-width: 1066px;
    display: block;
    margin: auto;
}
@media only screen and (max-width: 1024px) {
    .decription {
        padding: 60px 40px;
    }
    .decription-text-h2 {
        font-size: 40px;
        line-height: 50px;
    }
    .decription-text-p {
        font-size: 20px;
        line-height: 40px;
    }
}
@media only screen and (max-width: 768px) {
    .decription {
        padding: 40px 20px;
    }
    .decription-text-h2 {
        font-size: 25px;
        line-height: 30px;
    }
    .decription-text-p {
        font-size: 18px;
        line-height: 30px;
    }
}
/* sratrt new section */
/* .service {
    padding: 80px 90px;
    background-color: black;
}
.service .service-image {
    display: block;
    margin: auto;
}
.service .service-button {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    margin-top: 50px
}
.service .service-btn1 {
    background-color: #ffffff;
  color: #0FAFB7;
  border: none;
  border-radius: 25px;
  padding: 12px 28px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}
.service .service-btn1:hover {
    background-color: #0FAFB7;
    color: #ffffff;
    cursor: pointer;
}
@media only screen and (max-width: 1150px) {
    .service .service-image {
        width: 100%;
    }
}
@media only screen and (max-width: 1024px) {
    .service {
        padding: 60px 40px;
    }
    h2 {
        font-size: 40px;
        line-height: 50px;
    }
}
@media only screen and (max-width: 768px) {
    .service {
        padding: 40px 20px;
    }
    h2 {
        font-size: 30px;
        line-height: 40px;
    }
    .service .service-button {
        gap: 20px;
    }
    .service .service-btn1 {
        width: 100%;
        text-align: center;
    }
} */
/* start the new section */
.service-discription {
    background-color: black;
    padding: 50px 90px;
}
.service-discription .section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 40px;
    gap: 50px;
}
.service-discription .text-block, .image-block {
    flex: 1 1 45%;
    margin: 10px;
}
.service-discription .text-block h2 {
    color: #0FAFB7;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
}
.service-discription .text-block p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #ffffff;
}
.service-discription .text-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-discription .text-block ul li {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #0FAFB7;
}
.service-discription .image-block img {
    width: 100%;
    display: block;
}
.service-discription .service-img {
  width: 100%;
  max-width: 411px;
  height: 378px;
}
.service-discription .image-block {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.service-discription .image-block.with-border::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -90px;
    width: calc(100% + 180px);
    height: 1px;
    background-color: #fff;
}
@media (max-width: 1100px) {
    .service-discription {
        padding: 60px 40px;
    }
    .service-discription .section {
        gap: 30px;
    }
    .service-discription .image-block.with-border::after {
        left: 0;
        width: 100%;
    }
}
@media (max-width: 799px) {
    .service-discription {
        padding: 40px 20px;
    }
    .service-discription .text-block {
        order: 1;
    }
    .service-discription .image-block {
        order: 2;
    }
    .service-discription .section {
        gap: 30px;
    }
    .service-discription .image-block.with-border::after {
        left: 0;
        width: 100%;
    }
    .service-discription .text-block p {
      margin-bottom: 10px;
      font-size: 18px;
    }
    .service-discription .text-block h2 {
      font-size: 26px;
      line-height: 30px;
    }
}
/*--------------------------------portfolio page -----------------------------------------------*/
.workshowcase {
    background-color: black;
    padding: 50px 90px;
}
.workshowcase .showcase-wrapper {
    padding: 0px 0px 80px 0px;
    border-bottom: 1px solid #fff;
}
.workshowcase .showcase-title {
    text-align: center;
    margin-bottom: 50px;
}
.workshowcase .showcase-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.workshowcase .text-column {
    flex: 1 1 40%;
}
.platform-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.platform-item {
  color: #3a3a3a;
  font-size: 60px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.platform-item.active {
  color: #0FAFB7;
  font-size: 67px;
  font-weight: 600;
}
.workshowcase .showcase-text-area {
    text-align: center;
    width: 100%;
    max-width: 450px;
}
.workshowcase .line1, .line3 {
    font-size: 77px;
    line-height: 88px;
    font-weight: 700;
    color: #272727;
}
.workshowcase .line2 {
    font-size: 77px;
    line-height: 88px;
    font-weight: 400;
    color: #0FAFB7;
}
.workshowcase .arrow-wrapper {
    flex: 0 0 60px;
    display: flex;
    justify-content: center;
    align-self: end; 
}
.workshowcase .arrow-button i {
    font-size: 20px;
}
.workshowcase .arrow-button {
    width: 48px;
    height: 48px;
    border: 2px solid #0FAFB7;
    border-radius: 50%;
    background: white;
    color: #0FAFB7;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.workshowcase .arrow-button:hover {
    background-color: #0FAFB7;
    color: white;
}
.workshowcase .image-column {
    flex: 1 1 40%;
    text-align: center;
}
.workshowcase .image-column img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}
.workshowcase .explore-link {
    color: #0FAFB7;
    text-decoration: underline;
    font-size: 32px;
    line-height: 44px;
    font-weight: 400;
}
@media (max-width: 1180px) {
    .workshowcase {
        padding: 60px 40px;
    }
    .workshowcase .showcase-wrapper {
        padding: 0px 0px 40px 0px;
    }
    .workshowcase .showcase-text-area {
        max-width: 300px;
    }
    .workshowcase .line1, .line2, .line3 {
        font-size: 50px !important;
        line-height: 65px !important;
    }
}
@media (max-width: 768px) {
    .workshowcase {
        padding: 40px 20px;
    }
    .workshowcase .showcase-wrapper {
        padding: 0px 0px 20px 0px;
    }
    .workshowcase .showcase-content {
      flex-direction: column;
      gap: 20px;
    }
    .workshowcase .showcase-title {
        padding-bottom: 30px;
        margin: 0%;
    }
    .workshowcase .arrow-wrapper {
      order: 2;
      align-self: center;
    }
    .workshowcase .text-column, .image-column {
      flex: 1 1 100%;
      text-align: left;
      width: 100%;
    }
    .workshowcase .showcase-text-area {
        max-width: 100%;
        text-align: left;
    }
    .workshowcase .line1, .line2, .line3 {
      font-size: 30px !important;
      line-height: 40px !important;
    }
    .platform-item {
      font-size: 30px;
    }
    .platform-item.active {
      font-size: 37px;
    }
    .workshowcase .arrow-button {
      margin: 20px auto;
    }
  }
/*-------*/
/* .workshowcase {
    background-color: black;
    padding: 50px 90px;
}
.workshowcase .showcase-wrapper {
    padding: 0px 0px 80px 0px;
    border-bottom: 1px solid #fff;
}
.workshowcase .showcase-title {
    text-align: center;
    line-height: 66px;
    font-weight: 700;
    color: #0FAFB7;
    margin: 0%;
    margin-bottom: 50px;
}
.workshowcase .showcase-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.workshowcase .text-column {
    flex: 1 1 40%;
}
.workshowcase .platform-name {
    font-size: 30px;
    font-weight: 700;
    line-height: 80px;
    color: #0FAFB7;
}
.workshowcase .showcase-text-area {
    text-align: center;
    width: 100%;
    max-width: 450px;
}
.workshowcase .line1, .line3 {
    font-size: 60px;
    line-height: 80px;
    font-weight: 700;
    color: #272727;
}
.workshowcase .line2 {
    font-size: 60px;
    line-height: 80px;
    font-weight: 400;
    color: #0FAFB7;
}
.workshowcase .arrow-wrapper {
    flex: 0 0 60px;
    display: flex;
    justify-content: center;
    align-self: end; 
}
.workshowcase .arrow-button i {
    font-size: 20px;
}
.workshowcase .arrow-button {
    width: 48px;
    height: 48px;
    border: 2px solid #0FAFB7;
    border-radius: 50%;
    background: white;
    color: #0FAFB7;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.workshowcase .arrow-button:hover {
    background-color: #0FAFB7;
    color: white;
}
.workshowcase .image-column {
    flex: 1 1 40%;
    text-align: center;
}
.workshowcase .image-column img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}
.workshowcase .explore-link {
    color: #0FAFB7;
    text-decoration: underline;
    font-size: 32px;
    line-height: 44px;
    font-weight: 400;
}
@media (max-width: 1180px) {
    .workshowcase {
        padding: 60px 40px;
    }
    .workshowcase .showcase-wrapper {
        padding: 0px 0px 40px 0px;
    }
    .workshowcase .showcase-text-area {
        max-width: 300px;
    }
    .workshowcase .line1, .line2, .line3 {
        font-size: 50px !important;
        line-height: 65px !important;
    }
}
@media (max-width: 768px) {
    .workshowcase {
        padding: 40px 20px;
    }
    .workshowcase .showcase-wrapper {
        padding: 0px 0px 20px 0px;
    }
    .workshowcase .showcase-content {
      flex-direction: column;
      gap: 20px;
    }
    .workshowcase .showcase-title {
        font-size: 35px;
        line-height: 45px;
        margin-bottom: 20px;
    }
    .workshowcase .arrow-wrapper {
      order: 2;
      align-self: center;
    }
    .workshowcase .text-column, .image-column {
      flex: 1 1 100%;
      text-align: left;
      width: 100%;
    }
    .workshowcase .showcase-text-area {
        max-width: 100%;
        text-align: left;
    }
    .workshowcase .line1, .line2, .line3 {
      font-size: 30px !important;
      line-height: 40px !important;
    }

    .workshowcase .arrow-button {
      margin: 20px auto;
    }
  } */
/*------------------------------------contact page -------------------------------*/
/*.contact-section {
    padding: 80px 90px;
    background-color: black;
    text-align: center;
}
.contact-section .contact-text-h2 {
    line-height: 60px;
    font-weight: 700;
    color: #0FAFB7;
    margin: 0%;
    margin-bottom: 20px;
}
.contact-section .contact-text-p {
    font-size: 28px;
    line-height: 50px;
    font-weight: 500;
    color: #ffffff;
    margin: 0%;
    margin-bottom: 80px;
}
.contact-section .contact-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
}
.contact-section .contact-box1 {
    background: #fff;
    color: #0FAFB7;
    padding: 20px;
    width: 217px;
    height: 193px;
    text-align: left;
}
.contact-section .contact-box1-h3 {
    font-size: 30px;
    line-height: 50px;
    font-weight: 700;
    margin: 20px 0 5px;
}
.contact-section .contact-box1-p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    margin: 0%;
    color: #0fafb7;
}
.contact-section .contact-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.contact-section .contact-icons a {
    color: #0FAFB7;
    text-decoration: none;
}
@media (max-width: 1024px) {
    .contact-section {
        padding: 60px 40px;
    }
    .contact-section .contact-text-h2 {
        font-size: 40px;
        line-height: 50px;
    }
    .contact-section .contact-text-p  {
        font-size: 26px;
        line-height: 40px;
        margin-bottom: 40px;
    }
    .contact-section .contact-boxes {
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 20px;
    }
    .contact-section .contact-text-h2 {
        font-size: 30px;
        line-height: 40px;
    }
    .contact-section .contact-text-p  {
        font-size: 20px;
        line-height: 30px;
    }
    .contact-section .contact-boxes {
        flex-direction: column;
        align-items: center;
    }
}*/
.stats-section {
  padding: 80px 90px;
}

.stats-section .container {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  flex-wrap: wrap;
  align-items: center;
}

.stats-section .left {
  flex: 1;
  
}



.stats-section .left h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0fafb7;
}



.stats-section .left p {
  font-size: 17px;
  color: #fff;
  line-height: 1.6;
}

.stats-section .right {
  flex: 1;
 
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stats-section .card {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  gap: 20px;
  width: 100%;
  max-width: 50%;
}
.stats-section .card.card2 {
  margin-left: 40%;
}
.stats-section .card .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.stats-section .card h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #000;
}

.stats-section .card p {
  margin: 4px 0 0;
  font-size: 15px;
  color: #666;
}
.stats-section .contact-icons {
    display: flex;
    margin-top: 50px;
    gap: 50px;
}
.stats-section .contact-icons a {
    color: #0FAFB7;
    text-decoration: none;
}
@media (max-width: 1290px) {
  .stats-section .card.card2 {
    margin-left: 33%;
  }
}
@media (max-width: 992px) {
  .stats-section {
    padding: 60px 40px;
  }

  .stats-section .container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
 .stats-section .card.card2 {
    margin-left: 0%;
  }
  .stats-section .left h1 {
    font-size: 40px;
    text-align: center;
  }

  .stats-section .left p {
    text-align: center;
    font-size: 16px;
  }

  .stats-section .right {
    align-items: center;
  }

  .stats-section .card {
    width: 100%;
    max-width: 100%;
  }

  .stats-section .contact-icons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .stats-section {
    padding: 40px 20px;
  }

  .stats-section .left h1 {
    font-size: 32px;
  }

  .stats-section .card h2 {
    font-size: 22px;
  }

  .stats-section .card p {
    font-size: 14px;
  }

  .stats-section .card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .stats-section .card .icon {
    margin-bottom: 10px;
  }
}

/*   -------------------FAQ---------------------------*/
.faq-container {
    padding: 50px 90px;
    display: flex;
    background: black;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.faq-header {
    text-align: center;
    background-color: black;
    padding: 50px 0px;
}
.faq-header h1 {
    color: #0FAFB7;
    font-weight: 700;
    margin: 0%;
    margin-bottom: 10px;
}
.faq-header h2 {
    margin-bottom: 20px;
    font-weight: 700;
}
.faq-header p {
    color: white;
    font-size: 20px;
}
.faq-questions {
    flex: 2;
    position: relative;
}
.faq-question {
    width: 80%;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    font-weight: 400;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    border-left: 2px solid #333;
    font-size: 22px;
    line-height: 32px;
}
.faq-question:hover {
    color: #00BCD4;
    border-left: 2px solid #00BCD4;
}
.faq-question.active {
    width: 80%;
    color: #00BCD4;
    border-left: 3px solid #00BCD4;
    background-color: rgba(0, 188, 212, 0.05);
}
.question-indicator {
    position: absolute;
    left: -39px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}
.question-indicator img {
    width: 20px;
}
.faq-question.active .question-indicator {
    opacity: 1;
}
.faq-answers {
    flex: 1.5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
}
.faq-answer {
    display: none;
    animation: fadeIn 0.5s ease;
}
.faq-answer.active {
    display: block;
}
.answer-bubble {
    min-height: 300px;
    border: 2px solid #0FAFB7;
    border-radius: 50px;
    padding: 60px 40px;
    background-color: black;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.quote-icon {
    opacity: 0.8;
    position: absolute;
    top: 50px;
    left: 23%;
    transform: translateX(-50%);
    width: 100px;
    height: 79px;
}
.answer-text {
    z-index: 99;
    color: #0FAFB7;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
}
.answer-bubble::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-right: 20px solid #0FAFB7;
    border-bottom: 15px solid transparent;
}
.answer-bubble::after {
    content: '';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-right: 20px solid black;
    border-bottom: 15px solid transparent;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
}
@media (max-width: 992px) {
            .faq-container {
                flex-direction: column;
            }
  .faq-questions {
      padding: 30px 20px;
    }
  .faq-answers {
      padding: 30px;
    }
  .answer-bubble::before,
  .answer-bubble::after {
      display: none;
    }
}
@media (max-width: 768px) {
  .faq-answers {
      padding: 0;
      justify-content: start;
    }
    .answer-bubble {
      padding: 20px;
    }
  .faq-container {
      padding: 20px;
    }
    .faq-header {
      padding: 40px 0px 0px 0px;
    }
  .faq-header p {
      font-size: 16px;
    }
  .faq-question {
      width: 100%;
      font-size: 16px;
      padding: 15px;
    }
  .faq-question.active {
      width: 100%;
    }
  .answer-text {
      font-size: 15px;
    } 
    .question-indicator {
      left: -26px;
    }
}
/* -------------------------------FAQ end ----------------*/
.map {
  background-color: #000;
  padding: 80px 0px;
}
.map .map-container {
  position: relative;
  width: 100%;
  height: 100dvh;
  filter: grayscale(100%) invert(100%) contrast(95%);
}
@media only screen and (max-width: 1024px) {
  .map .map-container {
    height: 50dvh;
  }
}
@media (max-width: 768px) {
  .map {
    padding: 40px 0px;
  }
}
/*----------------------------------home page button - about logics button --------------------*/
.area-text {
    background-color: black;
    padding: 80px 90px 0px 90px;
    text-align: center;
}
.text-h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    color: #0FAFB7;
    margin: 0%;
}
.text-p {
    font-size: 22px;
    line-height: 40px;
    font-weight: 400;
    color: #ffffff;
}
.outline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}
.outlined-text {
    font-family: 'Poppins', sans-serif;
    font-size: 90px;
    font-weight: 800;
    letter-spacing: 2px;
    color: transparent;
    -webkit-text-stroke: 1px #0FAFB7;
    margin: 0;
}
.outline-p {
    font-size: 30px;
    line-height: 66px;
    font-weight: 500;
    color: #0FAFB7;
    margin: 0%;
}
@media (max-width: 1024px) {
  .area-text {
    padding: 60px 40px;
  }
  .text-h2 {
    font-size: 50px;
  }
  .text-p {
    font-size: 20px;
    line-height: 30px;
  }
  .outline-p {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .area-text {
    padding: 40px 20px;
  }
  .area-text .text-h2 {
    font-size: 25px;
    line-height: 35px;
    padding-bottom: 10px;
  }
  .area-text .text-p {
    font-size: 18px;
    line-height: 30px;
    padding-bottom: 10px;
  }
  .outlined-text {
    font-size: 70px;
  }
  .outline-p {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .area-text {
    padding: 60px 20px 40px 20px;
  }
} 
@media (max-width: 450px) {
  .outlined-text {
    font-size: 50px;
  }
}
/* start the new section */
/* body.lock-scroll {
  overflow: hidden;
}
.dual-slider {
  position: relative;
  transition: all 0.6s ease;
  z-index: 10;
}
.dual-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; 
  overflow: hidden;
}
.dual-slider .slider-wrapper {
  display: flex;
  width: 90%;
  max-width: 1200px;
  gap: 40px;
   background-color: #262626;
  border-radius: 30px; 
  padding: 80px 90px;
}
.dual-slider .left-slider, .right-slider-wrapper {
  width: 50%;
  height: 500px;
  overflow: hidden;
} 
.dual-slider .card, .dual-logo {
  height: 500px;
  display: flex;
  justify-content: center;
  text-align: left;
  box-sizing: border-box;
  background: #fff;
  color: #000;
}   
.dual-slider .dual-logo {
  background: #000;
  justify-content: center;
}
.dual-slider .dual-logo .dual-img {
  max-height: 100px;
  max-width: 80%;
}
.dual-slider .service-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  padding: 60px 0;
}
.dual-slider .slider-wrapper {
  display: flex;
  width: 90%;
  max-width: 1200px;
}
.dual-slider .slider-cards,
.dual-slider .slider-logos {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dual-slider .slider-cards .card {
  display: flex;
  background: #fff;
  margin: 10px 0px;
  width: 480px !important;
  height: 400px;
}
.dual-slider .label {
  background-color: #0FAFB7;
    color: #fff;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    font-size: 34px;
    line-height: 40px;
    width: 125px;
    height: 347px;
}
.dual-slider .content {
  padding: 20px;
}
.dual-slider .content h2 {
   margin: 0;
    font-size: 50px;
    line-height: 90px;
    color: #0FAFB7;
    font-weight: 700;
}
.dual-slider .content h3 {
  margin: 4px 0;
    font-size: 30px;
    line-height: 50px;
    font-weight: 400;
    color: #000;
}
.dual-slider .content p {
  margin: 10px 0;
    font-size: 22px;
    line-height: 40px;
    font-weight: 500;
    color: #0FAFB7;
}
.dual-slider .content a {
 font-size: 16px;
    color: #0FAFB7;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    height: 60px;
    align-items: end;
}
.dual-slider .fa-arrow-right {
  padding-left: 10px;
}
.dual-slider .slider-logos .dual-img {
  max-width: 100%;
  height: 400px;
  display: block;
  margin: 10px auto;
}
@media (max-width: 1024px) {
  .dual-slider .slider-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 60px 40px;
  }
  .dual-slider .left-slider,
  .dual-slider .right-slider-wrapper,
  .dual-slider .slider-cards,
  .dual-slider .slider-logos {
    width: 100%;
    height: auto;
  }
  .dual-slider .slider-cards .card {
    width: 100% !important;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .dual-slider .label {
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px 15px;
    font-size: 24px;
    line-height: 30px;
  }
  .dual-slider .content {
    padding: 10px;
  }
  .dual-slider .content h2 {
    font-size: 32px;
    line-height: 50px;
  }
  .dual-slider .content h3 {
    font-size: 24px;
    line-height: 36px;
  }
  .dual-slider .content p {
    font-size: 18px;
    line-height: 28px;
  }
  .dual-slider .slider-logos .dual-img {
    max-height: 250px;
  }
}
@media (max-width: 600px) {
  .dual-slider .slider-wrapper {
    padding: 40px 20px;
  }
  .dual-slider .content h2 {
    font-size: 26px;
  }
  .dual-slider .content h3 {
    font-size: 20px;
  }
  .dual-slider .content p {
    font-size: 16px;
  }
  .dual-slider .content a {
    align-items: center;
  }
  .dual-slider .label {
    font-size: 18px;
    line-height: 24px;
  }
} */
/* @media (max-width: 480px) {
  .dual-slider {
    height: 90vh;
  }
} */
 .services {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 50px;
      padding: 80px 90px;
    }

    .service-box {
      text-align: center;
      width: 400px;
    }

    .icon-circle {
      width: 100px;
      height: 100px;
      border: 3px solid currentColor;
      border-radius: 50%;
      margin: 0 auto 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      position: relative;
    }
    .icon-circle:hover {
        transform: scale(1.1);
        transition: 0.3s;
    }
    .icon-circle::after {
      content: '';
      position: absolute;
      height: 30px;
      width: 2px;
      background: currentColor;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%);
    }

    .icon-circle img {
      max-width: 60%;
      max-height: 60%;
      object-fit: contain;
      
    }
    /* .icon-circle:hover {
        background-color: white;
    } */
    /* Circle border colors */
    .cyan { color: red; }
    .orange { color: #5fb52e; }
    .green { color: blue; }
    .pink { color: #21759a; }
    .purple { color: #a4c739; }

    .service-box-h3 {
      margin: 20px 0 10px;
      font-size: 35px;
      color: #0FAFB7;
    }
    .service-box-h4 {
        font-size: 25px;
        color: white;
        margin: 0%;
    }
    .service-box-p {
      font-size: 18px;
      color: #ccc;
      line-height: 1.5;
      padding-bottom: 10px;
    }
    .more-link {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #0fafb7;
  padding-bottom: 2px;
  transition: color 0.3s;
  text-transform: uppercase;
}

.more-link:hover {
  color: #0fafb7;
}
@media (max-width: 1024px) {
  .services {
    padding: 60px 40px;
  }
}
@media (max-width: 768px) {
  .services {
    padding: 40px 20px;
  }
  .service-box-h3 {
    font-size: 25px;
  }
  .service-box-h4 {
    font-size: 20px;
  }

}
/*----------------------------------home page button - about creativity button --------------------*/
.heading-about {
    padding: 80px 20px 20px 20px;
    text-align: center;
    background-color: #000;
}
.design-section,
.visual-section {
    background-color: #000;
    color: #fff;
    position: relative;
    display: flex;
    min-height: 80dvh;
}
.center-line-container {
    position: fixed;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100vh;
    transform: translateX(-50%);
    z-index: 10;
    transition: opacity 0.6s ease;
}
.center-line {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: top 0.3s ease, height 0.3s ease;
}
.scroll-line {
    position: absolute;
    left: -5px;
    right: 5px;
    width: 14px;
    height: 50px;
    background-color: #0FAFB7;
    transition: top 0.1s ease-out;
}
.text-content,
.image-content {
    flex: 1 0 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 100px;
}
.image-content img {
    max-height: 80vh;
    object-fit: contain;
}
.intro-text {
    /* padding-top: 30px; */
    width: 383px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}
.showcase-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #00CFE8;
    font-weight: 600;
    font-size: 1.1rem;
    padding-left: 20px;
    transition: all 0.3s ease;
}
.showcase-btn:hover {
    color: #0fafb7;
}
.arrow {
    margin-left: 12px;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}
.showcase-btn:hover .arrow {
    transform: translateX(8px);
}
@media (max-width: 1440px) {
  .text-content,
  .image-content {
    padding: 0 50px;
  }
}
@media (max-width: 1190px) {
  .text-content,
  .image-content {
    padding: 0 30px;
  }
}
 @media (max-width: 1024px) {
.design-section,
.visual-section {
    flex-direction: column;
    min-height: auto;
}
.text-content,
.image-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 30px 20px;
}
.visual-section .text-content {
    order: -1;
}
.center-line-container {
    display: none;
}
h2 {
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 1rem;
}
.intro-text {
    width: 100%;
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {
  .heading-about {
    padding: 60px 20px 40px 20px;
  }
} 
/*----------------------------------home page button - about leads button --------------------*/  
.text {
  background-color: black;
  padding: 80px 90px 10px 90px;
  text-align: center;
}
.text-h2 {
  font-size: 58px;
  font-weight: 700;
  line-height: 66px;
  color: #0fafb7;
  margin: 0%;
}
.text-p {
  font-size: 24px;
  line-height: 44px;
  font-weight: 400;
  color: #ffffff;
}
.slider-animation {
  width: 100%;
  background-color: #171717;
}

.slide-content {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.slide-bg-text {
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 128px;
  font-weight: bolder;
  color: #2e2e2e;
  opacity: 10.5;
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
}
.slide-bg {
  position: absolute;
  top: 0%;
  left: 50%;
  width: 1000px;
  height: 300px;
  transform: translateX(-50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.slide-bg-3 {
  position: absolute;
  top: 0%;
  left: 50%;
  width: 760px;
  height: 228px;
  transform: translateX(-50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.content-wrapper {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
 
.content-inner {
  position: relative;
  text-align: center;
  max-width: 700px;
  padding: 20px;
  color: white;
  margin-bottom: 30px;
}
 
.phone {
  max-width: 200px;
  margin: 0 auto 20px;
  display: block;
  position: relative;
  z-index: 2;
}
 
.icon {
  position: absolute;
  z-index: 1;
  animation: floatAround 6s ease-in-out infinite;
}
 
@keyframes floatAround {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(10px, -10px);
  }
  50% {
    transform: translate(-10px, 10px);
  }
  75% {
    transform: translate(10px, 10px);
  }
  100% {
    transform: translate(0, 0);
  }
}
 
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
 
/* Generic icon style */
 
/* slide-1 icon*/
.icon.icon1 {
  top: -38%;
  left: -31%;
  width: 68px;
}
.icon.icon2 {
  top: 30%;
}
.icon.icon3 {
  left: -40%;
  bottom: 33%;
  width: 68px;
  height: 68px;
}
.icon.icon4 {
  right: 5%;
  top: -38%;
  left: auto;
}
.icon.icon5 {
  right: -20%;
  top: 0%;
  left: auto;
  width: 38px;
  height: 38px;
}
.icon.icon6 {
  right: -50%;
  top: -8%;
  left: auto;
  width: 94px;
  height: 94px;
}
.icon.icon7 {
  right: 0%;
  bottom: 45%;
}
 
/*slide-2 icon */
.icon.slide2-1 {
  top: 17%;
  left: -55%;
}
.icon.slide2-2 {
  top: 0%;
  left: 10%;
}
.icon.slide2-3 {
  top: 40%;
  left: -12%;
}
.icon.slide2-4 {
  top: 35%;
  left: 18%;
}
.icon.slide2-5 {
  bottom: 28%;
  left: 18%;
}
.icon.slide2-6 {
  right: 4%;
  top: 13%;
}
.icon.slide2-7 {
  right: 21%;
  top: 46%;
}
.icon.slide2-8 {
  right: -10%;
  top: 40%;
}
.icon.slide2-9 {
  right: -47%;
  bottom: 26%;
}
 
/*slide-3 icon */
.icon.slide3-1 {
  top: 29%;
  left: -22%;
}
.icon.slide3-2 {
  top: 3%;
  left: 12%;
}
.icon.slide3-3 {
  top: 50%;
  left: 3%;
}
.icon.slide3-4 {
  top: 33%;
  right: 16%;
}
.icon.slide3-5 {
  top: 17%;
  right: -23%;
}
.icon.slide3-6 {
  bottom: 34%;
  right: -13%;
}
.animation-h3 {
  font-size: 24px;
}

.description {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
}

/* Custom Slick Arrows at Bottom Center */
.slider-animation .slick-prev,
.slider-animation .slick-next {
  top: auto;
  bottom: 1%;
  left: auto;
  right: 50%;
}
.slider-animation .slick-prev {
  left: 47%;
}
.slider-animation .slick-next {
  right: 47%;
}
.slick-prev.slick-arrow::before {
  content: "\f060";
  font-family: "FontAwesome";
  background-color: #0fafb7;
  color: #ffffff;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  font-size: 20px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.slick-next.slick-arrow::before {
  content: "\f061";
  font-family: "FontAwesome";
  background-color: #0fafb7;
  color: #ffffff;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  font-size: 20px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.slider-animation .slick-dots {
  display: none !important;
}
.bg-image {
  width: 100%;
}
@media screen and (min-width: 100px) and (max-width: 1499px) {
  .slide-content {
    height: 90vh ;
  }
}
@media screen and (min-width: 1600px) and (max-width: 1920px) {
  .slide-content {
    height: 67vh;
  }
}
@media (max-width: 1350px) {
  .slider-animation .slick-prev {
  left: 45%;
  }
  .slider-animation .slick-next {
  right: 45%;
  }
  .text .text-h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .slider-animation .slick-prev {
  left: 40% !important;
  }
  .slider-animation .slick-next {
  right: 40%;
  }
  .slider-animation .slick-dots {
  display: block !important;
  }
   .slide-bg-text {
    font-size: 65px;
  }
   .slide-bg,
  .slide-bg-3 {
    width: 100vw; /* make container full screen width */
    height: 200px; /* or desired height */
    left: 0;
    transform: none;

    background-size: cover; /* makes image fill container */
    background-position: center center; /* center it */
    background-repeat: no-repeat;
  }
}
@media (max-width: 480px) {
  .text {
    padding: 60px 20px 40px 20px;
  }
  .text .text-h2 {
    font-size: 24px;
    line-height: 34px;
  }
  .text-p {
    font-size: 14px;
    line-height: 24px;
  }
  .slide-content {
    height: 95vh ;
  }
  .slide-bg-text {
    font-size: 40px;
  }
}

.back-button {
  color: #0FAFB7;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
  position: absolute;
  left: 4%;
  top: 17%;
}
.fa-arrow-left {
  padding-right: 5px;
}
@media (max-width: 768px) {
  .back-button {
    top: 12%;
    font-size: 20px;
  }
}