@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Hebrew:wght@100;200;300;400;500;600;700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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");

body {
  font-family: "IBM Plex Sans Hebrew", sans-serif;
}
.navbar-brand img {
  height: auto;
  width: 120px;
}
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    width: 100%;
    z-index: 1000;
}
.nav-link {
  color: #000 !important;
  font-weight: 500;
}
.button {
  background-color: #4674c6;
  border: 1px solid #e0deff;
  font-weight: 500;
  color: #fff;
  
  border-radius: 6px;
  min-width: 120px;
  min-height: 40px;
  font-size: 14px;
  padding: 4px 10px;
}
.nav-link i {
  color: #000 !important;

  font-size: 14px;
}
.navbar-nav {
  gap: 14px;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: url("./images/castle_bg.jpg") no-repeat right center/cover;
  min-height: 100vh;
  border-radius: 12px;
  margin-top: 70px;
  overflow: hidden;
  padding: 60px 20px;
  color: #fff;
  display: flex;
  align-items: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* darker overlay */
  }
  
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  width: 100%;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  font-family: "Inter";
}
.view-list-btn {
background-color: #FF7F50;
border: none;
outline: none;
border-radius: 6px;
padding: 4px 10px;
width: 300px;
height: 40px;
color: #fff;
font-weight: 500;
}


