/*@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');*/ 
h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}
body{
    background: #cfe7e5;
}
*{
    margin: 0;
    padding: 0;
}

.container {
  width: 100%;
  max-width: 1300px; /* For 1900px+ screens */
  margin: 0 auto; 
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.section{
    padding: 60px 0;
}
.section-title{
    padding: 80px 0;
    width: 100%;
    text-align: center;
}
.section-title h2{
    font-family: 'Pacifico';
    font-size: 60px;
    font-weight: 100;
    color: #213638; 
}
.section-title p{
    font-size: 25px;
    text-transform: capitalize;
    font-family: monospace;
    color: #4b63e1;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: none;
}

.home_slider_item {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home_slider_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.home_slider_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* semi-transparent dark overlay */
  z-index: 2;
}

.home_slider_content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.home_slider_content_inner {
  animation: fadeInUp 1s ease both;
}

.discover-heading {
  font-size: 85px;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
    font-family: sans-serif;
    font-weight: 900;
    line-height: 90px;
}

.magic-heading {
    font-size: 48px;
    font-family: cursive;
    margin-top: 40px;
}

/* Optional animation */
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .discover-heading {
    font-size: 38px;
  }

  .magic-heading {
    font-size: 28px;
  }
}



.swiper-box-div {
  display: flex;
    flex: 0 0 100%;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
}

/* Card Style */
.tour-card-upgraded {
    height: 550px;
    flex: 0 0 32%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    margin: 5px;
    transition: transform 0.3s ease;
    position: relative;
}

 

/* Responsive adjustments */
@media (max-width: 1200px) {
  .tour-card-upgraded {
    flex: 0 0 calc(50% - 20px); /* 2 cards per row */
  }
}

@media (max-width: 768px) {
  .tour-card-upgraded {
    flex: 0 0 100%; /* 1 card per row */
  }
}

 
.tour-header {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.badge-star {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #00b894;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: bold;
}

.tour-body {
  padding: 20px;
}

.tour-title {
  font-size: 20px;
  margin-bottom: 8px;
  color: #2d3436;
}

.tour-location, .tour-duration {
  font-size: 14px;
  color: #636e72;
  margin-bottom: 6px;
}

.tour-price-section {
  margin: 15px 0;
}

.tour-price {
  color: #27ae60;
  font-size: 22px;
  font-weight: bold;
}

.tour-old-price {
  text-decoration: line-through;
  color: #b2bec3;
  margin-left: 10px;
}

.tour-discount {
  background-color: #fdcb6e;
  color: #2d3436;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  margin-left: 10px;
  font-weight: 600;
}

.tour-subtext {
  font-size: 12px;
  color: #636e72;
  margin-top: 4px;
}

.tour-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.icon-item {
  display: grid;
    text-align: center;
  font-size: 13px;
  color: #2d3436;
}
 
.icon-item i {
  font-size:14px;
}

.tour-actions {
    display: flex;
    gap: 12px;
    position: absolute;
    bottom: 17px;
    width: 95%;
    left: 8px;
}

.btn {
  flex: 1;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.view-details {
  background-color: white;
  border: 2px solid #ff6b6b;
  color: #ff6b6b;
}

.view-details:hover {
  background-color: #ff6b6b;
  color: white;
}

.customize {
  background-color: #ff6b6b;
  color: white;
  border: 2px solid transparent;
}

.customize:hover {
  background-color: #ff4757;
}




.why-div{
    display: flex;
    width: 100%;
    flex: 0 0 100%;
}
.why-div .why-card{
    flex: 0 0 23%;
    width: 25%;
    border-left: 3px solid #213638;
    padding-left: 20px;
}
.why-div .why-card img{
    width: 45%;
    padding: 15px 0;
}
.why-div .why-card h3{
    font-size: 23px;
}
.why-div .why-card p{
    font-size: 16px;
    padding: 12px 0;
}




/* Contact Container */
.contact {
  display: flex;
  flex-wrap: wrap; 
  flex: 0 0 100%;
}
.contact .p-50{
    flex: 0 0 50%;
    height: fit-content;
}
/* Part 1 - Feature Highlights */
.part-1 { 
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.inner {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: 0.3s;
  text-decoration: none;
}

.inner:hover {
  transform: translateY(-5px);
}

.inner img {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
}

.inner p {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  font-family: system-ui;
}

/* Form Styling */
/*.form-div { */
/*    background: #fff;*/
/*    padding: 20px;*/
/*    width: 89%;*/
/*    margin-left: 25px;*/
/*    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;*/
/*}*/
/*.form-div h3{*/
/*    font-size: 30px;*/
/*    margin: 10px 0px 35px;*/
/*    color: #213638;*/
/*}*/
/*.form-div .form-inner{*/
/*    display: grid;*/
/*} */
/*.form-div .form-inner label{*/
/*    font-size: 17px;*/
/*    font-family: 'Open Sans';*/
/*    margin-bottom: 6px;*/
/*}*/
/*.form-div .form-inner input, .form-div .form-inner textarea{*/
/*    border: none;*/
/*    border-bottom: 1px solid #000;*/
/*    margin-bottom: 20px;*/
/*    font-size: 15px;*/
/*    padding: 5px 0;*/
/*}*/


.img-box{
    display: block;
}
.img-box .img-1{
    display: block;
    width: 100%;
}
.img-box .img-1 img{
    width:100%;
}
.img-box .img-2{
    display: flex;
    justify-content: center;
}
.img-box .img-2 img {
    width: 32.5%;
    margin: 5px;
}


.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
}

.modal-content {
  margin: 5% auto;
    width: 80%;
    max-width: 600px;
    background: #cfe7e5;
    box-shadow: rgba(0, 0, 0, 5.16) 0px 11px 52px 4px, rgba(0, 0, 0, 0.06) 2px 3px 0px 1px;
    border: none;
    border-radius: 10px;
}
/*.modal-content h3{*/
/*    color: #213638;*/
/*    font-size: 35px;*/
/*    margin: 10px 0px 30px 0px;*/
/*}*/
/*.modal-content form input, .modal-content form textarea{*/
/*        width: 100%;*/
/*    background: transparent;*/
/*    border: none;*/
/*    border-bottom: 1px solid  #213638;*/
/*    padding: 5px 0;*/
/*    margin-bottom: 10px;*/
/*}*/
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
}
.no-scroll {
  overflow: hidden;
}









.form-container {
  max-width: 480px;
  margin-left: 25px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}
.form-popup-container{
    max-width: 600px; 
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}
.form-container h2 ,.form-popup-container h2 {
  text-align: center;
  margin-bottom: 20px;
}
label {
  display: block;
margin-top: 15px;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
color: #213638;
}
.hint {
  font-weight: normal;
  font-size: 0.9em;
  color: gray;
}
.input-group {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 9px;
  border-radius: 6px;
  margin-top: 5px;
}
.input-group .icon {
  margin-right: 10px;
}
.input-group input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1em;
}
.checkbox-label {
  font-size: 0.9em;
  margin-top: 10px;
}
.form-part{
    display: flex;
}
.input-f-1{
    flex:0 0 60%;
}
.input-f-2{
    flex:0 0 40%;
    margin-left: 7px;
}
.days-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ccc;
  padding: 8px 10px;
  border-radius: 6px;
  margin-top: 5px; 
