@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Nothing+You+Could+Do&display=swap");
@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");
:root {
  --color-white: #fff;
  --color-black: #000;
  --color-dark: #777;
  --bg2-color: #040e27;
  --blue-color: rgb(38, 31, 179);
  --bluehover-color: rgb(60, 50, 200);
  --back-ground: #1ec6b6;
  --back-ground2: #ff4a52;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--color-white);
  background: #f7fafd;
}
li {
  list-style: none;
}
.page-item.active .page-link{
  background-color: var(--blue-color)!important;
 border: var(--blue-color)!important;
 color: var(--white-color)!important;

}
.page-item .page-link{
  color: var(--blue-color)!important;
}
a{
  color: var(--color-white);
}
a:hover {
  text-decoration: none;
  color: var(--color-white);

}
.white {
  background-color: #fff;
}
/* Start NavBar */
header {
  height: 100vh;
}
.head-nav {
  position: fixed;
  width: 100%;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar {
  height: 90px;
}
.navbar-collapse {
  flex-grow: 0;
}
.navbar-nav {
  gap: 1.2rem;
}
.nav-item {
  position: relative;
}
.dropdown-item{
  color: var(--color-black)!important;
}
.nav-link {
  color: var(--color-white);
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
}
.nav-link:hover {
  color: var(--color-hover);
}
.call{
  text-align: center;
}
.call p{
  margin: 0;
}
.call a{
  color: var(--color-white);
}
.call a i{
  margin-right: 10px;
}

.booknow a{
  padding: 13px 20px;
    border-radius: 25px;
    background-color: var(--blue-color);
    cursor: pointer;
    transition: 0.3s ease-in;
}
.booknow a:hover{
  background-color: var(--color-black);
}
.scrolled {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scrolled h2,
.scrolled ul li a,
.scrolled .call p,
.scrolled .call a
 {
  color: var(--blue-color) !important;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
}
.navbar-brand {
  color: var(--color-white);
}

.carousel-caption {
  top: 50%;
}
.carousel-caption h1 {
  font-family: "Nothing You Could Do", cursive;
  /* font-size: 150px; */
  text-transform: capitalize;
  font-weight: 400;
  line-height: 2;
  color: #fff;
  margin-bottom: 0;
}
.carousel-caption p {
  font-size: 20px;
  font-weight: 400;
}
.navbar-toggler-icon {
  color: var(--color-white);
}
.carousel-caption .btn {
  padding: 12px 35px;
  background-color: var(--blue-color);
  outline: none;
  border: none;
  transition: 0.3s ease-in;
}
.carousel-caption .btn:hover {
  padding: 12px 35px;
  background-color: var(--color-black);
  outline: none;
  border: none;
}
/* .navbar-collapse{
    background-color: var(--color-white);
    margin-top: 4rem;
} */
.btn-model {
  background-color: var(--back-ground2);
  color: var(--color-white);
  border: none;
  height: 90px;
  width: 70px;
  border-radius: 0;
}
.btn-model:hover {
  background-color: var(--back-ground);
  color: var(--color-white);
}
.modal .btn {
  background-color: var(--back-ground2);
  color: var(--color-white);
}
.modal .btn:hover {
  background-color: var(--back-ground);
  color: var(--color-white);
}
.modal-content {
  color: var(--color-black);
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
  /* background-color: var(--bg2-color); */
  top: 3.9rem;
}
.dropdown-item {
  padding: 0.5rem 1.5rem;
  color: var(--color-white);
  transition: 0.3s ease-in;
}
.dropdown-item:hover {
  background-color: var(--blue-color);
  color: var(--color-white)!important;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 2s ease-in-out 3s forwards;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
@media (max-width: 767px) {
  header {
    height: 50vh;
    overflow: hidden;
  }
  .callme{
    display: none;
  }
  .booknow{
    display: none;
  }
  .carousel-item img {
    height: 50vh;
  }
  .carousel-caption {
    top: 30%;
  }
  .carousel-caption h1 {
    font-size: 1.3rem;
  }
  .btn-model {
    display: none;
  }

  .nav-item {
    padding: 1rem;
  }
  .nav-item:hover .nav-link {
    color: var(--blue-color);
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu{
    background: transparent;
    overflow: scroll;
    /* height: 200px; */
  }
  .navbar-collapse {
    background-color: rgba(18, 21, 25, 0.98);
    margin-top: 4rem;
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 28px;
    left: 0;
  }
  .footer .footer_top .footer_widget p{
    flex-direction: column;
    gap: 0.3rem!important;
  }
  .navbar-nav{
    gap:0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .callme{
    display: none;
  }
  .booknow{
    display: none;
  }
  .btn-model {
    display: none;
  }
  .nav-link {
    color: var(--color-white);
    transition: 0.3s ease-in-out;
    text-transform: uppercase;
}
  .navbar-collapse {
    background-color: rgba(18, 21, 25, 0.98);
        margin-top: 4rem;
        position: absolute;
        width: 100%;
        height: 100vh;
        top: 28px;
        left: 0;
  }
  .nav-item {
    padding: 1rem;
  }
  .nav-item:hover {
    color: var(--blue-color);
  }
  .dropdown-menu{
    background: transparent;
    border: none;
  }
}
/* ---------------------------------------------- */
/* ---------------------------------------------- */


.social-sidebar {
  position: fixed;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 12;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

/* ألوان الأيقونات */
.facebook {
  background-color: var(--blue-color);
  color: white;
}

.youtube {
  background-color: var(--blue-color);
  color: white;
}

.instagram {
  background-color: var(--blue-color);
  color: white;
}

/* تأثير اللمعان عند التحويم */
.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}


.custom-card {
  position: relative;
  cursor: pointer;
  margin: 1rem;
  /* width: 280px; */
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.card-content {
  position: relative;
  color: white;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-content i {
  font-size: 22px;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.card-border {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
}
.wantgo {
  background-color: var(--color-white);
}
.wantgo .row {
  align-items: center;
  justify-content: space-around;
}
.wantgo h3 {
  font-size: 24px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
}
.wantgo .bg-trans {
  background: transparent;
  border: 1px solid #777;
  color: var(--color-white);
}
.wantgo .form-group {
  margin: 0;
}
.wantgo .btn {
  background-color: var(--back-ground2);
  color: var(--color-white);
  transition: 0.3s ease-in;
}
.wantgo .btn:hover {
  background-color: var(--back-ground);
}
/* End wantgo */

/* Start Section Destination  */
.Destination .title {
  color: var(--color-black);
}
.Destination .description {
  color: var(--color-dark);
}
.Destination .text-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Destination .img-area {
  padding: 0;
}
.Destination .card {
  width: 100% !important;
  border: none;
  position: relative;
  transition: 0.3s ease-in;
  background: none;
}
.Destination .card .txt {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
}
.Destination .card .txt .place {
  background: var(--blue-color);
  padding: 3px 20px;
  border-radius: 20px;
  margin-left: 0.6rem;
  font-size: 14px;
}
.Destination .card img {
  transform: scale(0.9);
  transition: 0.3s ease-in-out;
  cursor: pointer;
  filter: brightness(0.5);
}
.Destination .card img:hover {
  transform: scale(1);
}
.card:hover .cont {
  /* color: var() !important; */
  
  transition: 0.3s ease-in;
}
.card:hover .place{
  background-color: var(--color-black)!important;
  transition: 0.3s ease-in;
}
/* End Section Destination  */

/* Start  Section Newsletter  */

.Newsletter {
  /* background-image: url("../imgs/newsletter.png.webp"); */
}
.newletter {
  position: relative;
}
.Newsletter .row {
  padding: 3rem;
  align-items: center;
}
.Newsletter .mail-area {
  display: flex;
}
.Newsletter .mail-area .btn {
  background-color: var(--back-ground2);
  color: var(--color-white);
  transition: 0.3s ease-in;
}
.Newsletter .mail-area .btn:hover {
  background-color: var(--back-ground);
}
.Newsletter .mail-area .form-group {
  margin: 0;
}

.lyr {
  background-color: var(--bg2-color);
  opacity: 0.7;
  position: absolute;
  width: 100%;
  height: 100%;
}
.newsletter_text p {
  font-size: 0.9rem;
  color: #e7e7e7;
}
/* End Section Newsletter  */

/* Start Section Places  */

.Places .title {
  color: var(--color-black);
}
.Places .description {
  color: var(--color-dark);
}
.Places .text-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Places .card-body {
  background-color: var(--color-white);
}
.Places .img-area {
  padding: 0;
}
.Places .card {
  width: 100% !important;
  border: none;
  position: relative;
  transition: 0.3s ease-in;
  background: none;
  padding: 1rem;
  cursor: pointer;
}
.Places .card .txt {
  position: absolute;
  top: 3rem;
  left: 2rem;
}
.Places .card .txt .place {
  background: var(--blue-color);
  padding: 8px 15px;
  border-radius: 20px;
  margin-left: 0.6rem;
  font-size: 14px;
}
.Places .card .card-body h4 {
  color: var(--color-black);
}
.Places .card .card-body p {
  color: var(--color-black);
}

.card:hover .card-body h4 {
  color: var(--blue-color) !important;
  transition: 0.3s ease-in;
}
.card:hover .place {
  background-color: var(--blue-color) !important;
  transition: 0.3s ease-in;
}
.Places .btn {
  background-color: var(--blue-color);
  color: var(--color-white);
  padding: 11px 35px;
  transition: 0.3s ease-in;
}
.Places .btn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}
/* End Section Places  */

/* Start Section Video  */
.video {
  /* background-image: url("../imgs/video.png"); */
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
}
.video .vid .lyr {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
}
.video .vid .lyr h1 {
  font-family: "Nothing You Could Do", cursive;
}
.video .vid .lyr .video_icon {
  width: 70px;
  height: 70px;
  background-color: var(--blue-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
}
.video .vid .lyr .video_icon .popup-video i {
  color: var(--color-white);
  font-size: 1.5rem;
}
@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.43553);
    opacity: 0.455589;
  }
}

.video_play_button:before {
  content: "";
  position: absolute;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--bluehover-color);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 767px) {
  .video {
    height: 50vh;
  }
  .video .vid .lyr {
    height: 50%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
}
/* End Section Video  */

/* Start Travel_Guide */
.Travel_Guide .Guide .card {
  border: none;
  background: none;
  display: flex;
  align-items: center;
  text-align: center;
}
.Travel_Guide .Guide .card .card-img-top{
  color: var(--blue-color);
  font-size: 4rem;
}
/* .Travel_Guide .Guide .card img {
  width: 70px;
} */
.Travel_Guide .Guide .card h3 {
  font-size: 22px;
  font-weight: 400;
  color: rgb(4, 14, 39);
  margin-bottom: 10px;
  margin-top: 41px;
}
.Travel_Guide .Guide .card p {
  font-size: 16px;
  font-weight: 400;
  color: rgb(110, 110, 110);
}
/* End Travel_Guide */

/* Start Section Trip  */

.Trip .title {
  color: var(--color-black);
}
.Trip .description {
  color: var(--color-dark);
}
.Trip .text-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Trip .card-body {
  background-color: var(--color-white);
  padding: 1rem 0rem;
}
.Trip .img-area {
  padding: 0;
}
.Trip .card {
  width: 100% !important;
  border: none;
  position: relative;
  transition: 0.3s ease-in;
  background: none;
  padding: 1rem;
  cursor: pointer;
}
.Trip .card .txt {
  position: absolute;
  top: 3rem;
  left: 2rem;
}
.Trip .card .txt .place {
  background: var(--back-ground);
  padding: 8px 15px;
  border-radius: 20px;
  margin-left: 0.6rem;
  font-size: 14px;
}
.Trip .card .card-body h4 {
  color: var(--color-black);
  font-size: 1rem;
}
.Trip .card .card-body p {
  color: var(--color-dark);
}

.card:hover .card-body h4 {
  color: var(--blue-color) !important;
  transition: 0.3s ease-in;
}
.card:hover .place {
  background-color: var(--color-black) !important;
  transition: 0.3s ease-in;
}
.Trip .btn {
  background-color: var(--back-ground2);
  color: var(--color-white);
  padding: 11px 35px;
  transition: 0.3s ease-in;
}
.Trip .btn:hover {
  background-color: var(--back-ground);
  color: var(--color-white);
}
/* End Section Trip  */

.client-say {
  text-align: center;
  padding: 50px;
  background: #f9f9f9;
  position: relative;
}

.client-say h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 20px;
}

/* الكارسول */
.client-say .carousel {
  position: relative;
  width: 60%;
  margin: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}
.client-say .carousel p{
  color: var(--color-black);
}
.client-say .carousel span{
  color: var(--color-black);
}

.client-say .testimonial {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 80%;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.client-say .testimonial.active {
  opacity: 1;
  transform: translateX(0);
}

/* أزرار التنقل */
.client-say button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--blue-color);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 5px;
}

.client-say button.prev {
  left: 10px;
}

.client-say button.next {
  right: 10px;
}

.client-say button:hover {
  background: var(--color-black)
}




.partners-slider {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  background: white;
  padding: 20px 0;
}

.partners-slider .slider-track {
  display: flex;
  width: calc(200px * 10); /* 10 صور في المسار */
  animation: slide 15s linear infinite;
}

.partners-slider .slide {
  width: 200px; /* عرض ثابت لكل صورة */
  padding: 10px;
}

.partners-slider .slide img {
  width: 100%;
  height: auto;
}

@keyframes slide {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-100%);
  }
}

/* تعديل السرعة إلى 25 ثانية بدلاً من 15 */
.slider-track {
  display: flex;
  width: calc(200px * 10); /* 10 صور في المسار */
  animation: slide 25s linear infinite;
}

.btn{
  background-color: var(--blue-color);
  color: var(--white-color);
  transition: 0.3s ease-in;
  border: none;
  padding: 13px 30px;
}
.btn:hover{
  background-color: var(--color-black);
  color: var(--white-color);
}
/* ///////////  Start Contant ///////////// */
.contact{
  height: 100vh;
}
.contact .bg_img{
  height: 100%;
  background-size: cover;
    background-position: center;
}
.contact .row{
  justify-content: center;
    align-items: center;
    height: 100vh;
}
.contact .row .form-control{
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}
.contact .row .form-control::placeholder {
  color: var(--color-white); /* غير اللون حسب رغبتك */
  opacity: 1; /* لضمان ظهور اللون بوضوح */
}
.contact .contact-info__icon i{
  font-size: 2rem;
    padding: 1rem;
}
.contact .media-body h3{
  font-size: 1.5rem;
}
.contact .media-body p{
 color: #d1c9c9;
}

@media (max-width: 767px) {
  .contact .row{
    flex-direction: column;
    flex-wrap: nowrap;
    height: auto;
    }
    .contact_top{
    margin-top: 8rem !important;
    }
    .bottom{
    margin-top: 5rem !important;
        margin-left: 0 !important;
  
    }
}

@media (min-width: 768px) and (max-width: 991px) {
  .contact .row{
  flex-direction: column;
  flex-wrap: nowrap;
  height: auto;
  }
  .contact_top{
  margin-top: 8rem !important;
  }
  .bottom{
  margin-top: 5rem !important;
      margin-left: 0 !important;

  }

}

/* //////////// End Contant  //////////// */


/* //////////// End Contant  //////////// */
.destination_info{
  /* background-color: red; */
}
.destination_info h3{
  color: var(--color-black);
}
.destination_info p{
  color: var(--color-dark);
}
.destination_info h4{
  color: var(--color-black);
}
.contact_join h3{
  color: var(--color-black);
}
.contact_join .btn{
  margin-bottom: 3rem;
}
/* //////////// End Contant  //////////// */

/* //////////// Start Photo  //////////// */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  justify-content: center;
}
.gallery img {
  width: 250px;
  cursor: pointer;
  border: 2px solid #fff;
  border-radius: 10px;
  transition: 0.3s;
}
.gallery img:hover {
  transform: scale(1.05);
}