/* Search Box */
.search-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 5px 40px 5px #0000001A;


  padding: 25px 20px;
  margin: 50px auto 30px auto;
  max-width: 90%;
}
.search-tabs {

  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.search-tabs .tab-btn {
  font-weight: 400;
  color: #CECECE;
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  font-family: 'Inter';
  align-items: center;

height: 40px;
min-width: 130px;
}
.search-tabs .tab-btn.active {
  background: #4674C6;
  color: #fff;
}
.search-content .form-control {
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.95rem;
}
.search-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.search-actions button {
  padding: 8px 20px;
  font-weight: 400;
  font-size: 14px;
  font-family: "Inter";
  border-radius: 6px;
}
.btn-advance {
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
}
.btn-advance:hover {
  background: #f8f9fa;
}
.btn-search {
  background: #4674C6;
  color: #fff;
  border: none;
}
.btn-search:hover {
  background: #4674C6;
}

/* Stats */
.stats {
  margin-top: 20px !important;
  background-color: #fff;
  text-align: center;
  padding: 20px 0px;
  width: 800px;
  border-radius: 12px;
  margin: 0 auto;
}
.stat-box:not(:first-child){
    border-left: 1px solid #2D2D2D;
}

.stat-box h4 {
    font-size: 44px;
    color: #2D2D2D;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
  }
  .stat-box.show h4 {
    opacity: 1;
    transform: translateY(0);
  }
.stat-box p {
  color: #AFADAD;
  /* margin-bottom: 0; */
  font-size: 15px;

}

/* Responsive */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .search-box {
    margin: 30px auto;
    padding: 20px;
  }
}
.third-section{
    padding-top: 60px;
    padding-bottom:30px;
      display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 20px;
    
    }
    .resort-box {
        cursor: pointer;
        flex: 1 1 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
        height: 250px;
        perspective: 1200px;
        position: relative;
        transition: transform 0.3s;
        z-index: 1; /* default */
      }
      
      .resort-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        transition: transform 0.8s ease-in-out;
        border-radius: 15px;
      }
      
      .resort-box.active .resort-inner {
        transform: rotateY(180deg);
      }
      
      .front, .back {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 15px;
        overflow: hidden;
        backface-visibility: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        top: 0;
        left: 0;
      }
      
      .front {
        z-index: 2;
        background-color: #fff;
        transform: rotateY(0deg);
      }
      
      .front img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      
      .back {
        z-index: 1;
        background: rgba(255, 255, 255, 0.1); 
        backdrop-filter: blur(10px); 
        -webkit-backdrop-filter: blur(10px); 
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        text-align: center;
        font-size: 18px;
        transform: rotateY(180deg);
        border: 1px solid rgba(255, 255, 255, 0.3); 
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); 
        transition: backdrop-filter 0.3s ease;
      }
      .back-two{
        display: block !important; 
        align-items: normal !important;
        justify-content: normal !important;
      }
      .back h6{
        
      font-size: 26px;
      }
      .back p {
        font-size: 16px;
        line-height: 26px;
        opacity: 0;
        font-weight: 500;
        transform: translateY(10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
      }
      
      .resort-box.active .back p {
        opacity: 1;
        transform: translateY(0);
      }
      
      /* Responsive Breakpoints */
      @media (max-width: 1024px) {
        .resort-box {
          flex: 1 1 calc(50% - 20px);
          max-width: calc(50% - 20px);
        }
      }
      
      @media (max-width: 767px) {
        .resort-box {
          flex: 1 1 100%;
          max-width: 100%;
        }
      }
      .third-section{
      padding-top: 60px;
      padding-bottom:30px;
        display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
      
      }
 .section-second .image-container{width: 100%;height: 400px;overflow: hidden;}
.section-second p , .section-second li{
    font-family: "Inter";
}
.section-second .image-container img{width: 100%;height: 100%;transition: all .1s ease-in-out;border-radius: 6px;}
 .section-second .image-container img:hover{scale: 1.03;}
 .section-second .button-group button{
  letter-spacing: 0.1em;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-size: 15px;
  margin-right: 0.75rem;
  border-radius: 0.375rem;
  border: 2px solid #4674C6;
  background: transparent;
  color: #4674C6;
  text-transform: uppercase;
  font-family: "Poppins";
}
 .section-second .button-group{display: flex;justify-content: center;}
 .section-second .button-group button:hover{
  background-color: #4674c6;
  color: #fff;
  transition: all .2s ease-in-out;
}
 .section-second h4{
  font-family: "Poppins" !important;
  margin-bottom: 14px;
  color: #4674C6;
  font-weight: 600;
}
 .section-second a{
  color: #4674C6;
  text-decoration: none;
  font-weight: 500;
  font-family: "Poppins" !important;

}

.forth-section{
    padding-top: 40px;
    padding-bottom: 60px;
  }
h2{
    text-align: center;
    font-size: 40px;
    font-family: "Poppins";
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 40px !important;
  }
  .blog-container {
    width: 100%;
    /* max-width: 1200px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* gap: 20px; */
  }
  
  .blog-card {
  cursor: pointer;
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    height: 450px;
    perspective: 1200px;
    position: relative;
    transition: transform 0.3s;
    z-index: 1;
  }
  
  .blog-card  .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease-in-out;
    border-radius: 15px;
  }
  
   .blog-card.active .card-inner {
    transform: rotateY(180deg);
  }
  
  .blog-card  .card-front,.blog-card  .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  
    backface-visibility: hidden;
    top: 0;
    left: 0;
  }
  .blog-card  .card-back:hover{
    box-shadow: 0 4px 50px rgba(0, 0, 0, 0.2);
    transition: all .2s ease-in-out;
  
  }
  .blog-card  .card-front img,
  .blog-card  .card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  
  .blog-card  .card-back {
    z-index: 1;
    /* transform: rotateY(180deg); */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Glassmorphism overlay on the back image */
  .blog-card  .card-back::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  /* Content inside back overlay */
  .blog-card  .card-back-content {
    position: absolute;
    color: #fff;
    text-align: center;
    padding: 20px;
    z-index: 2;
  }
  
  .card-back-content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-family: "inter";
  }
  
  .card-back-content p {
    font-size: 16px;
    font-family: "Poppins";

    line-height: 1.4;
  }
  


 .section-forth .slider {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    height: auto; /* Ensure it expands */
    min-height: 280px; /* Add this line to guarantee visible content */
    display: flex;
    align-items: center;
  }
  
 .section-forth .slider-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    background: transparent !important;
  }
  
 .section-forth .testimonial {
    min-width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
 .section-forth .stars {
    color: #df5c2e;
    font-size: 1.5rem;
  }
  
 .section-forth .testimonial-text {
    font-size: 18px;
    color: rgb(34, 82, 124);
    margin: 1rem auto;
    max-width: 90%;
    font-family: "Inter";
    word-break: break-word;         /* ✅ Fix long lines */
    overflow-wrap: break-word;      /* ✅ Ensures safe wrapping */
    white-space: normal;            /* ✅ Prevent inline long stretching */
    text-decoration: none !important; /* ✅ Remove underline */
    border: none !important;          /* ✅ Kill ghost borders */
    outline: none !important;
    background: transparent !important;
  }
  
  
 .section-forth .author,
 .section-forth .sub {
    font-family: "Inter";
    color: rgb(55, 65, 81);
  }
  
 .section-forth .author {
    font-weight: bold;
    margin-top: 1rem;
  }
  
 .section-forth .sub {
    font-size: 0.9rem;
  }
  
 .section-forth .google-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    gap: 0.5rem;
  }
  
 .section-forth .google-reviews span {
    color: #facc15;
    font-weight: bold;
  }
  
 .section-forth .view-all {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }
  
 .section-forth .view-all button {
    padding: 8px 20px;
    border: 2px solid #4674C6;
    background: white;
    font-family: "Poppins";
    color:  #4674C6;
    border-radius: 6px;
    font-size: 14px;
    cursor: url("./cursor-image61489.png"), auto;
    transition: all 0.3s ease-in-out;
  }
  
 .section-forth .view-all button:hover {
    background-color: rgb(70, 116, 198);
    color: #fff;
  }
  
 .section-forth .grabbing {
    cursor: grabbing !important;
  }
  


  .app-footer {
    margin-top: auto;
    background-color: #0a3a6a;
    color: #ffffff;
    /* font-family: 'Open Sans', sans-serif; */
    padding: 40px 20px;
    font-family: "Inter";
  }
  
  /* Main Container Layout (Left + Right) */
  .footer-main-container {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Vertical center alignment */
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 40px; /* Space between left and right */
  }
  
  /* Left Section (Text + Form) */
  .footer-main-text {
    flex: 1;
    min-width: 300px;
    text-align: center;
  }
  
  
  
  .footer-main-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .footer-main-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 600px;
  }
  
  .phone-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .phone-input {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .phone-form input[type="text"] {
    padding: 10px;
    width: 250px;
    border-radius: 5px 0 0 5px;
    border: none;
    font-size: 14px;
  }
  
  .phone-form button {
    background-color: #0072c6;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 14px;
  }
  
  /* Right Section (App Promo) */
  .app-promo {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 300px;
    text-align: center;
  }
  
  .app-image {
    width: 250px;
    transform: rotate(0deg);
    margin-bottom: 20px;
  }
  
  .promo-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .qr-code {
    margin-bottom: 20px;
  }
  
  .store-buttons img {
    display: block;
    margin: 0 auto 10px;
  }
  
  /* Footer Links Section */
  .footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    color: #ccc;
  }
  
  .links-section {
    flex: 1 1 150px;
    margin-bottom: 20px;
  }
  
  .links-section h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .links-section ul {
    list-style: none;
    padding: 0;
  }
  
  .links-section ul li {
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 5px;
    color: rgb(147, 197, 253);
  }
  
  .links-section img {
    display: block;
    margin-bottom: 10px;
  }
  
  /* Bottom Footer */
  .footer-bottom {
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
    color: #ccc;
    padding: 10px 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .footer-main-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-main-text {
      text-align: center;
    }
  
    .phone-input {
      justify-content: center;
    }
  
    .footer-links {
      justify-content: center;
      text-align: center;
    }
  
    .links-section {
      flex: 1 1 300px;
    }
  }
  
  @media (max-width: 768px) {
    .stat-box{
        width: 100% !important;
    }
    .stats{
        width: 100% !important;
    }
    .section-second{overflow: hidden;}
    h2 {font-size: 28px !important;}
    .search-box {max-width: 100% !important;}
    .search-actions{flex-wrap: wrap;}
.search-actions button {width: 100% !important;
margin-bottom: 10px;}
    .blog-card {max-width: 100% !important;flex: none;margin-bottom: 14px;}
    .footer-main-text h2{
      font-size: 35px !important;
    }
    .ACCREDITATIONS{
      justify-content: center;
    }
    .footer-main-text h2 {
      font-size: 28px;
    }
  
    .footer-main-text h3 {
      font-size: 22px;
    }
  
    .footer-main-text p {
      font-size: 14px;
    }
  
    .footer-main-container {
      /* padding: 0 20px; */
    }
  
    .app-promo {
      margin-top: 40px;
    }
  
    .phone-input {
      flex-direction: column;
    }
  
    .phone-form input[type="text"],
    .phone-form button {
      width: auto !important;
      border-radius: 5px;
      margin-bottom: 10px;
    }
  
    .phone-form button {
      border-radius: 5px;
    }
  }

  @media (max-width: 480px) {
    .footer-main-text h2 {
      font-size: 24px;
    }
  
    .footer-main-text h3 {
      font-size: 18px;
    }
  
    .footer-main-text p {
      font-size: 12px;
    }
  
    .app-image {
      width: 200px;
    }
  
    .qr-code {
      width: 80px;
    }
  
    .store-buttons img {
      width: 120px;
    }
  }
  .ACCREDITATIONS{
    display: flex;
  }
  .footer-main-text h2{
    text-align: center;
    margin-bottom: 0px;
    font-family: 'Inter';
    font-style: italic;
    margin-top: 5px;
    font-size: 40px !important;
  }
  .first-col{
    width: 50%;
  }
  .second-col{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
  }

  @media only screen and (max-width:700px)
{


 .section-forth .custom-card {padding: 15px 10px !important;}
.section-forth .slider {min-height: 320px !important;}

}
