
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Roboto:ital,wght@0,100..900;1,100..900&family=Satisfy&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --green:#313f1b;
    --yellow:#e49c2e;
    --yellow-light:#ffb951;
}
body{
    font-family: Arial, sans-serif;
    /* background-color: #f4f4f4; */
    color: #333;
}
p{
    line-height: 1.6;
    margin: 10px 0;
}
ul{
    margin-bottom: 0;
    padding-left: 0;
}
ul li{
    list-style-type: none;
    padding: 5px 0;
}
a{
    text-decoration: none;
}
.sec-margin{
    margin: 50px 0;
}
.sec-padding{
    padding: 50px 0;
} 
.title {
    display: flex;
    justify-content: center;
    align-items: center;
} 
.title h2{
    font-family: "Pacifico", cursive;
    font-size: 2.3rem;
    color: var(--green);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.sec-subtitle h6{
    border:1px solid  var(--green);
    padding: 7px 15px;
    display: inline-block;
}
.sec-title h2{
    font-size: 3rem;
    font-weight: 700;
    color: var(--yellow);
}
.sec-title h2 span{
    color: var(--green);
}
.spacer{
    width: 100%;
    height: 100px;
}
.spacer-50{
    width: 100%;
    height: 50px;
}

/* ======================= whatsapp =================== */
.whatsapp{
  position: fixed;
  right: 0;
  bottom: 50px;
  z-index: 999;
}
.whatsapp a img{
  width: 70px;
}

/* ======================== hero section ======================== */
.hero-section{
    width: 100%;
    height: 100vh;
    position: relative;
}
.main-nav{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 0 4rem;
    z-index: 1000;
}
.logo a img{
    width: 120px;
    /* height: 120px; */
    margin: 10px 0;
}
.hamburger-menu{
    display: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
}
.hamburger-menu span{
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--green);
    margin: 5px 0;
    transition: all 0.3s ease;
}
.main-menu {
    margin-left: auto;
}
.main-menu nav ul{
    display: flex;
    list-style: none;
}
.main-menu nav ul li{
    margin: 0 15px;
}
.main-menu nav ul li a{
    color: var(--green);
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease;
}
.call-btn{
    margin: 0 10px;
}
.call-btn i{
    color: var(--green);
    padding-right: 5px;
}
.call-btn a{
    background-color: var(--yellow-light);
    color: #000;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
}

