body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.48;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
:root {
    --primary: #fb8b25;
    --secondary: #34AD54;
    --light:#facda2;
    --dark: #091E3E;
}
@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
.lead-popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.75);
  backdrop-filter:blur(8px);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:999999;
  padding:18px;
  opacity:0;
  visibility:hidden;
  transition:0.35s ease;
}

.lead-popup.active{
  opacity:1;
  visibility:visible;
}

.lead-box{
  width:100%;
  max-width:430px;
  background:#101010;
  border-radius:28px;
  padding:34px 28px;
  position:relative;
  text-align:center;
  box-shadow:0 25px 80px rgba(0,0,0,0.45);
  border:1px solid rgba(251,139,37,0.35);
  transform:scale(0.94) translateY(25px);
  transition:0.35s ease;
  overflow:hidden;
}

.lead-popup.active .lead-box{
  transform:scale(1) translateY(0);
}

.lead-box::before{
  content:"";
  position:absolute;
  top:-80px;
  right:-80px;
  width:180px;
  height:180px;
  background:#fb8b25;
  border-radius:50%;
  filter:blur(20px);
  opacity:0.45;
}

.lead-close{
  position:absolute;
  top:14px;
  right:16px;
  width:34px;
  height:34px;
  border:none;
  border-radius:50%;
  background:#fb8b25;
  color:#fff;
  font-size:24px;
  cursor:pointer;
  z-index:3;
}

.lead-screen{
  display:none;
  position:relative;
  z-index:2;
}

.lead-screen.active{
  display:block;
}

.lead-logo{
  width:170px;
  max-width:80%;
  margin:0 auto 22px;
  display:block;
}

.lead-screen h2{
  color:#fff;
  font-size:28px;
  font-weight:700;
  margin-bottom:8px;
}

.lead-screen p{
  color:#cfcfcf;
  font-size:15px;
  line-height:1.6;
  margin-bottom:24px;
}

.lead-screen input{
  width:100%;
  height:52px;
  border:1px solid rgba(255,255,255,0.12);
  background:#1b1b1b;
  color:#fff;
  border-radius:16px;
  padding:0 16px;
  margin-bottom:14px;
  outline:none;
  font-size:15px;
}

.lead-screen input::placeholder{
  color:#aaa;
}

.lead-screen input:focus{
  border-color:#fb8b25;
  box-shadow:0 0 0 4px rgba(251,139,37,0.18);
}

.lead-screen button{
  width:100%;
  height:52px;
  border:none;
  border-radius:30px;
  background:linear-gradient(90deg,#fb8b25,#ff9f43);
  color:#fff;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.lead-screen button:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(251,139,37,0.35);
}

.thank-icon{
  width:72px;
  height:72px;
  background:#fb8b25;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:38px;
  margin:0 auto 18px;
  box-shadow:0 0 30px rgba(251,139,37,0.4);
}

@media(max-width:576px){
  .lead-box{
    max-width:94%;
    padding:30px 20px;
    border-radius:22px;
  }

  .lead-logo{
    width:145px;
  }

  .lead-screen h2{
    font-size:24px;
  }

  .lead-screen p{
    font-size:14px;
  }

  .lead-screen input,
  .lead-screen button{
    height:48px;
  }
}

.whatsapp-float{
  position: fixed;
  left: 22px;
  bottom: 55px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  z-index: 9999;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  text-decoration: none;
  transition: 0.3s ease;
  float: left;
}

.whatsapp-float:hover{
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

@media (max-width:768px){
  .whatsapp-float{
    left: 15px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 27px;
  }
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 500 ;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

/*** Section Title ***/
.section-title::before , .section-title-2::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before{
    width: 90px;
    height: 3px;
}

.section-title::after{
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}



.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

/* ---SLIDER CSS----*/
html,
body{
  overflow-x: hidden;
}
.hero {
   position: relative;
  width: 100%;
  min-height: 500px;
  height: clamp(520px, 85vh, 820px);
  overflow: hidden;
}

/* SLIDE */
.slide {
    position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
    
   /* transition: opacity 1s ease, transform 1s ease; */
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.slide img {
    width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* DARK LEFT GRADIENT */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.3),
    transparent
  );
  top: 0;
}

/* CONTENT */
.content {
  position: absolute;
  top: 30%;
  left: 4%;
  color: white;
  max-width: 600px;
  z-index: 3;
 animation: fadeUp 1s ease;
 
}
.content h2 {
    font-size: 42px;
    font-weight: 500;
    max-height: 156px;
  margin-bottom: 20px;
  color: #fff;
}
.content button {
  background: white;
  color: #f68b1f;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  font-weight: 500;
  cursor: pointer;
}
.content button:hover {
  background: #fb8b25;
  color: white;
}

/* TEXT ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.control {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  cursor: pointer;
  position: relative;
  padding-bottom: 5px;
}
/* ACTIVE UNDERLINE */
.control.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: white;
}
.slider-controls {
  position: absolute;
  bottom: 50px;
  left: 6%;
  display: flex;
  gap: 35px;
  z-index: 5;
}

/* ===== DOTS ===== */
.dots {
  display: none;
}
/* DOT STYLE */
.dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  margin: 0 4px;
  display: inline-block;
}
.dot.active {
  width: 18px;
  border-radius: 10px;
  background: #fff;
}

