@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');

* {
    margin: 0;
    padding: 0;
}

html{
  scroll-behavior: smooth;
}
body {
    font-family: Poppins, sans-serif;
    box-sizing: border-box;
}


.preloader{
  background: #fff;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 999999;
  top: 0;
  left: 0;
  transition: all 300ms linear 0ms;
}
.preloader img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  width:250px;
}
.top_nav {
    display: flex;
    justify-content: space-between;
    background-color: #1c1c1c;
    font-size: 13px;
    height: 38px;
}

.contact_nav {
    align-content: center;
}

.contact_nav a {
    text-decoration: navajowhite;
    color: white;
}

.contact_nav i {
    color: #3abdc1;
    margin: 0 17px;
    font-size: 17px;
}

.socila_link_nav {
    display: flex;
    align-items: center;
}

.socila_link_nav a {
    text-decoration: navajowhite;
    color: white;
    margin: 0px 12px;
    font-size: 15px;
}

.footer_social a{
  
  text-decoration: navajowhite;
  color: white;
  margin: 0px 12px;
  font-size: 30px;
  margin-right: 30px;
}

.bottom_nav {
    display: flex;
    align-content: center;
    padding: 13px 11px;
       box-shadow: 0 4px 10px rgba(0,0,0,0.1);

}

.bottom_nav img {
   width: 65px;
    margin-left: 40px;
}

.navlink {
    display: flex;
    align-content: center;
    justify-content: center;
    margin: auto;
}

.navlink li {
    list-style: none;
    padding: 0 37px;
}

.navlink li a {
    color: #000000;
    text-decoration: none;
    position: relative;
    display: inline-block;
    /* width: 100%; */
    vertical-align: top;

    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


.navlink li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #3abdc1;
    transition: width 0.3s;
}

.navlink li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #3abdc1;
    transition: width 0.3s;
}

.navlink li a:hover::after {
    width: 100%;
}

.navlink li a:hover {
    color: #3abdc1;
    transform: scale(1.05);
}

.navlink {
    list-style: none;
    display: flex;
    gap: 20px;
    position: relative;
}

.navlink li {
    position: relative;
}

.dropdown-menu {
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
    position: absolute;
    top: 229%;
    left: 0;
    background-color: white;
    list-style: none;
    min-width: 225px;
    /* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
    z-index: 999;
    padding: 0;
}

.dropdown-menu li {
    padding: 10px 20px;
    white-space: nowrap;
}

.dropdown-menu li a {
    text-decoration: none;
    color: black;
}


.burger {
  display: none;
 flex-direction: column;
  cursor: pointer;
  margin-left: 20px;
  width: 25px;
  height: 20px;
  justify-content: space-between;
  position: absolute;
  right: 10px;
  top: 66px;
}

.burger div {
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}




.nav_parts{display: flex;
}


/* Hover logic: expand height */
.dropdown:hover .dropdown-menu {
    height: 360px;
    /* Adjust based on total item height (4 items x 40px) */
}

.slider_main {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: 650px;
}

.slider_wrapper {
    position: relative;
    height: 100%;
}

.slider_content {
    position: relative;
    height: 100%;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
    z-index: 1;
}

.slider.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.slider img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transform-origin: center center;
    transition: transform 8s linear;
    transform: scale(1);
}

/* Zoom animation */
@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}

.slider.active img {
    animation: zoomIn 8s linear forwards;
}

@keyframes slideUpFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider_text {
    opacity: 0;
    /* initially hidden */
    animation-fill-mode: forwards;
}

.slider.active .slider_text {
    animation: slideUpFadeIn 1s ease forwards;
}

.slider_text {
    position: absolute;
    top: 200px;
    width: 100%;
    text-align: center;
    color: white;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
    user-select: none;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.slider_text h4 {
    font-family: "Satisfy", cursive;
    font-size: 50px;
    margin: 0;
}

.slider_text h3 {
    font-size: 112px;
    margin: -40px 0 0 0;
}

.slider_text p {
    width: 770px;
    margin: 0 auto;
}


/* Navigation buttons */
.nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: rgb(255, 255, 255);
    border: none;
    color: #3abdc1;
    font-size: 40px;
    /* padding: 10px 15px; */
    cursor: pointer;
    z-index: 10;
    user-select: none;
    width: 65px;
    height: 65px;
    border-radius: 45px;
    margin: 0px 11px;
}

.nav.left {
    left: 10px;
}

.nav.right {
    right: 10px;
}

.nav:hover {
    background: #3abdc1;
    color: white;
}

.heading {

    background-color: #f8f8f8;
    padding-top: 60px;
    text-align: center;
    line-height: 1.2;
    padding-bottom: 60px;
}