.slider-wrapper{
    width: 100%;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider-wrapper::before{
    content: '';
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.slider-image{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.slider-image img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.slider-content-wrapper{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    z-index: 2;
}
.slider-form,
.slider-content{
    flex: 50%;
    max-width: 50%;  
}
.slider-form{
    display: flex;
    justify-content: flex-end;
}
.slider-content h1{
    font-family: "Pacifico", cursive;
    font-size: 4rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.slider-content h1 span{
    color: #ffea00;
}
.slider-content p{
    font-family: "Satisfy", cursive;   
    padding: 10px 0;
    color: #fff;
    font-size: 2rem;
}
.slider-content a{
    background-color: #ffea00;
    color: #000;
    padding: 5px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.5rem;
}
.form-wrapper{
    max-width: 70%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}
.hero-form{
    width: 100%;
}
.hero-form form{
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
}
.hero-form form input{
    flex: 50%;
    max-width: calc(50% - 10px);
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    outline: none;
}
.hero-form form textarea{
    width: 100%;
    padding: 10px;
}
.hero-form form input[type="submit"]{
    background-color: var(--yellow-light);
    color: #000;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}
.hero-form form input[type="submit"]:hover{
    background-color: var(--yellow);
}

/* ============================about section============================= */
.about-content-wrapper{
    width: 100%;
    padding: 20px;
    border: 2px double var(--green);
    border-radius: 10px;
}
.about-title{
    display: flex;
    justify-content: center;
}
.title img{
    width: 50px;
    height: 50px;
    margin-right: 10px;
    margin-left: 20px;
}
.about-content p{
    text-align: center;
}

/* ========================== entry gate section ========================= */  
.entry-gate{
    background-color: #F6F7FB;
}
.entry-gate-details{
    width: 100%;
}
.entry-gate-content table{
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Optional: ensures scroll activates if content overflows */
  }  
  th, td {
    padding: 12px 16px;
    text-align: left;    
  }
  thead tr th {
    color: #000;    
    background-color: var(--yellow);
    border-style: dashed;
    border-width: 2px 2px 2px 2px;
    border-color: var(--green);
    text-align: center;
    font-weight: 800;
  }
  tbody tr td{
    padding: 10px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--green);
    text-align: center;
  } 

  /* ====================== four coulmns section ===================== */
  .containerr {
    width: 100%;
    position: relative;
}

  .columnss {
    display: flex;
    width: 100%;
    height: 500px;
}

.columnn {
    width: 25%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    color: white;
    font-size: 24px;
    font-weight: bold;
    transition: background-color 0.3s;
    position: relative;
    z-index: 2;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.column:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: scaleY(.8);
    transition: transform 0.3s;
    overflow: hidden;
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.full-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s;
}

.full-image.active {
    opacity: 1;
}
.image-txt{
    text-align: center;
    height: 50px;
    width: 100%;
    margin-top: 20px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(5px);
}
/* =========================== foooter logo ============================== */
footer{
    width: 100%;
    background-color: antiquewhite;
    padding: 4rem 0 2rem 0;
}
.footerr-logo a img{
    width: 120px;
    /* height: 120px; */
    margin: 10px 0;
}
.footer-social a{
  font-size: 2rem;
  color: var(--green);
}

/* ================================= inner page header ======================= */
#inner-page-hero{
    width: 100%;
    height: 70vh;
    overflow: hidden;
    position: relative;
}
#inner-page-hero:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    filter: saturate(1);
    z-index: 2;
}
.carousel-item,
.carousel-inner,
.inner-page-hero,
#carouselExampleIndicators{
    width: 100%;
    height: 100%;
}
.carousel-inner img{
    width: 100%;
    height: 100%;
    object-position: top top;
    object-fit: cover;
}
.img-vid-mix,
.about-images{
    width: 100%;
    height: 100%;
    position: relative;
} 
.img-vid-mix video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
} 
.abt-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/bengal-tiger.jpg);
    background-size: cover;
    mix-blend-mode: screen;
}
.mission,
.vision{
    width: 100%;
    border: 1px solid var(--green);
    margin-bottom: 50px;
    padding: 20px;
    border-radius: 30px;
}

/* ================================ testimonial ================ */
#testimonial{
    width: 100;
    height: 60vh;
}
  .testimonial-card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      margin: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      height: 100%;
    }
    .testimonial-card img {
      width: 50px;
      height: 50px;
      object-fit: cover;
      border-radius: 50%;
      margin-right: 15px;
    }
    .testimonial-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

