.elementor-4499 .elementor-element.elementor-element-c7fdf99{--display:flex;}.elementor-4499 .elementor-element.elementor-element-84c694d{--display:flex;}.elementor-4499 .elementor-element.elementor-element-59c038d{--display:flex;}.elementor-4499 .elementor-element.elementor-element-4de5f08{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-25c61d2 *//* ===== RESET ===== */
.mobile-bottom-nav{display:none;}
.mobile-menu{display:none;}

/* HEADER */
.main-header{
display:flex;
align-items:center;
justify-content:space-between;
background:#f5f6f7;
border-bottom: 1px solid #061f48;
height:60px;
position:relative;
bottom:30px ;
}

/* LOGO */
.logo-box{ background:#061f48; padding:20px 60px 20px 40px; clip-path:polygon(0 0, 100% 0, 90% 100%, 0% 100%); display:flex; align-items:center; height: 80px; } .logo-box img{ width:200px ; }

/* NAV */
.nav-links{display:flex;gap:40px;font-size:18px; font-weight:bold;}
.nav-links a{color:#0b2545;text-decoration:none}

/* SOCIAL */
.social-box{ background:#DDF146; padding:22px 70px 22px 90px; clip-path:polygon(10% 0, 100% 0, 100% 100%, 0% 100%); display:flex; gap:26px; align-items:center; justify-content:center; } /* ICON SIZE FIX */ .social-box i{ font-size:22px; /* icon size */ color:#0b2545; display:flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:8px; transition:.3s; } /* HOVER */ .social-box i:hover{ transform:translateY(-3px); }

/* ACTIVE NAV LINK (DESKTOP) */
.nav-links a.active{
    color:#061f48;
    font-weight:700;
    
}

/* UNDERLINE ALWAYS VISIBLE */
.nav-links a.active::after{
    width:100%;
}

/* OPTIONAL: background highlight 🔥 */
.nav-links a.active{
    background:#DDF146;
    padding:6px 12px;
    border-radius:8px;
}

.nav-links a.active::after{
    width:100%;
    animation:lineSlide 0.4s ease;
}

@keyframes lineSlide{
    from{
        width:0;
    }
    to{
        width:100%;
    }
}


/* ================= MOBILE ================= */
@media(max-width:900px){

.nav-links,.social-box{
display:none;
}

.mobile-menu{
display:block;
font-size:26px;
cursor:pointer;
position:absolute;
right:20px;
top:50%;
transform:translateY(-50%);
color:#0b2545;
}

.logo-box{
height:60px;
padding:15px 40px 15px 20px;
}

.logo-box img{
width:140px;
}

/* Bottom Nav */
.mobile-bottom-nav{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#f3f4f6;
display:flex;
justify-content:space-around;
align-items:center;
padding:12px 0;
border-top:1px solid #061f48;
z-index:999;
}

/* icon + text same line */
.mobile-bottom-nav a{
text-decoration:none;
color:#061f48;
font-size:14px;
display:flex;
align-items:center;   /* 🔥 same line */
gap:8px;              /* space between icon & text */
position:relative;
font-weight:500;
}

/* icon size */
.mobile-bottom-nav i{
position: relative;
        font-size: 30px;
        right: -15px;
    color:#061f48;
}

/* REMOVE OLD HIGHLIGHT */
.mobile-bottom-nav a.active::before{
display:none;
}

/* ACTIVE STATE = FILLED ICON + COLOR */
.mobile-bottom-nav a.active{
color:#061f48;
}

.mobile-bottom-nav a.active i{
color:#ddf146;  /* fill color */
}
/* Drawer */
.mobile-drawer{ 
    position:fixed; 
top:0; 
left:-100%; 
width:160px;
height:100%;
background:linear-gradient(#f3f4f6,#fff); transition:.4s;
z-index:9999;
border-radius:0 20px 20px 0; }

.mobile-drawer.active{left:0} .drawer-inner{ padding:60px 25px; display:flex; flex-direction:column; gap:25px; } .drawer-inner a{ font-size:22px; text-decoration:none; color:#0b2545; } .drawer-social{ position:absolute; bottom:30px; left:25px; display:flex; gap:15px; } body{padding-bottom:80px;} }

.mobile-drawer{
display:none;
}

@media(max-width:900px){
.mobile-drawer{
display:block;
}
}



/* ===== ANIMATIONS STRAT ===== */

/* HEADER FADE DOWN */
.main-header{
animation:headerFade 0.8s ease forwards;
opacity:0;
transform:translateY(-20px);
}

@keyframes headerFade{
to{
opacity:1;
transform:translateY(0);
}
}


.logo-box{
animation:logoSlide 1s ease forwards;
transform:translateX(-40px);
opacity:0;
}

@keyframes logoSlide{
to{
transform:translateX(0);
opacity:1;
}
}


.nav-links a{
opacity:0;
transform:translateY(20px);
animation:navFade 0.6s ease forwards;
}

.nav-links a:nth-child(1){ animation-delay:.2s; }
.nav-links a:nth-child(2){ animation-delay:.3s; }
.nav-links a:nth-child(3){ animation-delay:.4s; }
.nav-links a:nth-child(4){ animation-delay:.5s; }
.nav-links a:nth-child(5){ animation-delay:.6s; }

@keyframes navFade{
to{
opacity:1;
transform:translateY(0);
}
}



.nav-links a{
position:relative;
}

.nav-links a::after{
content:"";
position:absolute;
left:0;
bottom:-5px;
width:0;
height:2px;
background:#061f48;
transition:.4s;
}

.nav-links a:hover::after{
width:100%;
}


.social-box{
animation:socialSlide 1s ease forwards;
transform:translateX(60px);
opacity:0;
}

@keyframes socialSlide{
to{
transform:translateX(0);
opacity:1;
}
}


.social-box i:hover{
transform:translateY(-4px) scale(1.1);
}



.mobile-bottom-nav{
animation:bottomSlide .6s ease forwards;
transform:translateY(100%);
}

@keyframes bottomSlide{
to{
transform:translateY(0);
}
}


.mobile-bottom-nav a.active i{
animation:none !important;
transform:none !important;
}

@keyframes pulse{
0%{ transform:scale(1); }
50%{ transform:scale(1.15); }
100%{ transform:scale(1); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-803afb6 */body {
  background: #0b0b0b;
  font-family: inter;
  color: #fff;
  overflow-x: hidden;
}

/* Container */
.hero {
  text-align: center;
  position: relative;

}

/* Top badge */
.badge {
  position: relative;
  margin: 30px auto;   /* ✅ center */
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #1a1a1a;
  border-radius: 20px;
  width: fit-content;

  transform: rotate(-5deg); /* thoda tilt nice lagta hai */
}

/* Left text */
.badge .name {
  color: #dde0e5;
  padding: 8px 14px;
  font-size: 14px;
      font-family: inter;

}

/* Yellow chat bubble */
.badge .chat {
  position: relative;
    background: #ddf146;
    color: #000;
    padding: 10px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-family: inter;
    z-index: 9999;
    top: 2px;
       border-radius: 20px 20px 0px 20px;
}

/* Chat tail */



/* Heading */
.hero h1 {
  font-size: 70px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 1px;
}

/* Subtext */
.hero p {
  margin-top: 20px;
  color: #000;
  font-size: 16px;
}

/* Buttons */
.buttons {
  margin-top: 30px;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  margin: 10px;
  display: inline-block;
  font-weight: 600;
  
}










/* Floating language cards */
.card {
  position: absolute;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 15px;
  font-size: 24px;
  opacity: 0.9;
}

.card.left {
 top: 100px;
    left: 25%;
  transform: rotate(-15deg);
  color:#dde0e5;
  font-family: inter;
   border-radius: 20px 20px 0px 30px;
}

.card.right {
 top: 200px;
    right: 17%;
  transform: rotate(15deg);
  color:#dde0e5;
  font-family: inter;
   border-radius: 20px 20px 30px 0px;
}





/* Bottom logos */
.trusted {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 10px;
}

.trusted span {
  width: 60px;
  height: 1px;
  background: #061f48;
}

.trusted p {
  font-size: 12px;
  color: #061f48;
  letter-spacing: 1px;
}

.brands {
  width: 100%;
  max-width: 600px;
  margin: auto;
  padding: 10px 0px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
    background: #dde0e5;
}

.brands img {
  height: 30px;
  filter: grayscale(100%);
  opacity: 0.7;
}

.brands img:hover {
  filter: grayscale(0%);
  opacity: 1;
}





.hero::before {
  content: "";
  position: absolute;
  width: 60%;
  aspect-ratio: 1/1;
  background: radial-gradient(circle, rgba(221,241,70,0.15), transparent 70%);
  top: -10%;
  left: -10%;
  filter: blur(60px);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  width: 50%;
  aspect-ratio: 1/1;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  bottom: -10%;
  right: -10%;
  filter: blur(60px);
  z-index: 0;
}

/* Big faded background letters */
.bg-text {
  position: absolute;
  font-size: 200px;
  color: #fff;
  font-weight: 900;
  z-index: 0;
  pointer-events: none;
}

.bg1 {
  top: 10%;
  left: 10%;
  transform: rotate(-20deg);
  z-index: -9;
}

.bg2 {
  bottom: 10%;
  right: 10%;
  transform: rotate(20deg);
}








@media (max-width: 768px) {

   .hero {
    padding: 0px 0px 0px 25px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 32px;
    left: 10%;
  }

  .hero p {
    font-size: 14px;
    color: #aaa;
    padding: 0 10px;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 80%;
    margin: auto;
  }

  /* Badge center */
  .badge {
   transform: rotate(6deg);
        top: 0px;
        left: 5%;

  }

  /* Cards reposition */
  .card {
    font-size: 16px;
    padding: 8px;
  }

  .card.left {
    top: 33%;
    left: 1%;
  }

  .card.right {
           top: 13%;
        right: 5%;
        border-radius: 20px 20px 30px 0px;

  }

  /* Background text */
  .bg-text {
    font-size: 80px;
    z-index: -9;
  }
}
  /* Brands */
  @media (max-width: 768px) {

  .brands {
    padding: 20px;
    gap: 20px;
    border-radius: 12px;
    
  }

  .brands img {
    height: 20px;
  }
.trusted {
  margin-top: 60px;
}

.trusted p {
  color: #999;
  letter-spacing: 0px;
  font-size: 10px;
  line-height:1;
}
}


@media (max-width: 768px) {

  
  .brands {
    width: 100%;
    max-width: 100%;
    padding: 15px;
  }

}







/* Floating animation */
@keyframes float {
  0% { transform: translateY(0px) rotate(-15deg); }
  50% { transform: translateY(-15px) rotate(-15deg); }
  100% { transform: translateY(0px) rotate(-15deg); }
}

@keyframes float2 {
  0% { transform: translateY(0px) rotate(15deg); }
  50% { transform: translateY(-20px) rotate(15deg); }
  100% { transform: translateY(0px) rotate(15deg); }
}

.card.left {
  animation: float 4s ease-in-out infinite;
}

.card.right {
  animation: float2 5s ease-in-out infinite;
}




.hero {
  animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.05) rotate(0deg);
}



.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: #ddf146;
  color: #061f48;
  box-shadow: 0 5px 20px rgba(221,241,70,0.3);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(221,241,70,0.6);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-secondary {
  background: #061f48;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-secondary:hover {
  background: #061f48;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);

}
.btn:active {
  transform: scale(0.95);
}
.btn-primary {
  animation: floatBtn 3s ease-in-out infinite;
}

@keyframes floatBtn {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9807b4e */.slider-section {
  background: #061f48;
  padding: 20px 20px;
  color: #fff;
  overflow: hidden;
  border-radius: 20px;
  font-family: inter;
}

.slider-header {
  max-width: 500px;
  margin-bottom: 40px;
}

.slider-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}

.slider-header p {
  color: #aaa;
  margin-top: 10px;
}

/* Slider */
.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
 padding: 20px 0px;

}

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

/* Cards */
.card2 {
  min-width: 260px;
  height: 350px;
  background: #1a1a1a;
  border-radius: 20px;
  flex-shrink: 0;
  scroll-snap-align: center;
  transition: 0.4s;
  opacity: 0.4;
  transform: scale(0.85);
  display: flex;
  align-items: center;
  justify-content: center;
      transform: rotate(354deg);
      width: 0%;

}

/* Active center card */
.card2.active {
  opacity: 1;
  transform: scale(1);
  background: #fff;
  color: #000;
  width: 0%;
}

/* Hover effect */
.card2:hover {
  opacity: 1;
  transform: scale(1);
}

/* Card inner wrapper */
.card-inner {
  position: relative;
  width: 100%;
}

/* Top Image */
.card-img {
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FB STYLE AVATAR */
.avatar-box {
    display:flow ;
  position: relative;
  bottom: 5px; /* overlap position */
  left: 70px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #ffac06;
  overflow: hidden;
  background: #fff;
  margin-bottom: -10px;
  justify-content: center;
}

.avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content spacing (important) */
.card-content {
  padding: 50px 15px 15px;
}











/* Mobile */
@media (max-width: 768px) {

  .slider-section {
    padding: 30px 15px;
  }

  .slider-header h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .slider-header p {
    font-size: 13px;
  }

  .slider {
    gap: 15px;
  }

  .card2 {
    min-width: 85%;
    margin: auto;
    transform: scale(1); /* remove shrink */
  }

  .card2.active {
    transform: scale(1);
  }

  .card-img {
    height: 0px;
  }

  .avatar-box {
    width: 80px;
    height: 80px;
    top: 0px;
  }

  .name-row h4 {
    font-size: 13px;
  }

  .lang {
    font-size: 11px;
  }

  .stat-item {
    gap: 6px;
  }

  .label {
    font-size: 11px;
    min-width: 60px;
    left: 0;
  }

  .percent {
    font-size: 11px;
    left: 0;
  }

  .review-text {
    font-size: 11px;
  }

}



/* Name + language in one line */
.name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 5px 0 10px;
}

/* Name */
.name-row h4 {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
}

/* Language */
.lang {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
}

.card-content {
  padding: 20px;
  text-align: left;
}

.avatar {
  width: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.card-content h4 {
  margin: 5px 0;
}

.lang {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}


/* ONE LINE LAYOUT */
.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  
}

/* Label */
.label {
  font-size: 12px;
  min-width: 70px;
  position: relative;
      left: 5%;
font-family: inter;
  
}

/* Bar container */
.bar-wrap {
  flex: 1;
}

/* Bar */
.bar {
 height: 20px; 
 background: #eee; 
 border-radius: 5px;
 width: 130%;
}

/* Fill */
.fill {
  height: 100%;
  border-radius: 5px;
}

.fill.yellow {
  background: #ffd400;
}

.fill.green {
  background: #4caf50;
}

/* Percentage */
.percent {
    position: relative;
  font-size: 12px;
  font-weight: 600;
  min-width: 35px;
  text-align: right;
  left: 8%;
}

/* SAME COLOR AS BAR */
.yellow-text {
  color: #ffd400;
}

.green-text {
  color: #4caf50;
}


/* Review Box */
.review-box {
  background: #f5f5f5;
  padding: 10px;
  border-radius: 12px;
  margin-top: 12px;
}

/* Stars */
.stars {
  color: #ffd400;
  font-size: 14px;
  margin-bottom: 5px;
}

/* Review text */
.review-text {
  font-size: 12px;
  color: #555;
  line-height: 1.4;
}

.msg {
  background: #ffd400;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
}

.profile {
  background: #222;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-63eaad8 */.map-section {
  position: relative;
  background: #0b0b0b;
  padding: 500px 20px;
  border-radius: 30px;
  overflow: hidden;
}

.map-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, #0b0b0b 90%);
}

.map-bg {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  filter: brightness(0) invert(0.5);
}

.map-bg svg {
  width: 90%;
  height: auto;
  opacity: 0.15;
}

/* WORLD MAP */
.world-map {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  transform: translate(-50%, -50%);
  opacity: 0.25;
  object-fit: contain;
  pointer-events: none;
}

/* DOT GRID */
.dot-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#333 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.3;
}

/* STATS */
.map-stats {
  position: relative;
  display: flex;
  justify-content: space-around;
  z-index: 2;
  text-align: center;
}

.map-stats h2 {
  font-size: 60px;
  font-weight: 800;
    color: #f5f6f7;
     position: relative;
    top: 300%;

}

.map-stats p {
  font-size: 10px;
  color: #aaa;
   position: relative;
    top: 280%;
      font-family: inter;

}

.stats{
    
   
    
}

/* GLOW DOTS */
.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffd400;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 0 15px #ffd400;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* FLOAT CARD */
.map-card {
  position: absolute;
  top: 20%;
  right: 15%;
  background: #fff;
  color: #000;
  padding: 12px;
  border-radius: 12px;
  z-index: 4;
  width: 140px;
  font-family: inter;
}


.map-card::after {
  content: "";
  position: absolute;
  left: 41%;
  top: 90%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 3px;
  transform: rotate(45deg);
}

.avatars {
  display: flex;
  margin: 5px 0;
}

.avatars img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-left: -8px;
  border: 2px solid #fff;
}



@media (max-width: 768px) {

  .map-stats {
    flex-direction: column;
    gap: 20px;
  }

  .map-stats h2 {
    font-size: 26px;
  }

  .map-card {
    right: 10px;
    top: 60%;
    transform: translateY(-50%);
  }

}


.popup {
  position: absolute;
  background: #fff;
  color: #000;
  padding: 10px;
  border-radius: 10px;
  font-size: 12px;
  display: none;
  z-index: 10;
  width: 120px;
}












.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.map-lines line {
  stroke: #ffd400;
  stroke-width: 1.5;
  opacity: 0.4;
  stroke-dasharray: 5;
  animation: dashMove 6s linear infinite;
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -100;
  }
}


.dot {
  transition: 0.3s;
  cursor: pointer;
}

.dot:hover {
  transform: scale(2);
  box-shadow: 
    0 0 15px #ffd400,
    0 0 30px #ffd400,
    0 0 60px rgba(255,212,0,0.6);
}




.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffd400;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 0 15px #ffd400;
}

.wave {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,212,0,0.4);
  animation: wavePulse 2s infinite;
}
@keyframes wavePulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}