/* عرض الصورة الكبيرة */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 999;
}
.lightbox img {
  max-width: 90%;
  max-height: 80vh;
}
.controls {
  margin-top: 20px;
}
.controls button {
  background: var(--blue-color);
  color: var(--color-white);
  padding: 10px 20px;
  margin: 0 10px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
/* //////////// End photo  //////////// */

/* //////////// Start gallery video  //////////// */
.gallery-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.gallery-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #2c3e50;
  margin-top: 100px;
  font-family: "Nothing You Could Do", cursive;

}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.video-card {
  background: var(--blue-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.6s ease;
}

.video-card.show {
  transform: translateY(0);
  opacity: 1;
}

.video-card iframe {
  width: 100%;
  height: 220px;
  border: none;
}

.video-title {
  padding: 15px;
  font-size: 16px;
  color: var(--color-white);
}
/* //////////// End video  //////////// */

/* //////////// Start About  //////////// */
.about_us .story_heading h3{
  color: var(--color-black);
}
.about_us .story_info p{
  color: var(--color-dark);
}
.about_us .counter_wrap h3{
  color: var(--blue-color);
  font-size: 3rem!important;
}
.about_us .counter_wrap p{
  color: var(--color-dark);
}

/* //////////// End About  //////////// */

/* //////////// Start privacy policy  //////////// */
.privacy .container .row .col-md-8{
   padding: 2rem;
    margin-top: 100px;
}

.privacy .container .row .col-md-8 h4{
   color: var(--color-black);
}
.privacy .container .row .col-md-8 p{
   color: var(--color-dark);
}
.privacy .container .row .col-md-8 .listt{
   color: var(--color-dark);
}
.privacy .container .row .col-md-8 .boldd{
   color: var(--color-black);
}
.privacy .container .row .col-8 a{
   color: var(--blue-color);
} 
/* //////////// End privacy policy  //////////// */


/* //////////// Start review  //////////// */
.reviews-section {
  margin: auto;
  padding: 40px;
  
}
.reviews-section .row{
  margin-top: 100px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 2rem;
}
.reviews-section h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 40px;
  font-family: "Nothing You Could Do", cursive;

}
.reviews-section p{
  color: var(--color-black);

}