/* =========================== majesty of panna===========     */

    .section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .section h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #2c3e50;
    }

    .section img {
      width: 100%;
      max-width: 600px;
      display: block;
      margin: 20px auto;
      border-radius: 10px;
    }

    .cta {
      background: var(--green);
      color: white;
      padding: 60px 20px;
      text-align: center;
      animation: pulse 3s infinite;
    }

    .cta h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .cta button {
      background: #e67e22;
      color: white;
      border: none;
      padding: 15px 30px;
      font-size: 1.2rem;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .cta button:hover {
      background: #d35400;
    }

    @keyframes pulse {
      0%, 100% {
        background-color: var(--green);
      }
      50% {
        background-color: #313f1b;
      }
    }

    .places {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .place {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .place:hover {
      transform: translateY(-10px);
    }

    .place img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .place p {
      padding: 15px;
    }

    .footer {
      text-align: center;
      padding: 30px 20px;
      background: #1e272e;
      color: white;
    }

/* ========================= contact us ============== */
.contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 100vh;
      width: 100%;

    }

    .contact-info {
      padding: 60px;
      background-color: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .contact-info h2 {
      font-size: 2rem;
      
      color: #1d1d1d;
    }
     .contact-info p{
margin-bottom: 40px;
     }

    .info-item {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
    }

    .info-item i {
      font-size: 1.4rem;
      color: var(--green) ;
      margin-right: 20px;
    }

    .info-item span {
      font-size: 1rem;
      color: #555;
    }

    .contact-form {
      padding: 60px;
      background-color: #f9fafb;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .contact-form h2 {
      font-size: 2rem;
      margin-bottom: 40px;
      color: #1d1d1d;
    }

    .form-group {
      position: relative;
      margin-bottom: 30px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 14px 14px 14px 0;
      font-size: 1rem;
      border: none;
      border-bottom: 2px solid #ccc;
      background: transparent;
      outline: none;
      transition: all 0.3s;
    }

    .form-group label {
      position: absolute;
      top: 14px;
      left: 0;
      color: #888;
      font-size: 1rem;
      pointer-events: none;
      transition: 0.3s ease all;
    }

    .form-group input:focus ~ label,
    .form-group input:not(:placeholder-shown) ~ label,
    .form-group textarea:focus ~ label,
    .form-group textarea:not(:placeholder-shown) ~ label {
      top: -10px;
      font-size: 0.85rem;
      color: var(--green);
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-bottom: 2px solid #1e88e5;
    }

    .contact-form button {
      padding: 14px 30px;
      background-color: var(--yellow);
      color: #fff;
      font-size: 1rem;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .contact-form button:hover {
      background-color: #1667b3;
    }

 /* ========================= accomodation ================    */
    .hotel-wrpper{
        border: 1px solid var(--green);
        padding: 20px;
        border-radius: 20px;
    }
    .ac-title{
        background: var(--green);
        display: inline-block;
        color: var(--yellow);
        padding: 5px 20px;
        border-radius: 10px;
    }
    .hotel-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      margin-bottom: 30px;
    }
    .hotel-details {
      padding: 20px;
    }
    .hotel-details h5 {
      margin-bottom: 10px;
    }
    .stars {
      color: #fbc02d;
    }
    .car-tab img {
      max-width: 100%;
      border-radius: 10px;
    }
     .nav-tabs .nav-link{
        color: var(--green);
     }
    .nav-tabs .nav-link.active {
      background-color: var(--green);
      color: #fff;
    }
    .nav-tabs .nav-link {
      border-radius: 0;
    }
    .accomodation-hotel .carousel-item img{
        width: 100%;
        height: 60vh;
        object-fit: cover;
    }
    .car-tab a{
        margin-top: 30px;
        display: inline-block;
        padding: 10px 30px;
        border-radius: 10px;
        background: var(--green);
        color: #fff;
    }


/* ========================= media queries ========================= */
@media screen and (max-width: 992px){
    .main-nav{        
        height: auto;
        padding: 10px 1rem;
    }
    .hamburger-menu{
        display: block;
    }
    .main-menu nav ul{
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--green);
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 99;
        min-height: 50vh;
    }
    .main-menu nav ul li{
        padding: 10px;
    }
     .main-menu nav ul li a{
        color: #fff;
     }
    .main-menu.active nav ul{
        display: flex;
    }
    .hamburger-menu.active span:nth-child(1){
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger-menu.active span:nth-child(3){
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .hamburger-menu.active span:nth-child(2){
        opacity: 0;
    }
    .call-btn a {    
        padding: 5px 10px;
        border-radius: 10px;
        font-weight: 700;
    }
    .slider-content-wrapper {
        flex-wrap: wrap;
        padding: 0 1rem;
    }
    .slider-form, .slider-content {
        flex: 100%;
        max-width: 100%;
        position: relative;
        top: 100px;
    }
    
}
@media screen and (max-width: 768px){
    .slider-content h1 {
        font-size: 3rem;
    }
    .slider-content p {
        font-size: 1.5rem;
    }
    .slider-content a {
        font-size: 1.2rem;
    }
    .form-wrapper {
        max-width: 100%;
    }
    .hero-form form input {
        flex: 100%;
        max-width: 100%;
    }
    .slider-form{
        /* display: none; */
    }
       .contact-container {
        grid-template-columns: 1fr;
      }

      .contact-info,
      .contact-form {
        padding: 40px 30px;
      }
      .hero-section{
        width: 100%;
        height: 165vh;
      }
      .slider-wrapper::before,
      .slider-image{
        width: 100%;
        height: 165vh;
      }
      .slider-image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        background-position: left center;
      }
      .slider-form, .slider-content{
        top: 120px;
      }
      .slider-content{
        margin-bottom: 30px;
      }
      #testimonial{
        height: 80vh;
      }
}