*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection{
    color: rgb(255, 165, 29);
    background: #075f29e3;
}

html,body{
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

#main{
    width: 100%;
    height: 100vh;
    
}

nav{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 15vh;
    z-index: 99;
    padding: 0 7vw;
    background: transparent;
    
}

.left-nav a img{
    width: 7vw;
}

.center-nav{
    display: flex;
    gap: 2vw;
}

.center-nav a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1.3vw;
    font-family: "Merienda", cursive;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.7vw 1.5vw;
    border-radius: 5px;
    transition: 0.3s ease;
}

.center-nav a:hover{
    background-color: #f6b74f;
    color: rgb(0, 0, 0);
}

.dropdown {
    float: left;
    overflow: hidden;
  }

  .dropdown .dropbtn {
    font-size: 1.3vw;
    font-family: "Quicksand",sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    outline: none;
    color: rgb(0, 0, 0);
    padding: 0.7vw 1.5vw;
    border-radius: 5px;
    background-color: inherit;
    margin: 0; /* Important for vertical align on mobile phones */
    transition: 0.3s ease;
  }

  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: tomato;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: tomato;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 999;
  }

  .dropdown-content a {
    float: none;
    color: rgb(0, 0, 0);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }

  .dropdown-content a:hover {
    background-color: rgb(0, 0, 0);
    color: black;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

.right-nav .nav-btn{
    padding: 0.7vw 1.5vw;
    border-radius: 5px;
    border: 2px solid #f6b74f;
    font-size: 1.1vw;
    background-color: #f6b74f;
    color: rgb(0, 0, 0);
    transition: 0.3s ease;
    text-transform: uppercase;
}

.right-nav .nav-btn:hover{
    background-color: transparent;
    border: 2px solid #f6b74f;
    color:rgb(255, 255, 255)
}

.ri-menu-fill{
    color: rgb(0, 0, 0);
    font-size: 1.5rem;
    margin-left: 120px;
    cursor: pointer;
    display: none;
}

.home{
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    z-index: 10;
    margin-top: -138px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.home-content{
    color: aliceblue;
    text-align: center;
}

.home h1{
    text-transform: uppercase;
    font-size: 3.8rem;
    font-family: "Merriweather", serif;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 4px;
    text-shadow: -2px -4px 16px black;
}

.home p{
    font-size: 1.5rem;
    font-family: "Merriweather", serif;
    font-weight: 300;
    font-style: italic;
    margin: 15px 0 30px;
    text-shadow: -2px -4px 16px black;
}

.home button{
    background: #009688;
    padding: 0.5rem 2.15rem;
    outline: none;
    border: none;
    border-radius: 5px;
    color: #f6b74f;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 24px 32px rgba(28, 61, 94, 0.3);
    cursor: pointer;
    transition: color 0.6s ease, background 0.6s ease; 
}

.home button:hover{
    color: #009688;
    background: #f6b74f;
}

#myVideo {
    position: absolute; /* Change to absolute to stay within the container */
    top: 0;
    left: 0;
    z-index: -99;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the video covers the container area */
  }

  /* Cards section here  */
  .packages-section{
    width: 100%;
    height: auto;
    text-align: center;
    padding-top: 38px;
    background-image: linear-gradient(rgb(0 0 0 / 54%), rgb(0 0 0 / 26%)),url(./images/bgg.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;

  }

  .packages-section h1, .packages-section p{
    color: #fff;
  }

  .packages-section h1{
    font-size: 2rem;
    font-family: "Roboto Slab", serif;
  }
  .packages-section p {
    font-size: 1.6rem;
    font-family: "Caveat", cursive;
    font-weight: 400;
    margin-bottom: 38px;
  }

  .card-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 70%;
    /* margin: 0 280px; */
  }

  .card {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    overflow: hidden;
    width: 420px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
  }

  .card:hover {
    transform: translate(-5px, -5px);
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.25), 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  .card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .card-body {
    padding: 0;
    text-align: center;
  }
  .card h3 {
    margin: 10px 0 5px;
    font-size: 1.5rem;
  }

  .duration {
    color: #dd5227;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .card i{
    font-size: 1.8rem;
    margin-right: 5px;
    /* color: #000000; */
  }

  .icons {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
  }

  .icons div {
    font-size: 38px;
    margin: 0 10px;
  }

  .icons span{
    font-size: 1.5rem;
  }

  .locations {
    display: flex;
    gap: 0;
    padding: 10px 0;
    background: linear-gradient(to right, #fffdf9, #ffe5c1);
    border-top: 1px solid #ddd;
    border-bottom: 2px solid #000;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

  .locations span {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #d2691e; /* Orange-brown text */
    font-size: 14px;
  }

  .locations i {
    margin-right: 6px;
    color: #333;
  }

  .price {
    font-size: 20px;
    font-weight: bold;
    color: #007e33;
    margin: 15px 0 5px;
  }

  .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px 0 15px;
  }

  .buttons a{
    text-decoration: none;
  }

  .card-btn {
    background-color: #f6b74f; /* Initial button color */
    color: #ffffff;
    padding: 10px 35px; /* Increase size of the button */
    font-size: 18px; /* Make font size bigger */
    font-weight: bold;
    border: none;
    border-radius: 30px; /* Rounded corners */
    margin-top: 35px;
    cursor: pointer;
    transition: background-color 0.6s ease; /* Smooth transition for hover effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .card-btn:hover {
    background-color: #009688; /* Change color to sky blue on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }

  .whatsapp-button{
    background-color:#009688; /* Initial button color */
    color: #ffffff;
    padding: 10px 35px; /* Increase size of the button */
    font-size: 18px; /* Make font size bigger */
    font-weight: bold;
    border: none;
    border-radius: 30px; /* Rounded corners */
    margin-top: 35px;
    cursor: pointer;
    transition: background-color 0.6s ease; /* Smooth transition for hover effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .whatsapp-button:hover {
    background-color:#f6b74f; /* Change color to sky blue on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }

    .features-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
  }
  
  .features-section h2 {
    color: #00778B;
    font-size: 2rem;
    font-family: "Roboto Slab", serif;
    margin-bottom: 10px;
  }
  
  .features-section .subtitle {
    font-style: italic;
    color: #444;
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  .feature-card {
    background: white;
    border: 1px solid #ffde8f;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }
  
  .feature-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
  }
  
  .feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
  }
  
  .feature-card p {
    font-size: 14px;
    color: #555;
  }

  .imgSection{
    width: 100%;
    height: auto;
    background-color: #ccf2f1;
  }

 .footer {
  background: linear-gradient(to right, #2c3e50, #34495e);
  color: #ecf0f1;
  padding: 50px 20px 20px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f1c40f;
}

.footer-column p,
.footer-column a {
  margin: 8px 0;
  font-size: 15px;
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #f1c40f;
}

.footer .company-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #f1c40f;
}

.footer i {
  margin-right: 10px;
  color: #f1c40f;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
  color: #ecf0f1;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #f1c40f;
  transform: scale(1.2);
}

/* Footer bottom text */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  color: #bdc3c7;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}


/* css fr tour option side me  */
.box{
  display: flex;
  justify-content: space-evenly;
  margin: 0 20px;
}

.container1{
  width: 15%;
}

.list-group {
      display: flex;
      flex-direction: column;
      width: 15%;
      font-family: Arial, sans-serif;
    }

    .list-group-item {
      padding: 12px 20px;
      border: 1px solid #ddd;
      text-decoration: none;
      color: #333;
      background-color: #fff;
      transition: background-color 0.3s;
    }

    .list-group-item + .list-group-item {
      border-top: none;
    }

    .list-group-item:hover {
      background-color: #f5f5f5;
    }

    .list-group-item.active {
      background-color: #c4c702;
      color: white;
      font-weight: bold;
      cursor: default;
    }

    .list-group-item.disabled {
      color: #aaa;
      background-color: #f8f9fa;
      pointer-events: none;
      cursor: not-allowed;
    }
/* ---------------------------------css for tour page----------------------------------------------------------  */
.tourhead{
    width: 100%;
    height: 68vh;
    background:linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.2)), url(https://images.unsplash.com/photo-1654582960468-42cc056c3855?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;  
    font-family: sans-serif;
    z-index: -100;
}

.heading{
    width: 75%;
    margin: auto;
}

.heading h1{
    text-align: center;
    text-transform: capitalize;
    margin: 1vh auto;
    padding-bottom: 3vh;
    font-size: 1.6em;
    border-bottom: 2px solid green;
    font-family: "Rosarivo", cursive;
    font-weight: 700;
    margin-top: 3vh;
}



/* card grid sart here  */
.tour-container{
    height: auto;
    width: 75%;
    margin: auto;
    background-color: #ffffff;
    padding: 10px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;
}

.it-card {
    height: 100%;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
} */

.card-image {
    width: 100%;
    height: 57%;
}

.card-content {
    padding: 16px;
    text-align: center;
}

.card-content h3 {
    margin: 0px 0;
    font-size: 1.7rem;
    color: #16a9b1;
    text-transform: capitalize;
    font-family: "Merienda", cursive;
}

.card-content h4{
    margin: 8px 0;
    text-transform: capitalize;
    color: darkgrey;
    font-size: 1rem;
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: italic;
}

.card-content h2 {
    border-bottom: 4px dotted #16a9b1;
    border-top: 4px dotted #16a9b1;
    padding: 8px 0px;
}

.card-content h2 span{
    padding: 0 10px;
    font-size: 1.3rem;
    font-family: "Rosarivo", cursive;
    font-weight: 400;
    font-style: italic;
}

.card-content h2 .ri-sun-fill{
    color: orange;
}

.card-content h2 .ri-moon-fill{
    color: rgb(12, 179, 245);
}



.card-button {
    background-color: #9acd32;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.card-button:hover {
    background-color: #0056b3;
}




    /* RESPONSIVE CODE HERE 
FOR tablets & laptop............. */

@media (max-width:790px) {

    #cursor{
        display: none;
    }

    .ri-menu-fill{
        display: initial;
    }

    .right-nav button{
        display: none;
    }
    
    .left-nav a img{
        width: 23vw;
    }
    .home h1{
        font-size: 1.6rem;
        font-weight: 600;
    }

    .home p{
        font-size: 0.85rem;
        margin: 0 0 50px;
    }

    nav .center-nav{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 3.5rem;
        position: absolute;
        left: -100%;
        top: 110px;
        width: 100%;
        background: #ffffffe3;
        height: calc(100vh - 110px);
        z-index: 10;
        transition: left 0.4s ease;
    }

    nav .center-nav.active{
        left: 0%;
    }

    nav .center-nav a{
        margin-left: unset;
        font-size: 2rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #005264;
    }

    .dropdown {
        float: left;
        overflow: hidden;
      }
    
      .dropdown .dropbtn {
        margin-left: unset;
        font-size: 2rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #005264;
      }

      .card-container {
      flex-direction: column;
      align-items: center;
      margin: 0 20px;
    }
  
    .card {
      width: 90%;
    }
  
    .gallery-section h1 {
      font-size: 1.5rem;
    }
  
    .packages-section h1 {
      font-size: 1.6rem;
    }
  
    .packages-section p {
      font-size: 1.2rem;
    }
  
    .form button {
      font-size: 16px;
    }
    
    /* tour css for tab  */
    .tour-container {
        width: 95%;
    }

    .card-content {
        padding: 10px;
        height: 12rem;
    }

    .card-image {
        height: 50%;
    }

    .card-content h3{
        font-size: 1.2rem;
    }
    
    .card-content h2 {
        padding: 2px 0px;
    }

    .card-content h2 span {
        font-size: 1rem;
    }

    .card-content h2 i{
        font-size: 1.1rem;
    }

    .option-list h3{
        margin: -17px 0;
    }
    
    }


    /* RESPONSIVE CODE HERE 
FOR MOBILES............. */

/* NAVBAR START HERE  */

@media (max-width: 500px) {

    .ri-menu-fill{
        display: initial;
    }

    .right-nav button{
        display: none;
    }
    
    .left-nav a img{
        width: 28vw;
    }
    .home h1{
        font-size: 1.6rem;
        font-weight: 600;
    }

    .home p{
        font-size: 0.85rem;
        margin: 0 0 50px;
    }

    nav .center-nav{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 3.5rem;
        position: absolute;
        left: -100%;
        top: 110px;
        width: 100%;
        background: #ffffffe3;
        height: calc(100vh - 110px);
        z-index: 10;
        transition: left 0.4s ease;
    }

    nav .center-nav.active{
        left: 0%;
    }

    nav .center-nav a{
        margin-left: unset;
        font-size: 2rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #005264;
    }    

    .packages-section h1 {
      font-size: 1.3rem;
    }

    .card-container {
        margin: 0 5px;
        width: 100%;
    }
  
    .card-btn, .whatsapp-button {
      padding: 10px 20px;
      font-size: 16px;
    }
  
    .features-section h2 {
      font-size: 1.5rem;
    }
  
    .features-section .subtitle {
      font-size: 1.2rem;
    }
  
    .info {
      flex-direction: column;
      align-items: center;
    }
  
    .info li {
      font-size: 14px;
      width: 90%;
      margin-bottom: 10px;
    }

    .left .tagline{
      font-size: 1.3rem;
      margin-bottom: 5px;
    }

    .packages-section p {
      font-size: 1rem;
      padding: 9px 12px;
    }

    .card {
        width: 100%;
    }

    .card img {
    height: 200px;
  }

    .icons span {
     font-size: 1.2rem;
    }
    
    .box{
      flex-direction: column;
    }
    .container1 {
    display: none;
    }

    .list-group {
      width: 100%;
      margin-bottom: 10px;
    }
    
    .card-grid{
    grid-template-columns: repeat(1, 1fr);
}

.slider-wrapper{
    width: 100%;
    height: 90px;
}

 .slide img{
    width: 150px;
    height: 60px;
 }
 
  .footer {
    text-align: left;
    padding: 40px 15px;
  }

  .footer-container{
    text-align: center;
  }

  .social-icons a {
    margin-right: 10px;
  }

  }
