* {
  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);
}

.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;
}


.sidebar {
  width: 280px;
  height: 100vh;
  background:var(--black);
  padding: 16px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.nav-item .nav-link {
  color: #fbf7f7 !important;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 15px !important;
  transition: all 0.3s ease;
  position: relative;
}

.sidebar.show {
  transform: translateX(0);
}

.menu-item {
  padding: 12px;
  margin-bottom: 8px;
  border-radius: 6px;
  cursor: pointer;
  color: white;
}

.menu-item:hover {
  border: 2px solid white;
}

.menu-item a {
  text-decoration: none;
  color: #ffffff;
  display: block;
}

.submenu li {
  padding: 8px 12px;
  margin-left: 10px;
  border-radius: 5px;
  color: white;
}

.submenu li:hover {
  background: #eef2ff;
}

.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: #0d6efd;
  text-align: center;
}

.cta a {
  color: #fff;
  font-weight: 600;
}

.cta:hover {
  background: #084298;
} 

/* nav end */

/* 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*/
.p-content {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;

}

.p-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;
}

.p-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) {

  .p-content h1 {
    font-size: 32px;

  }

  .p-content p {
    font-size: 16px;
    margin-top: 10px;
  }
}

/* banner end */


/* performance-about start */

.performance-head h2 {
  font-size: 38px;
  font-weight: 600;
  padding-bottom: 10px;
}

.performance-head p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  padding: 0 10px;
}

.typing-text {
  background: linear-gradient(90deg, #42CEFF, #2c3e50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 38px;
  display: inline-block;
  background-size: 400%;
  animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}
@media (max-width:1120px) {

  .performance-head h2,
  .typing-text {
    font-size: 32px;
  }
}

@media (max-width:998px) {

  .performance-head h2,
  .typing-text {
    font-size: 28px;
  }

  .performance-head p {
    font-size: 16px;
  }
}
@media (max-width:489px) {

  .performance-head h2,
  .typing-text {
    font-size: 28px;
    
  }

  .performance-head p {
    font-size: 16px;
  }
}

/* performance-about end */

/* tab start */

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 10px;
}

.tab-buttons button {
  border: 1px solid var(--mid-night);
  background-color: white;
  transform: translateY(-2px);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;

}