.map-card {
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.map-stats {
  animation: fadeUp 1.5s ease forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}






.map-section {
  box-shadow: 0 20px 80px rgba(0,0,0,0.4);
}


@media (max-width: 768px) {

  .map-section {
    padding: 0px 15px;
    border-radius: 20px;
  }

  /* MAP SIZE */
  .world-map {
    width: 180%;
    opacity: 0.2;
  }

  /* STATS STACK */
  .map-stats {
    flex-direction: column;
    gap: 25px;
    margin-top: 60px;
  }

  .map-stats h2 {
    font-size: 28px;
  }

  .map-stats p {
    font-size: 11px;
  }

  /* FLOAT CARD FIX */
  .map-card {
    top: auto;
    bottom: 20px;
    right: 10px;
    width: 120px;
    padding: 10px;
  }

  /* DOT SIZE SMALL */
  .dot {
    width: 7px;
    height: 7px;
  }

  .wave {
    width: 14px;
    height: 14px;
    top: -3px;
    left: -3px;
  }

}/* End custom CSS */
/* Start custom CSS */.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card2.reveal:nth-child(1) { transition-delay: 0.1s; }
.card2.reveal:nth-child(2) { transition-delay: 0.2s; }
.card2.reveal:nth-child(3) { transition-delay: 0.3s; }
.card2.reveal:nth-child(4) { transition-delay: 0.4s; }



.slider-section.reveal {
  transform: translateY(80px) scale(0.95);
}

.slider-section.reveal.active {
  transform: translateY(0) scale(1);
}



body {
  margin: 0;
  padding: 0;
}/* End custom CSS */