/* ---SLIDER CSS End----*/

/* MARQUEE TEXT CSS */

.marquee {
  background: #fb8b25;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  font-weight: 500;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 20s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 40px;
  padding-right: 40px;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MARQUEE TEXT CSS  END*/


/* SECTION BG SAME */
.bg-ai{
  background: linear-gradient(68deg, #fff9f7, #e1ebf5);
  mix-blend-mode: multiply;
}
/* DESKTOP GRID */
.platform-wrapper,
 .platform-wrapper-2{
    scroll-behavior: smooth;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  overflow: hidden;
}
/* CARD DESIGN */
.platform-card, 
.platform-card-2{
  border-radius: 30px;
  overflow: hidden;
  padding: 25px;
     background: #F8FCFD;
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}
.platform-card:hover,
.platform-card-2:hover{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
-webkit-transition: All 600ms ease;
}
.platform-card img,
.platform-card-2 img{
 max-width: 100%;
 height: auto;
  margin-bottom: 20px;
}

.platform-card p,
.platform-card-2 p{
    font-family: poppins;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
  color: #6b7280;
  line-height: 1.48;
  font-size: 15px;
  margin-bottom: 0;
  text-align: justify;
}
.platform-card a,
.platform-card-2 a{
  color: #ff7a00;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}


 .feature-card{
     position: relative;
    background: #fff 0% 0% no-repeat padding-box;
    box-shadow: 0 5px 45px #4A50561A;
    border-radius: 30px;
    padding: 35px 25px;
    opacity: 1;
    transition: .3s all;
    height: 100%;
    width: 100%;
}

.feature-card img{
           /* desktop size */
  max-height: 60px;
  object-fit: contain;
filter:invert(34%) sepia(10%) saturate(3748%) hue-rotate(170deg) brightness(96%) contrast(93%);
  margin-bottom: 15px;

  transition: 0.3s;
}

.feature-card p{
  font-size: 18px;
  line-height: 1.5rem;
  font-weight: 500;
  color: #1e1e1e;
  -webkit-font-smoothing: antialiased;
}



/* HOVER EFFECT */
.feature-card:hover{
  transform: translateY(-8px);
    background: #26619c 0% 0% no-repeat padding-box;
    box-shadow: 0 5px 45px #26619C73;
}

/*  HOVER ON NORMAL → BLUE */
.feature-card:hover{
  background: #2f5e92;
}
.feature-card.active img{
  filter:invert(34%) sepia(10%) saturate(3748%) hue-rotate(170deg) brightness(96%) contrast(93%);
}
.feature-card:hover img{
  filter: brightness(0) invert(1);
}
.feature-card:hover i,
.feature-card:hover p{
  color: #fff;
}

/* what can we help css start */

.help-card{
  position: relative;
    background: transparent linear-gradient(175deg, #edf6fe 0%, #eef1fb 49%, #eef1fb 49%, #efecf8 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0 5px 45px #4A50561A;
    border-radius: 30px;
    padding: 25px;
    opacity: 1;
    transition: .3s all;
       width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.help-card h5{
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500!important;
  line-height: 1.5;
      color: #1e1e1e;
}
.help-card p{
  font-size: 15px;
  line-height: 1.48;
      color: #545965;
  -webkit-font-smoothing: antialiased;
}
/* HOVER EFFECT */
.help-card:hover{
  transform: translateY(-8px);
    background: #26619c 0% 0% no-repeat padding-box;
    box-shadow: 0 5px 45px #26619C73;
}
/*  HOVER ON NORMAL → BLUE */
.help-card:hover{
  background: #2f5e92;
}
.help-card:hover h5,
.help-card:hover p,
.help-card:hover a{
  color: #fff;
}

/* what can we help css end */

/* Countdown CSS start*/
.bg-ftime{
  background:#faf2f0 ;
}
.font-w{
  font-weight: 700;
}
.stat-content{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.pad-y-6{
    padding-top: 25px;
    padding-bottom: 25px;
}
.pad-x-4{
  padding-left: 15px;
  padding-right: 15px;
}
.mar-b-1{
  margin-bottom: 5px;
}
.brand-primary {
  color: #fb8b25;
}
.font-size-jumbo {
  font-family: 'Montserrat',serif;
  font-size: 54px;
  line-height: 1.24;
  -webkit-font-smoothing: antialiased;
}
.font-bold {
  font-weight: 700!important;
}
.no-margin-bottom {
  margin-bottom: 0 !important;
  margin-top: 0;
}
.brand-third {
  color: #1e1e1e;
}
.font-medium {
  font-weight: 500;
}
.font-size-big {
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;}
.con_btn{
  padding: 12px 30px!important;
  border-radius: 27px!important;
  border: #fb8b25;
  }
.con_btn:hover{
  color: #fff;
  background-color: #fb861b;
  box-shadow: 0 3px 7px 0 rgba(0, 0, 0, .25);
  transform: translate3d(0, -1px, 0);
  -webkit-transition: All 300ms ease;
  }
.section-title-2::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

/* Countdown CSS End*/


/* Customer SLIDER CSS */
.client-slider{
  overflow: hidden;
  position: relative;
}

/* TRACK */
.client-track{
  display: flex;
  gap: 30px;

  animation: scrollClients 20s linear infinite;
}

/* CARD */
.client-card{
  min-width: 220px;
  height: 90px;

  background: #fff;
  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* IMAGE */
.client-card img{
  max-width: 140px;
  max-height: 40px;
  object-fit: contain;
}
/* ANIMATION */
@keyframes scrollClients{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}
/* ===== SLIDER RESPONSIVE FIX ===== */

/* Tablet */
@media (min-width:769px) and (max-width:1024px){

  .hero{
           min-height: 460px;
        height: 35vh;
  }

  .content{
    top: 34%;
    max-width: 520px;
  }

  .content h2{
    font-size: 36px;
    line-height: 1.2;
  }
}

/* Mobile */
@media (max-width:768px){

  .hero{
         min-height: 350px;
        height: 45vh;
  }

  .content{
    top: auto;
    bottom: 85px;
    left: 20px;
    right: 20px;
    max-width: 100%;
  }

  .content h2{
    font-size: 25px;
    line-height: 1.3;
    max-height: none;
  }

  .slider-controls{
    display:none !important;
  }

  .dots{
    display:block;
    position:absolute;
    bottom:30px;
    width:100%;
    text-align:center;
    z-index:5;
  }
}
/* Media Queries */
@media (max-width:768px){
  .section-title-2::before {
   left: 50%;
    margin-left: -75px;
}
 
.row.g-4{
  justify-content: center;
  row-gap: 10px;
}
.row.g-4 > div{
  max-width: 100%;
  margin: 0 auto 20px;
  padding-left: 10px;
  padding-right: 10px;
}
.bg-ai{
  background: #fff;
}
.platform-wrapper ,
.platform-wrapper-2{
  border-radius: 30px;
  box-shadow:  0 0 15px 0 rgba(0,0,0,.1);
  -webkit-transition: All 600ms ease;
  display: flex !important;
  overflow-x: auto;
  scroll-padding-left: 20px;
  scroll-snap-type: x mandatory;
  width: 100%;
}
.platform-card, 
.platform-card-2{
  flex: 0 0 100%;   
  max-width: 100%;
  padding: 25px;
  scroll-snap-align: center;
  border-radius: 30px;
  box-sizing: border-box;
}
.platform-wrapper::-webkit-scrollbar , 
.platform-wrapper-2::-webkit-scrollbar{
  display: none;
}
.platform-card p ,
.platform-card-2 p{
  flex: unset !important;
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  font-size: 14px;
  line-height: 1.6;
  display: block;
  width: 100%;
  text-align: left;
}
.platform-card img,
.platform-card-2 img  {
  max-width: 100%;  
  height: auto;
  display: block;
  margin: 0 auto 20px;
}
.slider-dots , 
.slider-dots-2{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 35px;
}
.slider-dots span ,
.slider-dots-2 span{
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  transition: 0.3s;
}
.slider-dots span.active, 
.slider-dots-2 span.active{
  background: #ff7a00;
  width: 18px;
  border-radius: 10px;
}

  .feature-card{
  padding: 49px 25px !important;
  margin: 0 33px;
}
.feature-card img{
  max-width: 100%;  
  height: auto;
}
.feature-card h6{
  font-size: 14px;
}
  .help-card{
  padding: 49px 25px !important;
  margin: 0 33px;
}
.help-card h5{
  font-size: 14px;
}
.help-card p{
  font-size: 14px;
}
.content-stat{
  text-align: center;
}

.footer-h{
  padding: 35px 5px;
}
.foot-h{
  font-size:20px!important;
}
.h-100{
  height: 100%!important;
}

/* slider 2 media query */

/* Customer SLIDER media query End */
  .client-card{
    min-width: 160px;
    height: 70px;
    border-radius: 15px;
  }
  .client-card img{
    max-width: 110px;
    max-height: 30px;
  }

}
@media (min-width: 991.98px) {
.facts {
  position: relative;
  margin-top: -75px;
  z-index: 1;
}
}
@media (min-width:992px){

  .row.g-4{
    justify-content: center;
  }

  .row.g-4 > div{
    display: flex;
  }

}
@media (min-width:768px) and (max-width:991px){
  .row.g-4{
    justify-content: center;
  }

  .col-md-6{
    flex: 0 0 50%;
    max-width: 50%;
  }
}
/* iPad / Tablet fix: AI Agents + Lead Platform slider OFF, desktop layout ON */
@media (min-width: 768px) and (max-width: 1024px){
 .section-title-2::before {
   left: 50%;
    margin-left: -75px;
}
  .platform-wrapper,
  .platform-wrapper-2{
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 30px !important;

    overflow: visible !important;
    scroll-snap-type: none !important;
    scroll-padding-left: 0 !important;

    width: 100% !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  .platform-card,
  .platform-card-2{
    flex: unset !important;
    max-width: 100% !important;
    width: 100% !important;
    scroll-snap-align: unset !important;
    box-sizing: border-box;
  }

  .slider-dots,
  .slider-dots-2{
    display: none !important;
  }

/* contact btn mediaquery */

.content-stat{
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.stat-content{
  flex: 0 0 50%;
  max-width: 50%;
}
.row{
  row-gap: 20px;
}
.font-size-jumbo{
  font-size: 36px;  
}
.font-w{
  font-size: 22px;
}
.con_btn{
  display: inline-block;
}
/* ===== TABLET FOOTER FIX ===== */
 /* ABOUT SECTION */
  .footer-about{
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;

    margin-bottom: 35px !important;
  }

  .footer-about .footer-h{
    align-items: center !important;
    text-align: left !important;
  }

  .footer-about .navbar-brand{
     width: 100%;
    display: flex;
    justify-content: center !important;
    margin-bottom: 15px;
  }

  .footer-about .navbar-brand img{
   width: 220px !important;
    max-width: 220px !important;
    height: auto;
    margin: 0 auto !important;
    display: block;
  }

  .footer-about p{
    text-align: left !important;
    max-width: 100% !important;
    margin: 10px 0 0 !important;
    font-size: 15px;
    line-height: 1.8 !important;
    color: #4A5056;
  }

  /* RIGHT SIDE */
  .footer-about + .col-lg-8{
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .footer-about + .col-lg-8 > .row{
    display: flex;
    flex-wrap: wrap;
    row-gap: 25px;
  }

  .footer-about + .col-lg-8 .col-lg-4{
    width: 33.333% !important;
    max-width: 33.333% !important;
    flex: 0 0 33.333% !important;

    padding-left: 20px;
    padding-right: 20px;

    text-align: left !important;
  }

  .footer-about + .col-lg-8 h3{
    text-align: left !important;
    font-size: 20px;
  }

  .link-animated{
    align-items: flex-start !important;
  }

  .link-animated a{
    justify-content: flex-start !important;
    font-size: 15px;
  }

  .footer-about + .col-lg-8 .d-flex.mt-4{
    justify-content: flex-start !important;
  }

  /* COPYRIGHT */
  .footer-menu{
    justify-content: center !important;
    gap: 20px;
  }

  .copy-right{
    text-align: center !important;
    margin-top: 10px;
  }
.tab-fix{
  padding-top:0 !important
}


}
@media (min-width:769px) and (max-width:991.98px) and (max-height:720px){

  .platform-wrapper,
  .platform-wrapper-2{
    border-radius: 30px;
    box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: 100%;
  }

  .platform-card,
  .platform-card-2{
    flex: 0 0 100%;
    max-width: 100%;
    padding: 25px;
    scroll-snap-align: center;
    border-radius: 30px;
    box-sizing: border-box;
  }

  .slider-dots,
  .slider-dots-2{
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin-top: 35px;
  }
}
/* ===== FOOTER MOBILE FIX ===== */
@media (max-width: 767.98px){

  .footer-about{
    margin-bottom: 25px !important;
  }

 
  .footer-about .footer-h{
    align-items: flex-start !important;
    text-align: left !important;
    padding: 35px 8px 20px !important;
  }

  .footer-about .navbar-brand{
    justify-content: flex-start !important;
    width: 100%;
  }

  .footer-about .navbar-brand img{
    width: 170px !important;
    max-width: 170px !important;
    margin: 0 0 10px 0 !important;
  }

  .footer-about p{
    text-align: left !important;
    margin: 12px 0 0 0 !important;
    max-width: 100% !important;
    color: #4A5056;
  }

  .footer-about + .col-lg-8{
    width: 100% !important;
    max-width: 100% !important;
  }

  .footer-about + .col-lg-8 .row{
    row-gap: 8px;
  }

  .footer-about + .col-lg-8 .col-lg-4{
    text-align: left !important;
    margin-bottom: 22px !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .footer-about + .col-lg-8 .pt-5,
  .footer-about + .col-lg-8 .pt-lg-5{
    padding-top: 0 !important;
  }

  .footer-about + .col-lg-8 h3{
    font-size: 18px;
    text-align: left !important;
  }

  .footer-about + .col-lg-8 .section-title{
    margin-bottom: 18px !important;
  }

  .footer-about + .col-lg-8 .section-title::before{
    left: 0 !important;
    margin-left: 0 !important;
  }

  .footer-about + .col-lg-8 .section-title::after{
    left: 0 !important;
  }

  .link-animated{
    align-items: flex-start !important;
  }

  .link-animated a{
    justify-content: flex-start !important;
    font-size: 14px;
    margin-bottom: 8px !important;
  }

  .footer-about + .col-lg-8 .d-flex.mb-2{
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 0 !important;
  }

  .footer-about + .col-lg-8 .d-flex.mb-2 p{
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-about + .col-lg-8 .d-flex.mt-4{
    justify-content: flex-start !important;
    gap: 8px !important;
  }

  .footer-menu{
    justify-content: center !important;
    gap: 15px;
    margin-bottom: 8px;
  }

  .copy-right{
    font-size: 13px;
    line-height: 1.5;
    text-align: center !important;
  }

  .container-fluid[style*="height: 75px"]{
    height: auto !important;
    padding: 15px 10px !important;
  }
}

