
*{
  margin: 0;
  padding: 0;
}



  .card-1 {
    transition: background-color 0.5s, color 0.5s;
    
  }

  .card-1:hover {
    background-color: #198754;
    color: white;
  }
  .card img {
    width: 100%;
    border-radius: 15px;
  }
  
  .card {
    border-radius: 20px;
    /* background: #f5f5f5; */
    position: relative;
    /* padding: 10px; */
    border: 5px solid #ffffff;
    transition: 0.5s ease-out;
    overflow: visible;
  }
  
  
  .card-details {
    color: black;
    gap: .5em;
    display: grid;
    place-content: center;
  }
  
  .card-button {
    transform: translate(-50%, 125%);
    width: 60%;
    border-radius: 1rem;
    border: none;
    background-color: #198754;
    color: #fff;
    font-size: 1rem;
    padding: .5rem 1rem;
    position: absolute;
    left: 50%;
    bottom: 0;
    opacity: 0;
    transition: 0.3s ease-out;
  }
  
  .text-body {
    color: rgb(134, 134, 134);
  }
  
  .text-title {
    font-size: 1.5em;
    font-weight: bold;
    background: linear-gradient(to right, rgb(188, 218, 18), rgb(3, 235, 99));
  }
  .text-title1 {
    background: linear-gradient(to right, rgb(188, 218, 18), rgb(3, 235, 99));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  @media (min-width: 1201px) {
   
    .text-title1  {
      font-size: 60;
    }
  }
  .card:hover {
    border-color:  #198754;
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
  }
  
  .card:hover .card-button {
    transform: translate(-50%, 50%);
    opacity: 1;
  }
  /* car-1 */
  .container-fluid .card-1 {
    position: relative;
    cursor: pointer;
    margin-bottom: 20px; 
    border-radius: 10px;
  }
  
 .container-fluid .card-1 .face {
    width: 100%; 
    height: auto; 
    transition: 0.5s;
    border-radius: 0px 0px 10px 10px;
  }
  
  .container-fluid .card-1 .face.face1 {
    position: relative;
    /* background: #333; */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: translateY(100px);
    
  }
 
  .container-fluid .card-1:hover .face.face1 {
    /* background: #198754; */
    transform: translateY(0);
    
  }
   
  .container-fluid .card-1 .face.face1 .content {
    transition: 0.5s;
   
  }
  
  .container-fluid .card-1:hover .face.face1 .content {
    opacity: 1;
    
  }
  .container-fluid .card-1:hover  .face.face1 .content img {
    width: 100%; 
    height: auto; 
    border-radius: 10px 10px 0px 0px;
    
  }
  .container-fluid .card-1 .face.face1 .content img {
    width: 100%; 
    height: auto; 
    border-radius: 10px 
    
  }
    
  /* .container-fluid .card-1 .face.face1 .content h3 {
    margin: 10px 0 0;
    padding: 0;
    color: #fff;
    text-align: center;
    font-size: 1.5em;
  } */
  
  .container-fluid .card-1 .face.face2 {
    position: relative;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: translateY(-100px);
  }
  
  .container-fluid .card-1:hover .face.face2 {
    transform: translateY(0);
  }
  
  .container-fluid .card-1 .face.face2 .content p {
    margin: 0;
    padding: 0;
  }
  
  .container-fluid .card-1 .face.face2 .content a {
    margin: 15px 0 0;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    color: #333;
    padding: 5px;
    border: 1px solid #198754;
    
  }
  
  .container-fluid .card-1 .face.face2 .content a:hover {
    background: #198754;
    color: #fff;
  } 
  /* size for responsive */
  @media (min-width: 320px) and (max-width: 480px) {
    .text-main {
      top: -35px;
     
    }
    .text-main p {
      font-size: 20px;
    }
  }
  
  @media (min-width: 481px) and (max-width: 768px) {
    .text-main {
      top: -45px;
     
    }
    .text-main p {
      font-size: 30px;
    }
  }
  
  @media (min-width: 769px) and (max-width: 1024px) {
    .text-main {
      top: -65px;
    
    }
    .text-main p {
      font-size: 50px;
    }
  }
  
  @media (min-width: 1025px) and (max-width: 1200px) {
    .text-main {
      top: -85px;
   
    }
    .text-main p {
      font-size: 75px;
    }
  }
  
  @media (min-width: 1201px) {
    .text-main {
      top: -90px;
    }
    .text-main p {
      font-size: 90px;
    }
  }
 


 .card::before {
  border-radius: 50%;
  width: auto;
  height: 250px;
  top: 20%;
}

.card::before,
.card::after {
  content: "";
  background-color: #7090fa4b;
  position: absolute;
  filter: blur(10px);
}

.cards-container {
  overflow-x: auto; /* Enable horizontal scrolling */
  display: flex;
  gap: 20px;
  justify-content: flex-start; /* Align cards to the left */
  /* margin: 20px 0; */
  padding: 20px;
  /* background-color: #f0f0f0; */
  border-radius: 10px;
  height: 400px;

}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap; /* Prevent cards from wrapping to new lines */

}