width: 83%;
}
.days-selector input {
  width: 30px;
  text-align: center;
  border: none;
  outline: none;
}
.days-selector button {
  border: none;
  background: none;
  font-size: 1.2em;
  cursor: pointer;
  color: #37f17b;
}
.phone-row {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}
.phone-row .code {
  width: 60px;
  text-align: center;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.phone-row input[type="tel"] {
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  outline: none;
}
.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #f44336;
  color: white;
  font-size: 1.1em;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  margin-top: 20px;
  cursor: pointer;
}
.submit-btn:hover {
  background-color: #d32f2f;
}
input[type="date"] {
  font-family: Arial, sans-serif;
}



@media (max-width: 1500px) {
    .container {
       max-width:1150px;
    }
}
@media (max-width: 1250px) {
    .container {
       max-width:1050px;
    }
}
@media (max-width: 991px) {
    .container {
       max-width:850px;
    }
    .img-box .img-2 img {
       width: 32.8%;
       margin: 2px;
    }
}
@media (max-width: 768px) {
    .container {
       max-width:600px;
    }
    .section-title h2 { 
       font-size: 30px; 
    }
    .section-title p {
       font-size: 15px;
    }
    .section-title {
       padding: 60px 0;
    }
    .section {
       padding: 30px 0;
    }
    .why-div { 
       flex-wrap: wrap;
    }
    .why-div .why-card {
       flex: 0 0 40%;
       width: 40%;
       border-left: 3px solid #213638;
       padding-left: 20px;
       margin: 10px;
    }
    .contact {
    display: block;}
    .contact .p-50 {
    margin-bottom: 31px;}
    .form-div { 
    width: 94%;
    margin-left: 0;}
}
@media (max-width: 600px) {
    .container {
        max-width: 487px; 
    }
}
@media (max-width: 550px) {
    .container {
        max-width: 430px; 
    }
    .form-container { 
        margin-left: 0;
        padding: 20px;
    }
    label {
    font-size: 14px;}
    .input-group { 
    padding: 5px;
    font-size: 14px;}
    .days-selector {
    font-size: 14px;
    height: 10.5%;
    padding:11px 11px 7px 6px;}
    .checkbox-label {
    font-size: 13px;}
    .form-container h2 { 
      font-size: 19px;
    }
    .img-box .img-2{
        display: block;
    }
    .img-box .img-2 img {
        width: 100%;
        margin: 0;
    }
    .inner { 
    padding: 10px;}
    .inner p { 
    font-size: 13px;}
}
@media (max-width: 500px) {
    .container {
        max-width: 400px; 
    }
    .discover-heading { 
        font-size: 28px;
        line-height: 35px;
    }
    .modal-content h3 { 
        font-size: 27px;
        margin: 5px 0px 20px 0px;
    }
    
}
@media (max-width: 480px) {
    .container {
        max-width: 370px; 
    }
    .form-div {
        width: 90%;
        margin-left: 0;
    }
    .why-div .why-card {
        flex: 0 0 80%; 
        margin: 15px 0;
    }
    .why-div .why-card img {
    width: 30%;
    }
    .part-1 {
    display: grid;
    grid-template-columns: auto;
    gap: 10px;
    }
    .modal-content {
    margin: 12% auto;
    width: 90%;}
    .form-popup-container { 
    padding: 15px;}
    .form-container h2, .form-popup-container h2 {
      font-size: 17px; 
       margin: 15px 0px;
    }
    .submit-btn { 
    font-size: 14px;}
    .section-title h2 { 
    line-height: 33px;
    }
    .tour-title {
    font-size: 16px;}
}
@media (max-width: 425px) {
    .container {
        max-width: 350px;
    }
    .days-selector { 
        padding: 8px 7px 7px 5px;
    }
}
@media (max-width: 400px) {
    .container {
        max-width: 320px;
    }
}



.footer{
        width: 100%;
    text-align: center;
    padding: 10px 0;
    color: #fff;
    background: #213638;
    font-family: 'Open Sans';
    font-size: 15px;
}