.tab-buttons button:hover {
  border: none;
  color: white;
  background: linear-gradient(90deg, #42CEFF, #2c3e50);
  transform: translateY(-2px);
}

.tab-buttons button.active {
  border: none;
  color: white;
  background: linear-gradient(90deg, #42CEFF, #2c3e50);
}

.tab-content {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.tab-content.active {
  display: flex;
}

.tab-content img {
  max-width: 650px;
  height: 400px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 2px 2px 8px var(--mid-night);
}


.tab-text {
  max-width: 500px;
}

.tab-text h3 {
  
  font-weight: 700;
  color: var(--mid-night);
}

.tab-text p {
  color: #444;
}
@media (max-width:489px) {
  .tab-buttons {
  gap: 20px;
}

.tab-buttons button {
  padding: 10px 16px;
  font-size: 16px;
 }

  .tab-content {
  margin-top: 20px;
}

.tab-content img {
  max-width: 450px;
  height: 350px;

}
}

/* tab end */

/* circle start */

.how-we-work {
  padding: 0 20px;
  padding-top: 80px;
  border-radius: 20px;
  width: 100%;

  margin: 0 auto;
}

.how-we-work h2 {
  font-size: 38px;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;

}

.typing-text {
  background: linear-gradient(90deg, #42CEFF, #2c3e50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 38px;
  display: inline-block;
  background-size: 400%;
  animation: gradientMove 6s ease infinite;
}

.timeline {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 0 auto;
  text-align: center;
}


.line1 {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 92%;
  height: 4px;
  background: repeating-linear-gradient(to right,
      #575758 0 10px,
      transparent 10px 20px);
  transform: translateY(-50%);
  border-radius: 2px;
}

.circle {
  width: 40px;
  height: 40px;
  padding: 5px 5px;

  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;

  background: linear-gradient(90deg, #42CEFF, #2c3e50);
  background-size: 400% 400%;
  animation: gradientFlow 6s ease infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.circle:hover {
  background: linear-gradient(135deg, #ff6b95, #6a3dff, #3bb8ff, #4caf50);
  transform: translateY(-50%) scale(1.2);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.circle.active {
  background: linear-gradient(135deg, #ff6b95, #6a3dff, #3bb8ff, #4caf50);
  transform: translateY(-50%) scale(1.3);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.6);
}

.circle:nth-child(2) {
  left: 5%;
}

.circle:nth-child(3) {
  left: 23%;
}

.circle:nth-child(4) {
  left: 41%;
}

.circle:nth-child(5) {
  left: 59%;
}

.circle:nth-child(6) {
  left: 75%;
}

.circle:nth-child(7) {
  left: 97%;
  transform: translate(-100%, -50%);
}

.content-item {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  max-width: 150px;
}

.content-item.active {
  opacity: 1;
  visibility: visible;
}

.content-item.top {
  bottom: 55%;
}

.content-item.bottom {
  top: 60%;
}

.content-item.active.top {
  animation: slideDown 0.5s ease forwards;
}

.content-item.active.bottom {
  animation: slideUp 0.5s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.content-item .icon-container {
  width: 64px;
  height: 64px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  background-size: 400% 400%;
  animation: gradientFlow 6s ease infinite;
}



.step-num {

  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 12px;
}

.step-num img {
  width: 64px;
  height: 64px;
}

.content-item p {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

.content-item:nth-child(8) {
  left: 5%;
}

.content-item:nth-child(9) {
  left: 23%;
}

.content-item:nth-child(10) {
  left: 41%;
}

.content-item:nth-child(11) {
  left: 59%;
}

.content-item:nth-child(12) {
  left: 77%;
}

.content-item:nth-child(13) {
  left: 95%;
}

@media (max-width:992px) {

  .how-we-work h2 {
    font-size: 32px;

  }

  .typing-text {
    font-size: 32px;
  }

  .step-num img {
    height: 50px;
    width: 50px;
  }

  .content-item p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {

  .how-we-work h2 {
    font-size: 28px;

  }

  .typing-text {
    font-size: 28px;
  }

  .timeline {
    height: 350px;
  }

  .content-item {
    max-width: 120px;
  }

  .content-item .icon-container {
    width: 32px;
    height: 32 px;
  }

  .content-item p {
    font-size: 14px;
  }

  .content-item p {
    font-size: 14px;

  }

  .circle {
    width: 28px;
    height: 28px;
    border-width: 2px;
  }

  .line1 {
    width: 88%;
    height: 4px;

  }

  .step-num img {
    height: 42px;
    width: 42px;
  }
}

@media (max-width: 489px) {

  .how-we-work h2 {
    font-size: 28px;

  }

  .typing-text {
    font-size: 28px;
  }

  .timeline {
    height: 350px;
  }

  .content-item {
    max-width: 120px;
  }

  .content-item .icon-container {
    width: 32px;
    height: 32 px;
  }

  .content-item p {
    font-size: 14px;
  }

  .content-item p {
    font-size: 13px;

  }

  .circle {
    width: 28px;
    height: 28px;
    border-width: 2px;
  }

  .line1 {
    width: 84%;
    height: 4px;

  }
.step-num img {
    height: 32px;
    width: 32px;
    
  }
  
}

/* circle end */

/* case study */

.catagory_section {
  width: 100%;
  padding-top: 40px;
}

.carousel-track-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.slide-image {
  height: 450px;
  flex: 0 0 calc(100% - 20px);
  border-radius: 12px;
  object-fit: cover;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.static-left {
  flex: 1;

}

.main-title {
  font-size: 38px;
  font-weight: 600;
}

.catagory-text {
  font-size: 16px;
}

.highlight {
  color: var(--sky);
  background: linear-gradient(90deg, #42CEFF, #2c3e50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 42px;
  display: inline-block;
  background-size: 400%;
  animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.sub-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--sky);
  padding-bottom: 10px;
  display: inline-block;
  overflow: hidden;
  white-space: wrap;
}

.sub-title span {
  opacity: 0;
  transform: translateY(10px);
  display: inline-block;
  animation: wordJoin 0.45s ease forwards;
}

@keyframes wordJoin {
  0% {
    opacity: 0;
    transform: translateY(10px);
    letter-spacing: 5px;
  }

  60% {
    opacity: 1;
    transform: translateY(0px);
    letter-spacing: 1px;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0px;
  }
}

.stats-mini {
  display: flex;
  gap: 15px;
  /* flex-wrap: wrap; */
  background: linear-gradient(to right, #b3e5fc, #81d4fa);
  padding: 10px 5px;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
}

.stat-item {
  display: flex;

  gap: 25px;
}

.stat-item img {
  width: 60px;
  height: 60px;
  margin-top: 20px;
}

.stat-label {
  font-size: 16px;
  padding: 20px 5px;
  font-weight: 400;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 8px;
}

.carousel-dots .dot {
  width: 11px;
  height: 11px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dots .dot.active {
  background: #007bff;
}

@media (max-width: 998px) {
  .carousel-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .static-left {
    width: 100%;
  }

  .main-title {
    font-size: 32px;
  }

  .highlight {
    font-size: 36px;
  }

  .sub-title {
    font-size: 32px;
  }

  .slide-image {
    height: 380px;
  }

  .stats-mini {
    justify-content: center;
    gap: 15px;
  }

  .stat-item img {
    width: 54px;
    height: 54px;
  }

  .stat-label {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .main-title {
    font-size: 28px;
  }

  .highlight {
    font-size: 32px;
  }

  .sub-title {
    font-size: 28px;
  }

  .slide-image {
    height: 300px;
  }

  .stats-mini {
    gap: 10px;
    padding: 10px 5px;
  }

  .stat-item img {
    width: 48px;
    height: 48px;

  }

  .stat-label {
    font-size: 14px;

  }

  .catagory-text {
    font-size: 14px;
  }

  .catagory_section {
    padding-top: 20px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 28px;
  }

  .highlight {
    font-size: 30px;
  }

  .sub-title {
    font-size: 28px;
  }

  .carousel-track {
    gap: 10px;
  }

  .slide-image {
    height: 240px;
    border-radius: 10px;
  }

  .stat-item img {
    width: 32px;
    height: 32px;
  }

  .stats-mini {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 360px) {
  .main-title {
    font-size: 20px;
  }

  .highlight {
    font-size: 26px;
  }

  .sub-title {
    font-size: 20px;
  }

  .slide-image {
    height: 200px;
  }


  .stat-label {
    font-size: 14px;
  }
}

/* growth-start */

.growth-partner h5 {
  font-size: 38px;
  font-weight: 600;
}

.growth-partner p {
  font-size: 20px;
  font-weight: 400;
  color: #3f3e3e;
}

.gradient-text {
  background: linear-gradient(90deg, var(--black), var(--sky), var(--mid-night));
  background-size: 300%;
  -webkit-background-clip: text;
  color: transparent;
  animation: textGradient 4s linear infinite;
  font-weight: 600;
  font-size: 40px;
}

@keyframes textGradient {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 300%;
  }
}

.sub-text {
  background: linear-gradient(135deg, #667eea, #764ba2, #667eea);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textgradient 4s linear infinite;
  font-size: 20px;
  font-weight: 600;
}

@keyframes textgradient {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 300%;
  }
}

.circle-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.circle-icon {
  width: 180px;
  height: 180px;
  background: #000;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 10px;
  transition: .3s ease;
}

.circle-icon img {
  width: 90px;
  margin-bottom: 6px;
  filter: invert(1);
}

.circle-icon:hover {
  transform: scale(1.08) !important;
}

@keyframes smoothWave {

  0%,
  100% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-12px);
  }

  50% {
    transform: translateY(0px);
  }

  75% {
    transform: translateY(12px);
  }
}

.circle-icon:nth-child(odd) {
  animation-delay: 0s;

}

.circle-icon:nth-child(even) {
  animation-delay: 1.6s;

}

.circle-icon:hover {
  transform: scale(1.1) !important;
}

@media(max-width: 992px) {
  .gradient-text {
    font-size: 32px;

  }

  .growth-partner h5 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
  }

  .growth-partner p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
  }
}

@media(max-width: 768px) {
  .gradient-text {
    font-size: 28px;
  }

  .growth-partner h5 {
    font-size: 28px;
    font-weight: 600;
  }

  .growth-partner p {
    font-size: 16px;
    font-weight: 400;
    color: #3f3e3e;
  }


  .circle-wrapper {
    gap: 12px;
  }

  .circle-icon {
    width: 95px;
    height: 95px;
    padding: 8px;
  }

  .circle-icon img {
    width: 30px;
  }

  .circle-icon span {
    font-size: 10px;
  }
}

/* catagory */

/* testimonial start */
.testimonial h4 {
  font-size: 38px;
  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;

  }

  .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 */

/* faq start */

.faq-section {
  padding-top: 80px;
}

.main-faq {

  margin: 0 auto;
  padding: 0 15px;
  display: flex;
}

.faq-question {
  flex: 0 0 60%;
  padding-right: 62px;
}

.image-section {
  flex: 0 0 40%;
}

.faq-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--black);
  font-family: "Poppins", sans-serif;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 4px;
  background-color: white;
  transition: transform 0.8s ease-in-out;
  border: 2px solid #c4c6c8;
}

.accordion-item:hover {
  transform: translateY(-8px);
}

.accordion-button {
  padding: 15px 20px;
  font-size: 14px;
  color: var(--black);
  font-weight: 300;
  background-color: white;
  box-shadow: none;
  position: relative;
  font-family: "Poppins", sans-serif;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button:not(.collapsed) {
  background-color: white;
  color: #212529;
  box-shadow: none;
}

.accordion-button::after {
  display: none;
}

.accordion-button .fa-plus,
.accordion-button .fa-minus {
  position: absolute;
  right: 10px;
  color: var(--mid-night);
  font-size: 22px;
}

.accordion-button .fa-minus {
  display: none;
}

.accordion-button:not(.collapsed) .fa-minus {
  display: inline;
}

.accordion-button:not(.collapsed) .fa-plus {
  display: none;
}

.accordion-body {
  padding: 5px 20px 20px;
  color: var(--mid-night);
  line-height: 1.6;
  font-weight: 400;
}

.image-section img {
  width: 100%;
  cursor: pointer;
  animation: floatCard 4s ease-in-out infinite;
  transition: opacity 0.3s ease, transform 0.3s ease-in-out;
}

.image-container img:hover {
  transform: translateY(-15px);
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width:1024px) {
  .image-section {
    width: 100%;
    margin-top: 90px;
    margin-right: 15px;
  }

  .main-faq {
    display: flex;
    text-align: center;
    margin: 0 auto;
    padding: 0px 5px;

  }

}

@media (max-width: 998px) {
  .faq-section {
    padding-top: 0;
  }

  .faq-title {
    font-size: 28px;
  }

  .main-faq {
    display: flex;
    margin: 0 auto;
    padding: 0 5px;
  }

  .faq-question {
    text-align: center;
  }

  .image-section {
    width: 100%;
    margin-top: 90px;
    margin-right: 15px;
  }

  .faq-question {
    padding: 25px;
  }
}

@media (max-width: 858px) {

  .faq-title {
    font-size: 28px;
  }

  .main-faq {
    display: flex;
    margin: 0 auto;

  }

  .faq-question {
    text-align: center;
  }

  .image-section {
    width: 100%;
    margin-top: 150px;

  }

  .accordion-button .fa-plus,
  .accordion-button .fa-minus {
    position: absolute;
    right: 5px;
    color: var(--mid-night);
    font-size: 16px;
  }

}

@media (max-width: 768px) {

  .faq-title {
    font-size: 28px;

  }

  .faq-question {
    flex: 0 0 100%;
  }


  .image-section {
    display: none;
  }
}


@media (max-width: 489px) {

  .faq-title {
    font-size: 28px;

  }

  .faq-question {
    flex: 0 0 100%;
  }


  .image-container {
    display: none;
  }
}

/* faq end */

/* logo */

.logo-carousel {
  background: #fff;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

.title {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  color: #333;
  padding-bottom: 30px;
}

.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;
  }
}

@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: 32px;
  }
}

@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: 24px;
  }
}

/* end */

/* footer start */

.footer_section {
  background-color: var(--black);
  color: white;
  padding: 60px 0 20px;
}

.footer-row {
  align-items: stretch;
}

.footer-col {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 120px;
  width: 100%;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 16px;
  color: #ddd;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}

.footer-tagline span {
  color: var(--sky);
  font-size: 18px;
  font-weight: 600;
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.footer-col a[href^="tel"],
.footer-col a[href^="mailto"] {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-col a[href^="tel"]:hover,
.footer-col a[href^="mailto"]:hover {
  color: var(--sky);
}

.footer-col a[href^="tel"] i,
.footer-col a[href^="mailto"] i {
  margin-right: 8px;
  color: var(--sky);
}


.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--sky);
}

.footer-right {
  background: #3d3738;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.footer-contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.footer-contact-form .form-control {
  background: #fff;
  color: #222;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 10px 12px;
}

.footer-contact-form .form-control::placeholder {
  color: #666;
}

.footer-contact-form .form-control:focus {
  box-shadow: none;
  border-color: #00c4ff;
}

.footer-contact-form textarea {
  flex-grow: 1;
  min-height: 100px;
}

.footer-contact-form .btn {
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 600;
}

.footer-right .btn {
  background-color: var(--sky);
}

.footer-right .btn:hover {
  background-color: #007bff;
}

.footer-social-icons {
  display: flex;
  justify-content: flex-start;
  margin: 22px 0;
  gap: 8px;
}

.social-icon-group {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-icons a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
}

.social-icon-group:hover {
  background: var(--sky);
}

.social-icon-group:hover a {
  color: #000;
}


@media (max-width: 767.98px) {
  .footer-right {
    margin-top: 12px;
  }

  .footer-heading.ms-5,
  .footer-links.ms-5 {
    margin-left: 0 !important;
  }

  .footer-heading.me-5,
  .footer-links.me-5 {
    margin-right: 0 !important;
  }
}