* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #fff;
}

/* Base reset and layout */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 15px 30px; */
  background-color: #121314;
  position: relative;
  z-index: 100;
  position: fixed;
  top: 0;
    width: 100%;
    padding: 10px 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav {
  flex-grow: 1;
  justify-items: anchor-center;
}

.main-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-menu li {
  position: relative;
}

.main-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 5px;
  transition: color 0.3s ease;
}

.main-menu a:hover {
  color: #26a9e2;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1e1e1e;
  min-width: 180px;
  border-radius: 6px;
  z-index: 1000;
}

.dropdown-menu li a {
  padding: 10px 20px;
  display: block;
  color: #fff;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.right-header {
  display: flex;
  align-items: center;
  gap: 20px;
  @media (max-width:767px){
    display: none;
  }
}

.call-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #121314;
    transform: translateY(-200%);
    transition: transform 0.3s ease-in-out;
    overflow: hidden;

  }

  .menu-toggle:checked~.main-nav {
    transform: translateY(0);
  }

  .main-menu {
    flex-direction: column;
    padding: 20px;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown>a::after {
    content: ' ▼';
    font-size: 10px;
  }

  .dropdown>input {
    display: none;
  }

  .dropdown-menu {
    position: static;
    display: none;
    background: none;
    padding-left: 15px;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 10px 40px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  font-weight: 700;
}

nav ul li {
  cursor: pointer;
}

.right-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.right-header i {
  font-size: 18px;
  color: white;
  cursor: pointer;
}

.call-box {
  background-color: #111;
  padding: 10px 15px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero {
  background: url('/assets/images/main/hero_2.png') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  padding-left: 120px;
  position: relative;
  margin-top: 91px;

}

.hero::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0008;
}

.hero>div {
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
}

.hero p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

.hero button {
  margin-top: 30px;
  background-color: #26a9e2;
  color: white;
  border: none;
  padding: 15px 30px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
}

.hero .badge {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  color: #26a9e2;
  padding: 20px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  border: 8px solid #26a9e2;
  line-height: 1.2;
}

.solution-section {
  background-color: #141519;
  text-align: center;
  padding: 80px 20px;
}

.solution-section h5 {
  font-size: 12px;
  color: #999;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.solution-section h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 40px;
}

.solution-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.solution-card {
  background-color: #000;
  color: #fff;
  padding: 20px 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 220px;
  position: relative;
}

.solution-card i {
  font-size: 24px;
  color: #26a9e2;
}

.solution-card span {
  font-weight: bold;
}

.solution-card::before {

  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0%;
  background-color: #fff2;
  transition: all 300ms ease;
}

.solution-card:hover:before {
  width: 100%;
}




@media screen and (max-width: 768px) {
  nav ul {
    display: none;
  }

  .hero {
    padding-left: 30px;
  }

  .hero h1 {
    font-size: 42px;
  }
}






.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px;
}

.it-section {
  background-color: #0d0d0d;
}

.it-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.left-images {
  position: relative;
  max-width: 500px;
}

.main-img-wrapper {
  position: relative;
}

.main-img {
  width: 100%;
  border-radius: 5px;
}