.review {
  display: flex;
  flex-direction: column;
  background-color: #f9f9f9;
  border-left: 5px solid var(--blue-color);
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.review.show {
  opacity: 1;
  transform: translateY(0);
}

.review .name {
  font-weight: bold;
  color: #333;
  margin-top: 10px;
}

.review .stars {
  color: gold;
}
/* //////////// End review  //////////// */

/* //////////// Start Team  //////////// */
.team-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px;
  
}
.team-section .row{
  margin-top: 100px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}



.team-section h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 50px;
  font-family: "Nothing You Could Do", cursive;

}


.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.team-card.show {
  opacity: 1;
  transform: translateY(0);
}

.team-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #3a86ff;
}

.team-card h3 {
  margin: 10px 0 5px;
  color: #333;
}

.team-card p {
  color: #666;
  font-size: 14px;
}

/* //////////// End team  //////////// */


/* //////////// Start trip  //////////// */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #2c3e50;
  margin-top: 100px;
  font-family: "Nothing You Could Do", cursive;

}

.programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.program-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
}

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

.program-content {
  padding: 20px;
}

.program-content h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #333;
}

.program-content p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.price {
  font-weight: bold;
  color: var(--blue-color);
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  background: var(--blue-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: var(--bluehover-color);
}
/* //////////// End trip  //////////// */



/* Start footer */

.footer {
  background-repeat: no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background: var(--blue-color);
  position: relative;
  z-index: 0;
}

.footer .footer_top {
  padding-top: 15px;
/*  padding-bottom: 129px;*/
}
.footer .row {
  justify-content: center;
}
.footer .row .toop {
  text-align: center;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer .footer_top {
/*    padding-top: 60px;
    padding-bottom: 30px;*/
  }
}

@media (max-width: 767px) {
  .footer .footer_top .footer_widget {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer .footer_top .footer_widget {
    margin-bottom: 30px;
  }
}

.footer .footer_top .footer_widget .links {
  position: relative;
  top: -14px;
}

.footer .footer_top .footer_widget .links.double_links li {
  width: 50%;
  float: left;
}

.footer .footer_top .footer_widget .footer_title {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 45px;
  font-family: "Rubik", sans-serif;
}

@media (max-width: 767px) {
  .footer .footer_top .footer_widget .footer_title {
    margin-bottom: 20px;
  }
}

.footer .footer_top .footer_widget .footer_logo {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .footer .footer_top .footer_widget .footer_logo {
    margin-bottom: 20px;
  }
}

.footer .footer_top .footer_widget p {
  color: #aab1b7;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #aab1b7;
  display: flex;
  gap: 4rem;
}
.footer .footer_top .footer_widget p i {
  margin-right: 10px;
}
.footer .footer_top .footer_widget p a {
  color: #aab1b7;
}

.footer .footer_top .footer_widget p a:hover {
  color: #ff4a52;
}
.footer .footer_top .footer_widget ul li {
  color: var(--color-white);
  font-size: 14px;
  line-height: 36px;
  /* background: var(--back-ground2); */
  /* width: 50px; */
  height: 50px;
  border-radius: 50%;
  display: flex;
  /* align-items: center;
  justify-content: center; */
  transition: 0.3s ease-in;
}
/* .footer .footer_top .footer_widget ul li:hover {
  background-color: var(--back-ground);
} */
.footer .footer_top .footer_widget ul li a {
  color: #aab1b7;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
}
.footer .footer_top .footer_widget ul li a i {
  color: var(--color-white);
}

/* .footer .footer_top .footer_widget ul li a:hover {
  color: #ff4a52;
} */

.footer .footer_top .footer_widget .newsletter_text {
  font-size: 14px;
  color: #aab1b7;
  line-height: 26px;
  font-family: "Rubik", sans-serif;
}

.footer .footer_top .footer_widget .instagram_feed {
  margin: -7.5px -7.5px 0 -7.5px;
}

.footer .footer_top .footer_widget .instagram_feed .single_insta {
  width: 33.33%;
  float: left;
  padding: 7.5px;
  overflow: hidden;
}

.footer .footer_top .footer_widget .instagram_feed .single_insta img {
  width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.footer .copy-right_text {
  padding-bottom: 26px;
}

.footer .copy-right_text .footer_border {
  border-top: 1px solid #363e52;
  padding-bottom: 26px;
}

.footer .copy-right_text .copy_right {
  font-size: 14px;
  color: #7a838b;
  margin-bottom: 0;
  font-weight: 400;
}

@media (max-width: 767px) {
  .footer .copy-right_text .copy_right {
    font-size: 14px;
  }
}

.footer .copy-right_text .copy_right a {
  color: #ff4a52;
}

.footer .socail_links {
  margin-top: 47px;
}
.footer .socail_links ul {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 767px) {
  .footer .socail_links {
    margin-top: 30px;
  }
}

.footer .socail_links ul li {
  display: inline-block;
}

.footer .socail_links ul li a {
  font-size: 15px;
  color: #c3b2f0;
  width: 30px;
  display: inline-block;
  text-align: center;
  background: transparent;
  color: #ffffff;
  line-height: 40px !important;
  color: #e8e8e8;
}

.footer .socail_links ul li a:hover {
  color: #ff4a52 !important;
  border-color: transparent;
}

/* End Footer */
