body {
  background-color: white;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000;
  --sky: #42CEFF;
  --mid-night: #2c3e50;
}

.section_padding {
  padding-top: 80px;

}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* navbar */
.navbar {
  background-color: var(--black);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-toggler {
  color: white;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(252, 250, 250, 0.5);
  z-index: 1050;
}

.navbar-brand img {
  height: 70px;
  width: 100%;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}


.sidebar {
  width: 280px;
  height: 100vh;
  background: var(--black);
  padding: 16px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.nav-item .nav-link {
  color: #fbf7f7 !important;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 15px !important;
  transition: all 0.3s ease;
  position: relative;
}

.sidebar.show {
  transform: translateX(0);
}

.dropdown-menu a {
  border: 1px solid transparent;
  border-radius: 10px;
  transition: all 0.3s ease;
  color: white;
}

.dropdown-menu a:hover {
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #f5f5f8;
}

.nav-item .dropdown-menu {
  background-color: #000;
}


.menu-item {
  padding: 12px;
  margin-bottom: 8px;
  border-radius: 6px;
  cursor: pointer;
  color: white;
}

.menu-item:hover {
  border: 2px solid white;
}

.menu-item a {
  text-decoration: none;
  color: #ffffff;
  display: block;
}

.submenu li {
  padding: 8px 12px;
  margin-left: 10px;
  border-radius: 5px;
  color: white;
}

.submenu li:hover {
  background: #eef2ff;
}


.nav-btn {

  color: white;
  border: 2px solid white;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: white;
  color: var(--black);
  border: 2px solid white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}


.cta {
  background-color: #084298;
  text-align: center;
}

.cta a {
  color: #fff;
  font-weight: 600;
}

.cta:hover {
  background: #084298;
}

/* nav end */

/* Fullscreen Loader */

/* loader start */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-wrapper.hide-loader {
  opacity: 0;
  visibility: hidden;
}

/* Dot Loader */
.dot-loader {
  text-align: center;
}

.dot-loader img {
  width: 70px;
  height: 70px;
}

/* Dots animation */
.dots {
  margin-top: 10px;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #007bff;
  border-radius: 50%;
  margin: 0 3px;
  animation: jump 0.6s infinite alternate;
}

.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes jump {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

        /* loader end */

/* banner start*/
.ab-content {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;

}

.ab-content h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  flex-direction: column;
}

.ab-content p {
  font-size: 22px;
  margin-top: 30px;
  color: #fff;
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

@media (max-width:489px) {

  .ab-content h1 {
    font-size: 32px;

  }

  .ab-content p {
    font-size: 16px;
    margin-top: 10px;
  }
}

/* banner end */

/* expertise start */
.experties {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  background: linear-gradient(180deg, #ffffff, #f7fafa);
}

.expertise-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;

  /* 🔥 Smooth animation */
  animation: marquee linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

.expertise-track img {
  height: 60px;
 
  flex-shrink: 0;
  filter: grayscale(30%);
  opacity: 0.9;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.expertise-track img:hover {
  transform: scale(1.08);
  filter: grayscale(0);
  opacity: 1;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--move-distance), 0, 0);
  }
}

@media (max-width: 768px) {
  .expertise-track img {
    height: 40px;
  }
}

/* expertise end */

/* inside digital */
.spacer {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 40px; */
  color: #666;
}

.spacer:nth-child(odd) {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.spacer:nth-child(even) {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}


.inside {
  background-color: #000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

.inside-heading {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 3px;
  color: var(--sky);
}

.animated-text {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 20px;
  display: block;
  text-align: center;
  margin-bottom: 40px;
}

.line {
  display: inline;
  text-align: center;
}

.word {
  display: inline-block;
  white-space: nowrap;
}

.char {
  display: inline-block;
  opacity: 0.2;
  filter: blur(5px);
  transition: 0.4s ease;
}

.char.active {
  opacity: 1;
  filter: blur(0);
}

.word-space {
  display: inline-block;
  width: 0.3em;
  opacity: 0.2;
  filter: blur(5px);
  transition: 0.4s ease;
}

.word-space.active {
  opacity: 1;
  filter: blur(0);
}

/* .heading-char {
      display: inline-block;
      opacity: 0.2;
      filter: blur(5px);
      transition: 0.4s ease;
    }

    .heading-char.active {
      opacity: 1;
      filter: blur(0);
    }

    .heading-char.space {
      width: 0.3em;
    } */

@media (max-width: 1200px) {
  .inside-heading {
    font-size: 38px;
    letter-spacing: 2px;
  }

  .animated-text {
    font-size: 22px;
    line-height: 1.7;
    max-width: 1000px;
  }
}

@media (max-width: 1050px) {
  .inside-heading {
    font-size: 28px;
    letter-spacing: 1.5px;
  }

  .animated-text {
    font-size: 18px;
  }
}

@media (max-width: 958px) {
  .inside {
    padding: 40px 20px;
  }

  .inside-heading {
    font-size: 28px;
  }

  .animated-text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 820px;
  }
}

@media (max-width: 768px) {
  .inside-heading {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .animated-text {
    font-size: 0.95rem;
  }

  .spacer {
    font-size: 1.5rem;
  }
}

/* inside digital */

/* future aspiration */
.mission-section h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 30px;
}

.mission-title span,
.values-title span,
.vision-title {

  color: var(--sky);
  font-weight: 700;
  font-size: 38px;
  font-style: italic;
}

.mission-text p {
  color: #232222;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}

.vision-box {
  background: linear-gradient(135deg, #ffffff, #e0f5f8, #c2e7f1);
  background-size: 300% 300%;
  animation: floatCard 4s ease-in-out infinite, gradientMove 8s ease-in-out infinite;
  box-shadow: 2px 2px 5px var(--mid-night);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  border-radius: 15px;
  padding: 40px 30px;
  color: #000 !important;
  height: 100%;
}

.vision-box:nth-child(2) {
  animation-delay: 0.5s;
}

.vision-box:hover {
  transform: translateY(-15px);
  box-shadow: 2px 2px 10px var(--mid-night);
}

/* Floating animation */
@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Gradient animation */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.vision-box small {
  color: var(--black);
  font-weight: 500;
}

.vision-box h3 {
  font-weight: 700;
  margin: 10px 0 15px;
  color: var(--black);
}

.vision-box p {
  font-size: 15px;
  color: var(--black);
  line-height: 1.7;
}

.core-values .value-box {
  border: 1px dashed var(--mid-night);
  border-radius: 10px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.core-values .value-box:hover {
  background-color: #fff7f0;
  transform: translateY(-5px);
}

.core-values i {
  font-size: 32px;
  color: var(--mid-night);
  margin-bottom: 10px;
}

.core-values h5 {
  font-weight: 600;
  color: #000;
}

@media (max-width: 768px) {

  /* Section headings */
  .mission-section h2,
  .mission-title span,
  .values-title span,
  .vision-title {
    font-size: 28px;
    text-align: center;
  }

  /* Mission text */
  .mission-text p {
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
  }

  /* Vision boxes */
  .vision-box {
    padding: 30px 20px;
    margin-bottom: 25px;
    animation: none;
    /* smoother on mobile */
  }

  .vision-box h3 {
    font-size: 20px;
  }

  .vision-box p {
    font-size: 14px;
  }


  .core-values .value-box {
    padding: 20px 15px;
  }

  .core-values i {
    font-size: 28px;
  }

  .core-values h5 {
    font-size: 15px;
  }
}

@media (max-width: 480px) {

  .mission-section h2,
  .mission-title span,
  .values-title span,
  .vision-title {
    font-size: 26px;
  }

  .mission-text p {
    font-size: 13.5px;
  }

  .vision-box {
    padding: 25px 18px;
    border-radius: 12px;
  }

  .vision-box h3 {
    font-size: 18px;
  }

  .vision-box p {
    font-size: 13.5px;
  }

  .core-values i {
    font-size: 26px;
  }

  .core-values h5 {
    font-size: 14px;
  }
}

@media (max-width: 320px) {

  .mission-section h2,
  .mission-title span,
  .values-title span,
  .vision-title {
    font-size: 22px;
  }

  .mission-text p {
    font-size: 13px;
  }

  .vision-box {
    padding: 20px 15px;
  }

  .vision-box h3 {
    font-size: 17px;
  }

  .core-values h5 {
    font-size: 13px;
  }
}

/* end */

/* team start */

.team {
  width: 100%;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  text-transform: uppercase;
  font-size: 38px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 30px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 0;
  max-width: 1600px;
  margin: 0 auto;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(20% - 16px);
  gap: 20px;
  padding: 0 20px;
  transition: transform 0.5s ease-in-out;
  cursor: grab;
}

.carousel-track:active {
  cursor: grabbing;
}

.single-team {
  position: relative;
  overflow: hidden;
  box-shadow: 5px 5px 15px #000;
  border-radius: 25px;
  transition: transform 0.3s ease;
  padding-bottom: 80px;
}

.single-team:hover {
  transform: translateY(-10px);
  z-index: 10;
}

.single-team.shift-up:hover,
.single-team.shift-down:hover {
  transform: translateY(-10px);
}

.team-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-size: auto;
  height: 300px;
  border-radius: 25px 25px 0 0;
}

.team-img img {
  width: 100%;
  transition: transform 0.3s ease;
  display: block;

}

.single-team.active .team-img img {
  transform: scale(1.1);
}

.team-content {
  height: 100px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s;
  background: var(--mid-night);
  border-radius: 0 0 25px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.single-team.active .team-content {
  height: 150px;
  background: var(--mid-night);
}

.team-info {
  transition: all 0.5s;
}

.team-info h3 {
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;

  margin-top: 8px;
}

.single-team.active .team-info h3 {
  color: var(--sky);
}

.team-info p {
  margin-bottom: 5px;
  color: #fff;
  font-size: 16px;
}

.team-text {
  color: #fff;

}

.team-text p {
  font-size: 14px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.carousel-btn {
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 18px;
  color: #eeeff3;
  transition: all 0.3s ease;
  background-color: var(--mid-night);
  border-radius: 25px;
}

.carousel-btn:hover {
  color: white;
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 1400px) {
  .carousel-track {
    grid-auto-columns: calc(25% - 15px);
  }
}

@media (max-width: 1200px) {
  .carousel-track {
    grid-auto-columns: calc(33.333% - 14px);
  }

  .section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .carousel-track {
    grid-auto-columns: calc(50% - 10px);
  }

  .section-title h2 {
    font-size: 32px;
  }

  .team-img {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .carousel-track {
    grid-auto-columns: calc(50% - 10px);
    padding: 0 15px;
    gap: 15px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .team-img {
    height: 240px;
  }

  .carousel-btn {
    width: 45px;
    height: 45px;
  }

  .team-info h3 {
    font-size: 16px;
  }

  .team-info p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {

  .team-info h3 {
    font-size: 14px;
  }

  .team-info p {
    font-size: 12px;
  }

  .team-img {
    height: 200px;
  }

}

/* how we work */
section.reveal-section {
  position: relative;
  height: 600vh;
  background: #fff;
}

.stack-container {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack-item {
  position: absolute;
  width: 600px;
  transition: all 1s ease-in-out;
  left: 10%;
  top: 0;
  transform: translateY(0);
  opacity: 1;
  z-index: 10;
}

.stack-item img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.content-box {
  position: absolute;
  right: 8%;
  width: 35%;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-in-out;
  z-index: 5;
}

.content-box h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}

.content-box p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

.active-vertical {
  transform: translateY(250px);
}

.active-content {
  opacity: 1;
  transform: translateY(0);
}

/* how we work end */

/* service for mobile start */
.auto-service {
  display: none;
}

@media (max-width: 900px) {
  .auto-service h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 90px;
  }

  .auto-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    text-align: center;
    gap: 30px;
  }

  /* IMAGE WRAPPER */
  .left {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;

  }

  .img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .img.active {
    opacity: 1;
  }

  /* DASHED CIRCLE */
  .circle {
    position: absolute;
    inset: -50px;
    /* smaller circle */
    border: 2px dashed rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    animation: spin 14s linear infinite;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  /* DOTS */
  .dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    margin-left: -5px;
    margin-top: -5px;
    border-radius: 50%;
    background: #444;
    opacity: 0.4;
    transition: 0.3s ease;
  }

  .dot.active {
    opacity: 1;
    transform: scale(1.4);
  }

  /* dots perfectly on dashed circle */
  .dot:nth-child(1) {
    transform: rotate(0deg) translateX(160px);
  }

  .dot:nth-child(2) {
    transform: rotate(51deg) translateX(160px);
  }

  .dot:nth-child(3) {
    transform: rotate(102deg) translateX(160px);
  }

  .dot:nth-child(4) {
    transform: rotate(153deg) translateX(160px);
  }

  .dot:nth-child(5) {
    transform: rotate(204deg) translateX(160px);
  }

  .dot:nth-child(6) {
    transform: rotate(255deg) translateX(160px);
  }

  .dot:nth-child(7) {
    transform: rotate(306deg) translateX(160px);
  }

  /* CONTENT CENTER */
  .right {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .content {
    display: none;
  }

  .content.active {
    display: block;
  }

  .content h3 {
    font-size: 22px;
    /* smaller heading */
    margin-top: 60px;
  }

  .content p {
    font-size: 14px;
    /* smaller text */
    line-height: 1.6;
    opacity: 0.8;
  }

}


/* service for mobile end */

/* about service start*/

.position-relative {
  position: relative;

}

.text-center {
  text-align: center;
}

.about-service {
  position: relative;
  overflow: hidden;
}

.about-service h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 30px;
}

.about-bg {
  position: absolute;
  top: 55%;
  left: 0;
  width: 100%;
  height: 620px;

  background: url(../img/about-service.webp);

  transform: translateY(-50%);
  z-index: 0;
}

/* Grid System */
.service-row {
  display: grid;
  gap: 30px;
  margin: 30px;
  position: relative;
  z-index: 1;
}

/* Row 1 & 3: 3 equal columns */
.service-row:first-of-type,
.service-row:last-of-type {
  grid-template-columns: repeat(3, 1fr);
}

/* Row 2: 2 equal columns */
.service-row:nth-of-type(2) {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;

}

/* Service Card Styles */
.service-card {
  background: linear-gradient(135deg, #eaeeef, #cbeff3, #c2e7f1);
  border-radius: 24px;
  padding: 10px 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #064955, #07454d);
  opacity: 0.15;
  top: -100px;
  right: -80px;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #49b0c7, #588285);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(45, 56, 65, 0.3);
}

.icon-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.number-badge {
  position: absolute;
  top: 5px;
  right: 12px;
  font-size: 60px;
  font-weight: 800;
  color: rgb(74, 93, 100);
  opacity: 0.4;
}

.service-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a2942;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 15px;
  color: #5a6b7d;
  line-height: 1.6;
}

/* Middle Content Styles */
.middle-content {
  padding: 20px;


}

.middle-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: #f5f6f8;
  margin-bottom: 20px;
  line-height: 1.3;
}

.middle-content p {
  font-size: 17px;
  color: #f2f5f7;
  line-height: 1.7;


}


@media (max-width: 900px) {
  .about-service h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .service-row {
    gap: 20px;
    margin: 10px 0;
    /* Remove side margins */
  }

  /* Override specific row layouts */
  .service-row:first-of-type,
  .service-row:last-of-type {
    grid-template-columns: repeat(3, 1fr);

  }

  .service-row:nth-of-type(2) {
    grid-template-columns: 1fr;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .service-card {
    padding: 18px;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .icon-wrapper img {
    width: 34px;
    height: 34px;
  }

  .number-badge {
    font-size: 46px;
  }

  .service-content h3 {
    font-size: 20px;
  }

  .service-content p {
    font-size: 14px;
  }

  .middle-content {
    text-align: center;
  }

  .middle-content h3 {
    font-size: 26px;
  }

  .middle-content p {
    font-size: 16px;
  }
}

@media (max-width:900px) {
  .about-service {
    display: none;
  }
}


/* about service end */

/* testimonial start */
.testimonial h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;

}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 0 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 40px;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.testimonial-date {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.verified-badge {
  color: #007bff;
  font-size: 1rem;
  margin-left: 5px;
}

.testimonial-text {
  color: #666;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 15px;
}

.read-more {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
}

.read-more:hover {
  color: #666;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  display: none;
}

@media (max-width: 992px) {

  .title {
    font-size: 28px;
  }

  .testimonial h4 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .testimonial-card {
    padding: 0 10px;
    margin: 0 15px;
  }

  .testimonial-name {
    font-size: 20px;
  }

  .stars {
    font-size: 16px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }

  .carousel-control-prev {
    left: -15px;
  }

  .carousel-control-next {
    right: -15px;
  }
}



@media (max-width: 767px) {
  .testimonial .carousel-item .row {
    display: flex;
    flex-wrap: nowrap;
    text-align: center;
    margin: 0 auto;
  }

  .testimonial h4 {
    font-size: 28px;
    text-align: center;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .testimonial .carousel-item .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    margin: auto;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev {
    left: 0;
    padding-left: 20px;
  }

  .carousel-control-next {
    right: 0;
    padding-right: 20px;
  }

  .testimonial-text {
    font-size: 14px;
    padding: 0 40px;
  }

}

@media (max-width: 576px) {


  .testimonial h4 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .testimonial-card {
    margin: 0;
    padding: 16px;
    border-radius: 8px;
  }

  .testimonial-name {
    font-size: 18px;
  }

  .testimonial-date {
    font-size: 0.85rem;
  }

  .stars {
    font-size: 15px;
  }

  .testimonial-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 36px;
    height: 36px;
  }


}

/* testimonial end */
/* logo */

.logo-carousel {
  background: #fff;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}

.logo-wrapper {
  display: flex;
  width: fit-content;
}

.logo-track {
  display: flex;
  gap: 60px;
  padding-right: 60px;
}

.logo-carousel img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: contain;
  border: 1px solid #ccc;
  transition: transform 0.4s ease;
  flex-shrink: 0;
  background: #fff;
}

.logo-carousel img:hover {
  transform: scale(1.1);
}

.logo-carousel::before,
.logo-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}

@media (max-width: 1400px) {
  .logo-carousel img {
    width: 120px;
    height: 120px;
  }

  .logo-track {
    gap: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1200px) {
  .logo-carousel img {
    width: 110px;
    height: 110px;
  }

  .logo-track {
    gap: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 992px) {
  .logo-carousel img {
    width: 100px;
    height: 100px;
  }

  .logo-track {
    gap: 35px;
    padding-right: 35px;
  }

  .logo-carousel {
    padding: 70px 0;
  }

  .title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .logo-carousel img {
    width: 85px;
    height: 85px;
  }

  .logo-track {
    gap: 25px;
    padding-right: 25px;
  }

  .logo-carousel {
    padding: 60px 0;
  }

  .title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .logo-carousel img {
    width: 70px;
    height: 70px;
  }

  .logo-track {
    gap: 18px;
    padding-right: 18px;
  }

  .logo-carousel {
    padding: 50px 0;
  }

  .title {
    font-size: 28px;
  }
}

@media (max-width: 360px) {
  .logo-carousel img {
    width: 60px;
    height: 60px;
  }

  .logo-track {
    gap: 15px;
    padding-right: 15px;
  }

  .logo-carousel {
    padding: 45px 0;
  }

  .title {
    font-size: 28px;
  }
}

/* logo-carousel end */

/* footer start */

.ct-btn {
  height: 40px;
  width: 40px;
  color: white;
  background-color: var(--sky);
  border: none;
}

.calltoaction .ct-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #007bff;
  color: #fff;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 1050;
  transition: all 0.3s ease;
}

.calltoaction .ct-btn:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

.modal-dialog {
  margin-top: 10vh;
}

.calltoaction {
  position: relative;
  border-radius: 20px;
  animation: glowPulse 2s infinite ease-in-out;
}

.modal-content {
  position: relative;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 15px rgba(154, 210, 240, 0.6);
  border: 1px solid var(--sky);
  animation: modalShadowGlow 2.5s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes modalShadowGlow {
  0% {
    box-shadow:
      0 0 10px rgba(172, 203, 236, 0.4),
      0 0 20px rgba(152, 192, 236, 0.3),
      0 0 30px rgba(154, 196, 241, 0.2);
  }

  50% {
    box-shadow:
      0 0 25px rgba(128, 185, 247, 0.8),
      0 0 45px rgba(96, 167, 243, 0.6),
      0 0 65px rgba(50, 145, 246, 0.5);
  }

  100% {
    box-shadow:
      0 0 10px rgba(103, 171, 244, 0.4),
      0 0 20px rgba(130, 179, 231, 0.3),
      0 0 30px rgba(160, 199, 240, 0.2);
  }
}

.footer_section {
  background-color: var(--black);
  color: white;
  padding: 60px 0 20px;
}


.footer-row {
  align-items: stretch;
}

.footer-col {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 120px;
  width: 100%;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 16px;
  color: #ddd;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}

.footer-tagline span {
  color: var(--sky);
  font-size: 18px;
  font-weight: 600;
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.footer-col a[href^="tel"],
.footer-col a[href^="mailto"] {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-col a[href^="tel"]:hover,
.footer-col a[href^="mailto"]:hover {
  color: var(--sky);
}

.footer-col a[href^="tel"] i,
.footer-col a[href^="mailto"] i {
  margin-right: 8px;
  color: var(--sky);
}



.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--sky);
}


.footer-right {
  background: #3d3738;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.footer-contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.footer-contact-form .form-control {
  background: #fff;
  color: #222;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 10px 12px;
}

.footer-contact-form .form-control::placeholder {
  color: #666;
}

.footer-contact-form .form-control:focus {
  box-shadow: none;
  border-color: #00c4ff;
}

.footer-contact-form textarea {
  flex-grow: 1;
  min-height: 100px;
}

.footer-contact-form .btn {
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 600;
}

.footer-right .btn {
  background-color: var(--sky);
}

.footer-right .btn:hover {
  background-color: #007bff;
}

.footer-social-icons {
  display: flex;
  justify-content: flex-start;
  margin: 22px 0;
  gap: 8px;
}

.social-icon-group {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-icons a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
}

.social-icon-group:hover {
  background: var(--sky);
}

.social-icon-group:hover a {
  color: #000;
}

@media (max-width: 767.98px) {
  .footer-section {
    padding: 0 20px;
  }

  .footer-links {
    font-size: 14px;
  }

  .footer-right {
    margin-top: 12px;
  }

  .footer-heading.ms-5,
  .footer-links.ms-5 {
    margin-left: 0 !important;
  }

  .footer-heading.me-5,
  .footer-links.me-5 {
    margin-right: 0 !important;
  }
}

/* footer end */