.client-count {
  position: absolute;
  top: -25px;
  left: -25px;
  background-color: #111;
  border: 2px solid #26a9e2;
  border-radius: 12px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.client-count i {
  background-color: #26a9e2;
  color: white;
  padding: 10px;
  border-radius: 50%;
  font-size: 18px;
}

.client-count h2 {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
}

.client-count p {
  margin: 0;
  font-size: 14px;
}

.small-img-wrapper {
  margin-top: -80px;
}

.small-img {
  width: 250px;
  border-radius: 10px;
  margin-left: 20px;
  border: 4px solid #fff;
}

.right-content {
  max-width: 650px;
}

.section-label {
  color: #26a9e2;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.main-heading {
  font-size: 36px;
  font-weight: bold;
  margin: 0 0 20px 0;
}

.sub-text {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-icons {
  display: flex;
  gap: 40px;
  margin-bottom: 25px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.service-item i {
  font-size: 26px;
  background-color: #1a1a1a;
  color: #26a9e2;
  padding: 12px;
  border-radius: 50%;
}

.service-item span {
  font-size: 14px;
  line-height: 1.4;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.features-list li {
  margin-bottom: 12px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.features-list i {
  color: #26a9e2;
  margin-right: 10px;
  font-size: 18px;
}

.btn-primary {
  display: inline-block;
  background-color: #26a9e2;
  color: white;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #26a9e2;
}


.top-nav {
  background-color: #26a9e2;
  color: white;
  padding: 10px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-weight: 700;
}

.top-nav span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-nav span::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
}

.top-nav span.active::before {
  background: #ffa500;
}

.section {
  display: flex;
  justify-content: space-between;
  padding: 60px;
  background: url('https://cdn.pixabay.com/photo/2016/11/19/14/00/laptop-1839876_1280.jpg') no-repeat center center/cover;
}

.left {
  max-width: 50%;
}

.left h3 {
  color: #aaa;
  font-size: 12px;
  margin-bottom: 10px;
}

.left h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.left p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-icon {
  color: #26a9e2;
  font-size: 30px;
}

.feature h4 {
  font-weight: 600;
}

.form-box {
  background-color: #26a9e2;
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
}

.form-box input,
.form-box select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  background: #111;
  color: white;
}

.form-box .double-inputs {
  display: flex;
  gap: 10px;
}

.form-box button {
  width: 100%;
  background: black;
  color: white;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.stats {
  display: flex;
  justify-content: space-around;
  padding: 30px;
  background: black;
}

.stat {
  text-align: center;
}

.stat-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #111;
  border: 4px solid #26a9e2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.stat p {
  margin: 0;
  color: #ccc;
}

.projectSlider-section {
  padding: 60px 20px;
  position: relative;
}

.projectSlider-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.projectSlider-subheading {
  color: #a2a2a2;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

.projectSlider-heading {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 40px;
  line-height: 1.4;
}

.projectSlider-slider-container {
  position: relative;
  overflow: hidden;
}

.projectSlider-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.projectSlider-slider::-webkit-scrollbar {
  display: none;
}

.projectSlider-card {
  position: relative;
  flex: 0 0 270px;
  border-radius: 6px;
  overflow: hidden;
}

.projectSlider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.projectSlider-card:hover img {
  transform: scale(1.05);
}

.projectSlider-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, #26a9e2, #26a9e2);
  color: white;
  font-weight: bold;
  font-size: 18px;
  padding: 12px 16px;
  transition: height 0.4s ease, padding 0.3s ease;
  overflow: hidden;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.projectSlider-label-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.projectSlider-label-content {
  font-size: 14px;
  font-weight: normal;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.projectSlider-card:hover .projectSlider-label {
  height: 180px;
  padding: 12px;
}

.projectSlider-card:hover .projectSlider-label .projectSlider-label-content {
  opacity: 1;
}

@media (max-width: 768px) {
  .projectSlider-heading {
    font-size: 30px;
  }
}


.number-change {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 10vh;
}

.stats-container {
  display: flex;
  gap: 40px;
  padding: 60px;
  flex-wrap: wrap;
}

.stat-card {
  background-color: #0d0d0d;
  color: white;
  width: 220px;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow:
    0 4px 20px rgba(255, 255, 255, 0.05),
    0 0 8px rgba(0, 153, 255, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  /* subtle border outline */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 6px 30px rgba(0, 153, 255, 0.2),
    0 0 12px rgba(0, 153, 255, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.stat-icon {
  background-color: #26a9e2;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px #26a9e2;
}

.stat-icon img {
  width: 42px;
  height: 42px;
  filter: brightness(10);
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: #ccc;
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
}



.footer-wrapper-unique {
  background: url('https://www.transparenttextures.com/patterns/dark-geometric.png') no-repeat;
  background-color: #121314;
  padding: 60px 40px;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.footer-col-unique {
  flex: 1;
  min-width: 250px;
  margin: 10px 20px;
}

.footer-logo-unique {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo-unique img {
  width: 40px;
  margin-right: 10px;
}

.footer-logo-unique span {
  font-size: 26px;
  font-weight: 700;
  color: white;
}

.footer-logo-unique span .footer-dot-unique {
  color: #26a9e2;
}

.footer-desc-unique {
  font-size: 15px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 20px;
}

.footer-social-icons-unique i {
  font-size: 20px;
  padding: 10px;
  margin: 5px;
  background: #161616;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-social-icons-unique i:hover {
  background: #26a9e2;
}

.footer-contact-item-unique {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.footer-contact-item-unique i {
  background: #161616;
  padding: 10px;
  font-size: 18px;
  border-radius: 50%;
  margin-right: 10px;
}

.footer-contact-item-unique span {
  color: #ccc;
  font-size: 15px;
}

.footer-title-unique {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
  color: white;
}

.footer-list-unique {
  list-style: none;
  padding-left: 0;
}

.footer-list-unique li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #ccc;
  display: flex;
  align-items: center;
}

.footer-list-unique li i {
  color: #26a9e2;
  margin-right: 8px;
  font-size: 14px;
}

.footer-newsletter-unique {
  background: #0b0b0c;
  padding: 10px 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-newsletter-unique input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 15px;
  flex: 1;
}

.footer-newsletter-unique button {
  background: #26a9e2;
  border: none;
  color: white;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.footer-note-unique {
  text-align: center;
  color: #999;
  font-size: 14px;
  margin-top: 20px;
}

.footer-note-unique a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}

.footer-note-unique a:hover {
  color: #26a9e2;
}

@media (max-width: 768px) {
  .footer-wrapper-unique {
    flex-direction: column;
    padding: 40px 20px;
  }
}



.form-sect {
  background-color: #1a1a1a;
  color: white;
  background-image: url('/assets/images/form-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 50px;
  position: relative;
}

.form-sect::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0008;
}

.form-sect .container-form>div {

  z-index: 1;
}

.container-form {
  display: flex;
  padding: 40px 100px;
}

@media (max-width: 767px) {
  .container-form {
    display: block;
    padding: 20px 60px;
  }

  .form-sect::before {
    background-color: transparent;
  }

  /* .container-form .right-section {
    margin-left: -14%;
  } */
}

.left-section {
  flex: 1;
  margin-right: 40px;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.feature img {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}

.feature h3 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.feature p {
  margin: 8px 0 0;
  color: #ccc;
}

.divider {
  border-top: 1px solid #444;
  margin: 20px 0;
}

.right-section {
  background-color: #000;
  padding: 30px;
  border-radius: 10px;
  /* width: 400px; */
  border: 3px solid #26a9e2;
  max-height: fit-content;
}

.right-section label {
  display: block;
  margin: 15px 0 5px;
  color: white;
}

.right-section input,
.right-section select {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #1e1e1e;
  color: white;
  font-size: 14px;
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.form-row>div {
  flex: 1;
}

.submit-button {
  margin-top: 20px;
  background-color: black;
  color: white;
  font-weight: bold;
  padding: 15px;
  width: 100%;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.stats-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 0;
  background-color: #0e0e0e;
}

.stat {
  text-align: center;
}

.stat-circle-unique {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(#26a9e2 var(--percent), #333 var(--percent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 10px;
  color: white;
}

.stat-circle-unique::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: #0e0e0e;
  border-radius: 50%;
  z-index: 1;
}

.stat-circle-unique span {
  position: relative;
  z-index: 2;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  background-color: #26a9e2;
}

.marquee {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.header-marq {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
  gap: 40px;
}

.header-marq span {
  font-weight: bold;
  font-size: 32px;
  color: white;
}

.dot {
  height: 16px;
  width: 16px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
}

.outline-text {
  font-family: 'Arial Black', sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1.5px white;
}

.star-marq {
  font-size: 32px;
  font-weight: bold;
  margin-left: 5px;
  color: white;
}

.stat-icon img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.stat-icon img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #f6bf41);
}


.testimonial-carousel {
  padding: 6rem 1rem;
  text-align: center;
  position: relative;
}

.testimonial-item {
  color: var(--text-color);
  font-style: italic;
  max-width: 900px;
  margin: auto;
  font-size: 1.3rem;
  line-height: 1.8;
  padding: 2.5rem 3rem;
  background-color: #1a1a1a;
  border-radius: 20px;
  box-shadow: 0 10px 30px #26a9e2;
  position: relative;
  border-top: 5px solid #26a9e2;
  transition: transform 0.5s ease;
}

.testimonial-item::before {
  content: "“";
  font-family: serif;
  font-size: 10rem;
  color: rgba(0, 118, 255, 0.1);
  position: absolute;
  top: -20px;
  left: 20px;
  z-index: 0;
  line-height: 1;
}

.testimonial-item p {
  position: relative;
  z-index: 1;
}

.testimonial-item strong {
  color: var(--primary-color);
  font-size: 1.15rem;
  display: block;
  margin-top: 1.5rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 118, 255, 0.4);
  border-radius: 50%;
  padding: 1rem;
}

@media (max-width: 768px) {
  .testimonial-item::before {
    font-size: 6rem;
    top: -10px;
    left: 10px;
  }

  .testimonial-item p {
    font-size: 1rem;
  }
}



/* about page */
.section-cu{
  margin-top: 91px;
}

.about-hero-abt01 {
  width: 100%;
  height: 70vh;
  /* background-image: url('/assets/images/about-bnr-img.jpg'); */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 91px;
  .overlay-abt01{
    z-index: 2;
  }
}
.text-banner{
  z-index: 2;
  position: relative;
}

.about-hero-abt01::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0008;
}

.contact-intro-cu {
  width: 100%;
  height: 70vh;
  /* background-image: url('/assets/images/about-bnr-img.jpg'); */
  background-size: cover;
  background-position: center;
  position: relative;

  align-items: center;
}

.contact-intro-cu::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0008;
}

.overlay-abt01 {
  width: 100%;
  height: 100%;
  background-color: rgba(2, 5, 10, 0.3);
  display: flex;
  align-items: center;
  padding-left: 100px;
}

.content-abt01 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.content-abt01 h1 {
  font-size: 64px;
  font-weight: 700;
}

.breadcrumb-abt01 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 400;
}

.breadcrumb-abt01 a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb-abt01 .arrow-abt01 {
  font-size: 14px;
}


/* 1 section */

.about-si-cont {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.about-si-cont {
  /* background: linear-gradient(to bottom right, #141519, #0d0d0d); */
  background: url('/assets/images/about-bg-1.png') no-repeat center center fixed;
  padding: 60px 0;
  color: #333;
  padding-bottom: 80px;
}

.si-container {

  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
  align-items: center;
}

@media (min-width: 769px) {
  .si-container {
    max-width: 1200px;

  }

}

@media (max-width: 767px) {
  .si-container {

    display: block;

  }

  .si-right {
    padding-top: 100px;
  }

  .bs-container {
    display: block !important;
    padding: 20px 30px !important;
  }

  .bs-container {
    .bs-left-section {
      width: 100%;
    }

    .bs-right-section {
      width: 100%;
      padding-top: 70px;
    }
  }

  .bs-features {
    gap: 10px !important;
  }

}

.si-left {
  flex: 1;
  position: relative;
}

.si-left__main-img {
  width: 100%;
  height: 740px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

.si-overlay {
  position: absolute;
  bottom: -50px;
  left: -120px;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.si-overlay__img {
  width: 350px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.si-overlay__label {
  position: absolute;
  left: 250px;
  top: 50%;
  transform: translateY(-50%);
  background: #26a9e2;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.si-right {
  flex: 1;
}

.si-right__subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #26a9e2;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.si-right__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

.si-right__desc {
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.si-service {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.si-service__icon {
  width: 50px;
  height: 50px;
}

.si-service__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}

.si-service__text {
  margin: 0;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

.si-button {
  display: inline-block;
  background: #26a9e2;
  color: white;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 30px;
  transition: background 0.3s ease;
}

.si-button:hover {
  background: #26a9e2;
}

.about-choose-us {
  background: #111;
  color: #1a1a1a;
  padding-top: 80px;
}

.bs-container {
  display: flex;
  justify-content: space-between;
  padding: 60px 80px;
  padding-right: 0;
}

.bs-left-section {
  width: 50%;
}

.bs-left-section h4 {
  color: #26a9e2;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.bs-left-section h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #fff;
}

.bs-features {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.bs-feature {
  display: flex;
  align-items: flex-start;
  width: 45%;
  gap: 15px;
}

.bs-feature-icon {
  background: white;
  padding: 15px;
  border-radius: 50%;
}

.bs-feature h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #26a9e2;
}

.bs-feature p {
  font-size: 14px;
  color: #fff;
}

.bs-right-section {
  width: 50%;
  position: relative;
}

.bs-right-section img {
  width: 100%;
  border-radius: 6px;
  height: 600px;
}

@media (max-width: 768px) {
  .bs-right-section img {

    height: 450px;
  }
}

.bs-overlay {
  position: absolute;
  top: 25%;
  left: 0;
  background: #111;
  color: #fff;
  padding: 30px;
  width: 50%;
}

.bs-overlay h3 {
  font-size: 26px;
  line-height: 1.3;
}

.bs-cta {
  background: #26a9e2;
  padding: 12px 20px;
  font-weight: 700;
  color: white;
  font-size: 16px;
  margin-top: 20px;
  display: inline-block;
}


.container-teamui {
  /* max-width: 1300px; */
  margin: 0 auto;
  /* padding: 80px 20px; */
  text-align: center;
  background: url('/assets/images/about-bg-1.png') no-repeat center center fixed;
  /* background-size: cover; */
  color: #1c1c1c;
  padding-bottom: 100px;
}

.subheading-teamui {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}

.heading-teamui {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 60px;
  color: #fff;
}

.team-grid-teamui {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.team-card-teamui {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 320px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.team-card-teamui:hover {
  transform: translateY(-5px);
}

.image-wrapper-teamui {
  position: relative;
}

.team-card-teamui img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.social-icons-teamui {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  display: flex;
  gap: 15px;
  transition: all 0.4s ease;
  z-index: 2;
}

.team-card-teamui:hover .social-icons-teamui {
  opacity: 1;
  transform: translateX(-50%) translateY(0px);
}

.social-icons-teamui a {
  background-color: rgba(255, 255, 255, 0.9);
  color: #1c1c1c;
  border-radius: 50%;
  padding: 12px;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.social-icons-teamui a:hover {
  background-color: #26a9e2;
  color: #fff;
  transform: scale(1.3);
}

.team-card-content-teamui {
  padding: 20px;
}

.team-role-teamui {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #777;
  margin-bottom: 5px;
}

.team-name-teamui {
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
}

@media (max-width: 768px) {
  .heading-teamui {
    font-size: 32px;
  }
}

.submit-button {
  background-color: #26a9e2;
  border: none;
  border-radius: 15px;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 30px;
  padding: 10px;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  text-decoration: none;
  color: white;
}

@media (max-width: 768px) {
  .call-box{
    display: none;
  }
}
.call-box .btn{

  background-color: #26a9e2;
  color: white;
  border: none;
  padding: 15px 30px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  border-radius: 15px;
}

.icon-what{
  position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
}