.cards .red,
.cards .blue,
.cards .green {
  font-family: "CustomFont", Arial, Helvetica, sans-serif;
  backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(144, 161, 255, 0.171);
  
}

.cards .card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  color: rgb(0, 0, 0);
  cursor: pointer;
  transition: 400ms;
  position: relative; /* Ensure absolute positioning for pseudo-elements */
  
  


}

.cards .card h5.tip {

  font-weight: bold !important;

}

.cards .card p.second-text {
  font-size: 0.7em;
}

.cards .card:hover {
  transform: scale(1.1, 1.1);
}

.cards:hover > .card:not(:hover) {
  filter: blur(5px);
  transform: scale(0.9, 0.9);
}
/* /////////////////////////////////////// */
@media (min-width: 320px) and (max-width: 480px) {
  .icon{
    top: -50px;
    position: absolute;
   }
   
}

@media (min-width: 481px) and (max-width: 768px) {
  .icon{
    top: -50px;
    position: absolute;
   }
   
}

@media (min-width: 769px) and (max-width: 1024px) {
  .icon{
    top: -70px;
    position: absolute;
   }
   
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .icon{
    top: -80px;
    position: absolute;
   }
   
}

@media (min-width: 1201px) {
  .icon{
    bottom: 90px;
    position: absolute;
   }
   
}

/* ///////////// */
.card::before {
  border-radius: 50%;
  width: auto;
  height: 250px;
  top: 20%;
}

.card::before,
.card::after {
  content: "";
  background-color: #7090fa4b;
  position: absolute;
  filter: blur(10px);
}

.cards-container {
  overflow-x: auto;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  padding: 20px;
  border-radius: 10px;
  height: 400px;
  position: relative;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  transition: transform 0.4s;
}

.cards .red,
.cards .blue,
.cards .green {
  font-family: "CustomFont", Arial, Helvetica, sans-serif;
  backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(144, 161, 255, 0.171);
}

.cards .card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  color: rgb(0, 0, 0);
  cursor: pointer;
  transition: transform 0.4s;
  position: relative;
}

.cards .card h5.tip {
  font-weight: bold !important;
}

.cards .card p.second-text {
  font-size: 0.7em;
}

.cards .card:hover {
  transform: scale(1.1, 1.1);
}

.cards:hover > .card:not(:hover) {
  filter: blur(5px);
  transform: scale(0.9, 0.9);
}

/* Hide scrollbar for larger screens */
@media (min-width: 576px) {
  .cards-container::-webkit-scrollbar {
      display: none;
  }

  .cards-container {
      -ms-overflow-style: none;
      scrollbar-width: none;
  }
}

