.card-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 1rem 0;
  }

  .card-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
  }

  .image-slider {
    display: flex;
    overflow-x: scroll; /* Enable horizontal scrolling */
    gap: 1rem;
    scroll-snap-type: x mandatory; /* Enables snap scrolling */
    padding: 1rem;
  }

  .image-slider::-webkit-scrollbar {
    display: none; /* Hides the scrollbar on Chrome/Safari */
  }

  .image-slider {
    scrollbar-width: none; /* Hides the scrollbar on Firefox */
  }

  /* Slide Items */
  .slide {
    flex: 0 0 auto; /* Prevent shrinking */
    width: 300px; /* Fixed width for each image */
    border-radius: 10px;
    overflow: hidden;
    scroll-snap-align: start; /* Ensures each image snaps into view */
    position: relative;
  }

  /* Image Styling */
  .slide img {
    width: 100%;
    height: 200px; /* Fixed height for images */
    object-fit: cover; /* Ensures the image covers the area */
  }

  /* Text Overlay Styling */
  .slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.54);
    backdrop-filter: blur(2px); 
    color: white;
    text-align: center;
  }

  .slide .overlay h5 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .slide .overlay p {
    font-size: 1rem;
  }
  /* for quick links */

 

    /* this code for headline custamize */

    .stylish-heading {
        text-align: center;
        margin-bottom: 1rem;
        font-size: 1.5rem;
        font-weight: bold;
        color: #333;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        z-index: 1;
      }
  
      .stylish-heading::before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -10px;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #302c2b, #3473df);
        border-radius: 50px;
        z-index: -1;
      }
  
      .stylish-heading span {
        display: inline-block;
        position: relative;
        color: #30130c;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
      }
  
      .stylish-heading span::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, #da9c8d, #e13f3f);
        filter: blur(15px);
        opacity: 0.5;
        z-index: -1;
      }


  /* this code for contact page  */
  body {
    /* background-color: #f8f9fa; */
    font-family: 'Roboto', sans-serif;
}
#cards {
    margin: 40px auto;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.card-header {
    background: linear-gradient(90deg, #007bff, #6c757d);
    color: white;
    padding: 15px 20px;
}
.nav-tabs .nav-link {
    color: #ffffff;
    font-weight: bold;
}
.nav-tabs .nav-link.active {
    background-color: #f9f8f5;
    color: #343a40;
    border-radius: 5px;
}
.tab-content {
    padding: 30px;
}
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #0056b3;
}
ul.list-group {
    text-align: left;
    margin-top: 15px;
}
ul.list-group li {
    font-size: 16px;
    color: #495057;
}
.footer {
    background-color: #1c2331;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}
.footer a {
    color: #ffc107;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}

/* this code for privacy page */

/* body {
  background: #f4f7f9;
  font-family: 'Poppins', sans-serif;
} */
.main-card {
  margin: 50px auto;
  max-width: 1100px;
  background: white;
  border-radius: 12px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.card-header {
  background: linear-gradient(90deg, #6c63ff, #4d86f7);
  color: white;
  padding: 20px;
}
.nav-tabs {
  border-bottom: none;
}
.nav-tabs .nav-link {
  color: white;
  font-weight: 600;
  margin-right: 5px;
  background-color: transparent;
  border: none;
  transition: color 0.3s ease, background 0.3s ease;
}
.nav-tabs .nav-link.active {
  background-color: rgba(253, 246, 246, 0.413);
  color: #6c63ff;
  border-radius: 8px;
}
.tab-content {
  padding: 30px;
}
h5 {
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}
h6 {
  font-weight: 600;
  margin-top: 20px;
  color: #555;
}
p, li {
  /* color: #666; */
  line-height: 1.8;
  font-size: 16px;
}
ul {
  padding-left: 20px;
}
ul li {
  margin-bottom: 10px;
}

@media (max-width: 975px) {
.main-card {
margin: 20px auto;
width: 95%;
}
}