.heading h4 {
    font-family: "Satisfy", cursive;
    font-size: 33px;
    color: #3abdc1;
}

.heading h1 {
    font-size: 65px;
}

.heading P {
    font-size: 17px;
    width: 530px;
    margin: auto;
}
 .heading {
    text-align: center;
    margin-bottom: 30px;
  }

 .containor {
    max-width: 100%;
    padding: 40px 55px;
    background: #f9f9f9;
  }

 
  
/* Container - keeps horizontal scroll and padding */
.card-slider-container {
  position: relative;
  overflow: hidden;
  margin: 20px auto;
  padding: 0 10px;
  max-width: 1815px; /* optional max width for large screens */
}

/* The horizontal slider: flex container with smooth scroll */
.card-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  scroll-snap-type: x mandatory;
}

/* Hide scrollbar for Webkit browsers */
.card-slider::-webkit-scrollbar {
  display: none;
}

/* Cards */
.tour-card {
  flex: 0 0 auto;
  width: clamp(280px, 30vw, 430px); /* slightly smaller min for phones */
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  user-select: none;
  scroll-snap-align: start;
}

/* Images */
.tour-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in;
}
.tour-card img:hover {
  transform: scale(1.1);
}

/* Info Bar */
.tour-info-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #21c8d4;
  color: white;
  padding: 10px 0;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* Content inside cards */
.tour-content {
  padding: 15px;
}
.tour-content h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}
.tour-content p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}
.tour-content button {
  border: none;
  padding: 12px;
  background: #21c8d4;
  color: white;
  font-weight: bold;
  margin: 17px 0 5px;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, background 0.2s ease;
}
.tour-content button:hover {
  transform: scale(1.05);
  background: #0b8b94;
}
.tour-content button a {
  color: white;
  text-decoration: none;
}

/* Price */
.price {
  display: flex;
  align-items: center;
}
.price img {
  width: 16px;
  margin-right: 6px;
}
.price p {
  margin: 0;
  font-size: 16px;
  color: #000;
  font-weight: bold;
}

/* Responsive typography */
.heading {
  text-align: center;
  padding: 1rem;
}
.heading h1 {
  font-size: clamp(1.5rem, 4vw, 3rem);
}
.heading p {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
}
.heading2 {
  text-align: center;
  padding: 1rem;
}
.heading2 h1 {
  font-size: clamp(1.5rem, 4vw, 3rem);
}
.heading2 p {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
}

/* Navigation dots styling */
.navigation-dots {
  text-align: center;
  margin-top: 20px;
}
.navigation-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.navigation-dots .dot.active {
  background: #21c8d4;
}
.swiper-slide.highlighted {
      background: #21c8d44d;
  transition: background 0.3s ease-in-out;
  z-index: 10;
  border-radius: 5px;
}



.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
  width: 10px;
  height: 10px;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color,#21c8d4);
}
.swiper-pagination {
  position: relative;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0,0,0);
  z-index: 10;
  margin: 22px 0px;
}
/* Media queries for extra control */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  margin: 0 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #00AEEF; /* Your blue color */
  width: 12px;
  height: 12px;
  box-shadow: 0 0 0 2px #00AEEF30;
}
.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}


.international-card-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background-color: #f7f8fc;
}

.inter-card {
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease;
  margin: 0 33px;
}

.inter-card:hover {
  transform: translateY(-10px);
}

.inter-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.inter-card-cont {
  /* padding: 20px; */
  text-align: center;
}

.inter-card-cont h3 {
  font-size: 20px;
  color: #1e2a38;
  margin-bottom: 5px;
}

.inter-card-cont p {
  font-size: 14px;
  color: #888;
  margin: 5px 0;
}

.prices {
 display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 1px;
}

.prices img {
  width: 18px;
  height: 18px;
}

.prices p {
  font-weight: 600;
  color: #2d2d2d;
  margin: 0;
  font-size: 21px;
}

.inter-card-cont button {
   border: none;
  padding: 12px;
  background: #21c8d4;
  color: white;
  font-weight: bold;
  margin: 17px 0 5px;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, background 0.2s ease;
}

.inter-card-cont button:hover {
 
  transform: scale(1.05);
  background: #0b8b94;

}


.tour-info-bars {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #21c8d4;
  color: white;
  padding: 10px 0;
  font-size: 14px;
  position: relative;
  z-index: 1;
  font-weight: bold;
  font-size: 17px;
}














/* Smaller phones */
@media (max-width: 400px) {
  .tour-card {
    width: 90vw; /* almost full width */
  }
}

/* Medium phones */
@media (max-width: 600px) {
  .tour-card {
    width: 80vw;
  }
  .swiper-pagination {
  position: relative;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0,0,0);
  z-index: 10;
  margin: 0px 0px;
  display: none;
}