/* Show scrollbar for smaller screens */
@media (max-width: 575px) {
  .cards-container {
      overflow-x: auto;
  }

  .card::before,
  .card::after {
      content: none;
  }

  .cards .card:hover {
      transform: none;
  }

  .cards:hover > .card:not(:hover) {
      filter: none;
      transform: none;
  }
}

  /* /////////////////////////////////////// */
  @media (min-width: 320px) and (max-width: 480px) {
    .icon {
      top: -50px;
      position: absolute;
    }

  }

  @media (min-width: 481px) and (max-width: 768px) {
    .icon {
      top: -50px;
      position: absolute;
    }

  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .icon {
      top: -70px;
      position: absolute;
    }

  }

  @media (min-width: 1025px) and (max-width: 1200px) {
    .icon {
      top: -80px;
      position: absolute;
    }

  }

  @media (min-width: 1201px) {
    .icon {
      bottom: 90px;
      position: absolute;
    }

  }

  /* //////////////// new  */
  .bg {
    background-color: rgb(46, 46, 46) !important;
    border-radius: 10px !important;
  }
  .video-container {
  width: 100%;
  height: 88vh;
  overflow: hidden;
  position: relative;
}
@media (max-width: 480px) {
.video-container {
  width: 100%;
  height: 50vh;
  overflow: hidden;
  position: relative;
}
}
@media (min-width: 481px) and (max-width: 768px) {
.video-container {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  position: relative;
}
  }
  @media (min-width: 769px) and (max-width: 1024px) {
    .video-container {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  position: relative;
}
  }
  @media (min-width: 1025px) and (max-width: 1200px) {
    .video-container {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  position: relative;
}
  }
.video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.mySlides {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 1.5s;
}