.swiper-button-next, .swiper-button-prev {
 display: none;
}
}

/* Tablets */
@media (min-width: 601px) and (max-width: 900px) {
  .tour-card {
    width: 45vw;
  }
}

/* Larger tablets and small laptops */
@media (min-width: 901px) and (max-width: 1200px) {
  .tour-card {
    width: 35vw;
  }
}

/* Footer Styles */

footer {
    color: #ffffff;
}

.footer-column img {
    width: 146px;
}

.footer-column ul li {
    list-style: none;
    margin-bottom: 20px;
}

.footer-column ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #2ed2c9;
}

.footer-main {
    background-color: #1a1a1a;
    display: flex;
    flex-wrap: wrap;
    padding: 60px 40px;
    justify-content: space-around;
    gap: 20px;
}

.footer-column {
    flex: 1 1 250px;
    padding: 20px;
    min-width: 230px;
}

.footer-logo h2 {
    font-size: 36px;
    color: #fcb900;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-logo h2 span {
    text-decoration: underline;
    text-decoration-color: #fcb900;
}



.footer-column p,
.footer-column i {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-right: 10px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column form input {
    padding: 15px 30px;
    border: none;
    background-color: #3d3d3d;
    color: white;
}

.footer-column form input::placeholder {
    color: #cccccc;
}

.footer-column form button {
    padding: 15px;
    background-color: #2ed2c9;
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.footer-column form button:hover {
    background-color: #25b4ac;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 16px;
}

.input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background-color: #3d3d3d;
    color: white;
    box-sizing: border-box;
}

.input-group input::placeholder {
    color: #ccc;
}

.footer-bottom {
    background-color: #000000;
    text-align: center;
    padding: 15px;
    font-size: 13px;
    color: #777777;
}

.whatsapp_icon{
  position: fixed;
  top: 90%;
  z-index: 15;
  right: 20px;
}

.whatsapp_icon img {
  width: 70px;
  animation: slideIn 2s ease-in-out infinite;
}


.whatsapp_icon2{
  font-size: 47px;
  text-decoration: navajowhite;
  color: #10b30b;
  background: white;
     padding: 1px 4px;
  border-radius: 44px;
}







 /* Base styles (same as yours, with minor tweaks) */

.hero {
  position: relative;
  background: url('https://mediaoffice.ae/-/media/2024/november/07-11/12/1-.jpg?h=3299&w=4959&hash=BE8495D260EF3F221274DB337492FB24') no-repeat center center/cover;
  background-attachment: fixed;
  padding: 60px 20px;
  text-align: center;
  z-index: 1;
  overflow: hidden;
  height: 520px;
 
  justify-content: center;
  flex-direction: column;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero h1 {
  font-size: 48px;
  margin: 10px 0;
  color: #fff;
}

.hero h4 {
  font-size: 24px;
  color: #fff;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  color: #fff;
}

/* Video Section */
.video-box {
  position: relative;
  width: 810px;
  max-width: 95%;
  margin: -360px auto 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.video-box img {
 width: 100%;
  display: block;
  border-radius: 5px;
  z-index: 5;
  position: relative;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #00cfff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* Buttons Section */
.book_more_details {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 20px auto 40px;
  padding: 0 15px;
}

.book_more_details button {
  border: none;
  padding: 12px 24px;
  background: #21c8d4;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, background 0.2s ease;
  font-size: 16px;
}

.book_more_details button:hover {
  transform: scale(1.05);
  background: #0b8b94;
}

.book_more_details button a {
  color: white;
  text-decoration: none;
}

/* Responsive Fixes */
@media screen and (max-width: 768px) {
  .hero {
    height: auto;
    padding: 80px 20px 60px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h4 {
    font-size: 18px;
  }

  .hero p {
    font-size: 16px;
  }

  .video-box {
    margin-top: -100px;
  }

  .play-button {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .book_more_details {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .book_more_details button {
    width: 100%;
    max-width: 300px;
  }

  .nav_parts {
    flex-direction: column;}
}






#scrollTopBtn {
  display: none;
  position: fixed;
  top: 800px;
  left: 30px;
  z-index: 99;
  font-size: 24px;
  border: none;
  outline: none;
  background-color: #2ed2c9;
  color: white;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #555;
}











.review-section {
  position: relative;
  background: url('https://easy-feedback.de/wp-content/uploads/2021/08/Ideal-questionnaire-for-your-employee-survey.jpeg') no-repeat center center/cover;
  background-attachment: fixed;
  padding: 60px 20px;
  text-align: center;
  /* color: white; */
  z-index: 1;
  overflow: hidden;
}

.review-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
  z-index: -1;
}



    .review-section h2 {
      color: white;
      font-size: 40px;
      margin-bottom: 10px;
    }

    .review-section p {
      color: #4e4e4e;
      max-width: 641px;
      margin: 0 auto 18px;
    }

    .swiper {
      padding: 30px 0;
    }

    .swiper-slide2 {
      background: white;
      border-radius: 12px;
      padding: 20px;
      max-width: 566px;
      margin: 0 auto;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      text-align: left;
    }

    .review-avatar {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .review-avatar img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      margin-right: 15px;
      object-fit: cover;
    }

    .review-avatar h4 {
      margin: 0;
      font-size: 18px;
      font-weight: bold;
    }

    .review-stars {
      color: #00c3a5;
      margin: 5px 0;
    }

    .swiper-pagination {
      margin-top: 20px;
    }




    .swiper-slide2 {
  background: white;
  border-radius: 12px;
  padding: 20px;
  max-width: 566px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative;
  max-height: 360px; /* Limit card height */
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.swiper-slide2.expanded {
  max-height: none;
}

.show-more-btn {
 display: block;
    background: none;
    color: rgb(77, 77, 77);
    padding: 6px 12px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    position: absolute;
    top: 0;
    right: 18px;
    font-style: italic;
}

.swiper-slide2 .fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, white, transparent);
  pointer-events: none;
  transition: opacity 0.3s;
}
.swiper-slide2.expanded .fade-bottom {
  display: none;
}




    @media (max-width: 768px) {
  /* .swiper-slide {
   
      max-width: 250px;
      width: auto;
    
    } */
    .swiper-slide {
     width: 341px;
}
}


.heading2 {

    /* background-color: #f8f8f8; */
    padding-top: 60px;
    text-align: center;
   line-height: 1;
   color: black;
    padding-bottom: 60px;
}

.heading2 h4 {
    font-family: "Satisfy", cursive;
    font-size: 33px;
    color: #ffffff;
}

.heading2 h1 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: rgb(255, 255, 255);
}

.heading2 P {
    font-size: 17px;
    width: 530px;
    margin: auto;
}
 .heading2 {
    text-align: center;
    margin-bottom: 30px;
  }























.review-section2 {
  background: #f0efef;
  padding: 40px 20px;
}

.review-section2 .heading {
  text-align: center;
  margin-bottom: 20px;
}

.services_card img {
  width: 100%;
  max-width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.services_card {
  text-align: center;
  padding: 10px;
  box-shadow: none;
}

.services_card h2 {
  font-size: 1rem;
  margin-top: 10px;
}

.services_card button {
  border: none;
  padding: 10px 16px;
  background: #21c8d4;
  color: white;
  font-weight: bold;
  margin: 10px 0 5px;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, background 0.2s ease;
}

.reviewSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}








@keyframes slideIn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}


@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column form {
        align-items: center;
    }

    .input-group input {
        padding-left: 45px;
    }
    
    .footer_social a {
  
    margin: 0 10px;
}

.footer-column {
    flex: 1 1 96px;
    padding: 20px;
    min-width: 230px;
}
}




/* Responsive styles */
@media (max-width: 768px) {
  .dropdown:hover .dropdown-menu {
         height: auto;
}
  .bottom_nav {
    flex-wrap: wrap;
    padding: 13px 11px;
  }

  .bottom_nav img {
    margin-left: 0;
    /* margin-bottom: 10px; */
    width: 50px;
  }

  .burger {
    display: flex;
  }

  .navlink {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: white;
    margin-top: 0;
    padding: 10px 0;
  }

  .navlink li {
    padding: 10px 20px;
  }

  .navlink li a {
    color: #000;
    font-size: 16px;
  }

  .navlink.show {
    display: flex;
  }

  /* Dropdown menu inside navlink */
  .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    min-width: 100%;
    background-color: #f9f9f9;
    box-shadow: none;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  /* Show dropdown menu when parent has class 'open' */
  .dropdown.open > .dropdown-menu {
    max-height: 600px; /* enough to show all */
  }

  .dropdown-menu li {
    padding: 8px 0;
  }
  .slider_text p {
  width: auto;
  margin: 0 auto;
}
.slider_text{
    display: none;
}
.heading P {
  font-size: 17px;
  width: auto;
  margin: auto;
}
.heading2 P {
  font-size: 17px;
  width: auto;
  margin: auto;
}
}


@media (max-width: 551px) {
.socila_link_nav {
  display: none;
}

.footer_social{
    display: block;
}
}


@media (max-width: 453px) {
.email {
  display: none;
}
.containor {
  max-width: 100%;
  padding: 40px 24px;
  background: #f9f9f9;
}
}

@media (max-width: 827px) {
.nav  {
  display: none;
}
}