.mySlides.show {
  opacity: 1;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.video-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #ffffff;
font-size: 2rem;
}
  .navbar a {
    color: white;
    z-index: 999 !important;
    
  }

  .navbar a:hover {
    color: #198754 !important;
    font-weight: bold;
     z-index: 999;
  }
  @media (max-width: 480px) {
    .navbar{
      width: 100% !important;
    }
  }
  .logo {
    width: 25px;

  }
  .body-gallery{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.gallery{
  width: 100%;
}
.gallery-container{
  align-items: center;
  display: flex;
  height: 500px;
  margin: 0 auto;
  max-width:  1000px;
  position: relative;
}
.gallery-item{
  height: 300px;
  opacity: 0;
  position: absolute;
  transition: all 0.3s  ease-in-out;
  width: 330px;
  z-index: 0;
  border-radius:15px ;
  background-size: contain;
}
.gallery-item-1{
  left: 15%;
  opacity: 0.4;
  transform: translateX(-50%);
}
.gallery-item-2, .gallery-item-4{
  height: 350px;
  opacity: 0.8;
  width: 380px;
  z-index: 1;

}
.gallery-item-2 {
  left: 30%;
  transform: translateX(-50%);
}
.gallery-item-3 {
  box-shadow: -2px 5px 33px 6px rgba(0,0,0,0.35);
  height: 400px;
  opacity: 1;
  left: 50%;
  transform: translateX(-50%);
  width: 430px ;
  z-index: 2;
}
.gallery-item-4 {
  left: 70%;
  transform: translateX(-50%);

}
.gallery-item-5 {
  left: 85%;
  opacity: .4;
  transform: translateX(-50%);


}
.gallery-controls{
  display: flex;
  justify-content: center;
  margin: 25px 0;
  height: 100px;
  

}
.gallery-controls button{
  background-color: transparent;
  border: 0;
  cursor: pointer;
  font-size: 30px;
  margin: 0;
  padding: 0 12px;
  text-transform: capitalize;
  color: white !important;
}
.gallery-controls-button:focus{
  outline: none;

}
.gallery-controls-prev{
  position: relative;
  
}
.gallery-controls-prev::before{
  border: solid #000;
  border-width: 0 5px 5px 0;
  content: '';
  display: inline-block;
  height: 5px;
  left: -30px;
  padding: 10px;
  position: absolute;
  top: 25%;
  transform: rotate(135deg) translateY(-50%);
  transition: left 0.15s ease-in-out;
  width: 5px;

}
.gallery-controls-prev:hover::before{
  left: -40px;
 
  
}
.gallery-controls-next{
  position: relative;
}
.gallery-controls-next::before{
  border: solid #000;
  border-width: 0 5px 5px 0;
  content: '';
  display: inline-block;
  height: 5px;
  right: -30px;
  padding: 10px;
  position: absolute;
  top: 45;
  transform: rotate(-45deg) translateY(-50%);
  transition: right 0.15s ease-in-out;
  width: 5px;

}
.gallery-controls-next:hover::before{
  right: -40px;
}
.gallery-nav{
  bottom: -15px;
  display: flex ;
  justify-content: center;
  list-style: none;
  padding: 0;
  position: absolute;
  width: 100%;

}
.gallery-nav li{
  background: #ccc;
  border-radius: 50%;
  height: 10px;
  margin: 0 16px;
  width: 10px;
}
.gallery-nav li .gallery-item-selected{
  background: #555;
}
/* Mobile Layout */
@media (max-width: 767px) {
.gallery{
  width: 100%;
  
}
.gallery-container{
  align-items: center;
  display: flex;
  height: 200px;
  margin: 0 auto;
  max-width:  500px;
  position: relative;
}
.gallery-item{
  height: 100px;
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease-in-out;
  width: 170px;
  z-index: 0;
  border-radius: 15px;
  background-size: contain;
}
.gallery-item-1{
  left: 15%;
  opacity: 0.4;
  transform: translateX(-50%);
}
.gallery-item-2, .gallery-item-4{
  height: 125px;
  opacity: 0.8;
  width: 190px;
  z-index: 1;
}
.gallery-item-2 {
  left: 30%;
  transform: translateX(-50%);
}
.gallery-item-3 {
  box-shadow: -2px 5px 33px 6px rgba(0,0,0,0.35);
  height: 150px;
  opacity: 1;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  z-index: 2;
}
.gallery-item-4 {
  left: 70%;
  transform: translateX(-50%);
}
.gallery-item-5 {
  left: 85%;
  opacity: .4;
  transform: translateX(-50%);
}
.gallery-item-1,
.gallery-item-5 {
  display: none; /* Hide images 4 and 5 in mobile view */
}
.gallery-controls {
  display: none; /* Hide controls for mobile */
}
}
.gallery-controls button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  font-size: 30px;
  margin: 0;
  padding: 0 12px;
  text-transform: capitalize;
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-controls-prev::before,
.gallery-controls-next::before {
  display: none; /* Hide the custom arrows */
}

.gallery-controls-prev i,
.gallery-controls-next i {
  font-size: 30px;
  color: black; /* You can adjust the color as needed */
}
.mian-box{
background-color: #198754;
box-shadow: rgba(0, 128, 0, 0.15) 0px 15px 25px, rgba(0, 128, 0, 0.548) 0px 15px 25px;
}
ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  mask: linear-gradient(90deg, #0000, #000, 5, 95%, #0000);
  -webkit-mask: linear-gradient(90deg, #0000, #000, 5, 95%, #0000);
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

ul>li {
  grid-area: 1/1;
  animation: infiniteScroll 20s linear infinite;
  -webkit-text-stroke: 1px #bdbdbd;
  color: transparent;
  font-size: 40px;
}

ul>li:nth-child(2) {
  animation-delay: calc(-0.1428 * 20s);
}

ul>li:nth-child(3) {
  animation-delay: calc(-0.2857 * 20s);
}

ul>li:nth-child(4) {
  animation-delay: calc(-0.4285 * 20s);
}

ul>li:nth-child(5) {
  animation-delay: calc(-0.5714 * 20s);
}

ul>li:nth-child(6) {
  animation-delay: calc(-0.7142 * 20s);
}

ul>li:nth-child(7) {
  animation-delay: calc(-0.8571 * 20s);
}

ul.alt li {
  animation-direction: reverse;
}

@keyframes infiniteScroll {
  14.28% {
      transform: translate(-100%);
  }

  14.29% {
      transform: translate(600%);
  }
}
.custom-text {
  font-size: 20px; /* Equivalent to fs-5 for mobile */
  background: linear-gradient(to right, rgb(188, 218, 18), rgb(3, 235, 99));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  ul>li {
      font-size: 20px;
  }

  .container-fluid.mt-5>h1 {
      font-size: 100px;
  }
}

@media (max-width: 576px) {
  ul>li {
      font-size: 15px;
  }

  .container-fluid.mt-5>h1 {
      font-size: 50px;
      /* Adjusted to be smaller for small screens */
  }
}



.card-2 {
  background-color: rgba(255, 255, 255, 0.2); /* SEMI-TRANSPARENT BACKGROUND COLOR */
  backdrop-filter: blur(10px); /* APPLYING BLUR EFFECT */
  -webkit-backdrop-filter: blur(10px); /* FOR SAFARI SUPPORT */
}
.icon-wrapper {
  display: inline-block;
  border-radius: 10px;
  padding: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER EFFECT FOR ICON WRAPPER */
.icon-wrapper:hover {
  background-color: #cccccc; /* DARK BACKGROUND COLOR */
  transform: scale(1.1); /* SCALE UP ICON */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* SHADOW EFFECT */
}

/* CSS FOR SOCIAL ICONS */
.social-icon {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}

/* HOVER EFFECT FOR SOCIAL ICONS */
.icon-wrapper:hover .social-icon {
  opacity: 0.9; /* SLIGHTLY LESS OPAQUE */
}
/* new-card */
.plus {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10em; /* Adds space between the cards */
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  padding: 1em; /* Adds padding for smaller screens */
}

.newcard {
  position: relative;
  width: 300px;
  height: 400px;
  box-shadow: 0px 1px 13px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 120ms;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 0.5em;
  padding-bottom: 3.4em;
  flex-direction: column;
  margin: 0.5em 0; /* Adds margin for better spacing on smaller screens */
}

.newtitle {
  font-size: 0.9em;
  font-weight: 400;
  color: #000;
  margin-top: 1em;
  text-align: start; /* Center-align text for better readability */
}

.newimage {
  width: auto;
  height: 80%;
  display: grid;
  place-items: center;
}

.read-more {
  position: absolute;
  left: 0;
  bottom: -60px;
  background: #198754;
  color: #fff;
  height: 2.5em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 80ms;
  opacity: 0;
  text-decoration: none;
}

.newcard:hover .read-more {
  bottom: 0;
  opacity: 1;
  color: white;
}

.newcard:active {
  transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .newcard {
      width: 250px;
      height: 350px;
  }
}

@media (max-width: 768px) {
  .newcard {
      width: 200px;
      height: 300px;
  }
  
  .newtitle {
      font-size: 0.8em;
  }
}

@media (max-width: 576px) {
  .newcard {
      width: 100%;
      height: auto;
      padding-bottom: 2em;
  }
  
  .newtitle {
      font-size: 0.7em;
  }
  
  .newimage {
      height: auto;
  }
  
  .read-more {
      width: 100%;
      height: 2em;
  }
}
.iso-image{
width: 100px;
}
@media (max-width: 968px) {
.iso-image{
width: 80px;
}
}
@media (max-width: 768px) {
.iso-image{
width: 60px;
}
}
@media (max-width: 576px) {
.iso-image{
width: 30px;
}
}
.custom-col {
  padding: 0; /* EXAMPLE OVERRIDE */
  margin: 0;  /* EXAMPLE OVERRIDE */
}

.custom-link {
  font-size: inherit;    /* REMOVE FONT-SIZE */
  color: inherit;        /* REMOVE COLOR */
  text-decoration: none; /* REMOVE TEXT DECORATION */
  display: block;        /* MAKE EACH LINK A BLOCK ELEMENT */
  margin-bottom: 5px;    /* ADD SPACE BETWEEN LINKS */
}
.our-partners{
margin-top: 100px;
}
.our-partner{
margin-bottom: 100px;
}
