@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;1,100;1,300&display=swap");

*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: 0.2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

img {
    max-width: 100%;
    height: auto;
}

section{
    padding: 5rem 9%;
}

.btn{
    margin-top: 1rem;
    display: inline-block;
    border: 0.2rem solid black;
    color: black;
    cursor: pointer;
    background: none;
    font-size: 1.7rem;
    font-weight: 600;
    padding: 1rem 3rem;
    border-radius: 40px;
}

.btn:hover{
    background-color: black;
    color: white;
}

.heading{
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 4rem;
    color: #10221b;
}


/* HEADER HEADER HEADER HEADER HEADER HEADER HEADER HEADER */

.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 9%;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: transparent;
    transition: 0.3s ease;
}

.header.active {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .logo{
    margin-right: auto;
    font-size: 2.8rem;
    color: black;
    font-weight: bolder;
}

.menu-btn {
    display: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: black;
    padding: 0.5rem;
    z-index: 10001;
}

.nav-close {
    display: none;          
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: black;
}

.header .navbar a{
    color: black;
    font-size: 17px;
    margin: 0 10px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.header .navbar a:hover{
    background-color: #0F172A;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* HOME HOME HOME HOME HOME HOME HOME */

.home {
    padding: 0;
}

.home .box {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    justify-content: flex-start;
    padding: 2rem 9%;
}

.home .content {
    width: 50rem;
}

.home .content h3{
    font-size: 6rem;
    color: #0F172A;
    padding-top: 0.5rem;
    text-transform: uppercase;
}

.home .content p {
    line-height: 2;
    color: black;
    font-size: 1.5rem;
    padding: 1rem 0;
}


/* ADVENTURES SECTION ADVENTURES SECTION ADVENTURES SECTION ADVENTURES SECTION*/

.category {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items:center ;
  padding: 7rem 9% 0 9%;
}

.category .box-container {
  overflow: hidden;
  width: 100%;
}

.category .box-container .box {
  text-align: center;
  padding: 1rem;
  min-width: 32rem;
  max-width: 32rem;
  white-space: normal;
  min-height: 35rem;        
  display: flex;            
  flex-direction: column;   
  align-items: center;      
  justify-content: center;
}

.category .track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.category .track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.category .box-container .box  img{
  height: 25rem;
  width: 25rem;
  border-radius: 50%;
  margin-bottom:1rem ;
  box-shadow: 1px 2px 6px 3px rgb(100, 98, 98);
  object-fit: cover;
}

.category .box-container .box h3 {
    font-size: 2rem;
    background: linear-gradient(to right, #2545fc,
  #0de3eb, #100a2e, #eedd44);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.category .box-container .box p {
    height: 120px;
    font-size: 1.5rem;
    color: #10221b;
    padding: 1rem;
    line-height: 2;
}
/* PACKAGES SECTION PACKAGES SECTION PACKAGES SECTION PACKAGES SECTION PACKAGES SECTION*/

.packages {
    background: #eee;
}

.packages .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 2rem;
}

.packages .box-container .box {
    text-align: center;
    background: #fff;
    border: 0.2rem solid black;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
}

.packages .box-container .box:hover {
    background: rgb(17, 68, 72);
}

.packages .box-container .box:hover .content > * {
    color: #fff;
}

.packages .box-container .box:hover .btn {
    border-color: #fff;
}

.packages .box-container .box:hover .btn:hover {
    background: #fff;
    color: #10221b;
}

.packages .box-container .box .image {
    height: 25rem;
    overflow: hidden;
    padding: 2rem;
    padding-bottom: 0;
    border-radius: 0.5rem;
}

.packages .box-container .box .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.packages .box-container .box .content {
    padding: 3rem;
}

.packages .box-container .box .content h3 {
    font-size: 2rem;
    color: #10221b;
}

.packages .box-container .box .content p {
    font-size: 1.5rem;
    color: black;
    padding: 1rem 0;
    line-height: 2;
}

.packages .box-container .box .content .price {
    font-size: 2rem;
    color: black;
}

/* CONTACT SECTION CONTACT SECTION CONTACT SECTION CONTACT SECTION */

.wrapper1{
    margin-left: auto;
    margin-right: auto;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 550px;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.wrapper1 .title1 h1{
    color: green;
    text-align: center;
    margin-bottom: 25px;
    font-size: 3.5rem;
}

.contact-form{
    display: flex;
}

.uil {
  height: 50px;
  width: 50px;
}

.input-fields {
    display: flex;
    flex-direction: column;
    margin-right: 4%;
}

.input-fields, 
.msg{
    width: 60%;
}

.input-fields .input,
.msg textarea {
    margin: 10px 0;
    background: transparent;
    border: 0px;
    border-bottom: 2px solid #5f66618f;
    padding: 10px;
    color: black;
    width: 100%;

}

.msg textarea {
  height: 189px;
}

.msg .btn1 {
    margin-top: 1rem;
    display: inline-block;
    border: 0.2rem solid green;
    color: black;
    cursor: pointer;
    font-size: 1.7rem;
    padding: 1rem 3rem;
    border-radius: 40px;
    background: none;
}

.btn1 button[type="submit"] {
    background-color: transparent;
    font-size: 15px;
    font-weight: 500;
}

i {
    color: green;
}

.contact-form-inner {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0;
}

/* FOOTER FOOTER FOOTER FOOTER */

.footer {
    background: black;
    color: white;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.footer .box-container .box a {
    display: block;
    font-size: 1.4rem;
    color: #fff;
    padding: 1rem 0;
}

.footer .box-container .box h3 {
    font-size: 2rem;
    padding: 1.5rem 0;
    color: #fff;
}

.footer .box-container .box a i {
    color: #219150;
    padding-right: 0.5rem;
}

.footer .box-container .box a:hover {
    color: #219150;
}

.footer .box-container .box a:hover i {
    padding-right: 2rem;
}

.footer .credit {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1rem;
    padding-top: 2.5rem;
    font-size: 2rem;
    color: #fff;
}

.footer .credit span {
    color: #219150;
}

/* RESPONSIVE RESPONSIVE RESPONSIVE  RESPONSIVE*/

@media (max-width: 1200px) {
    .header {
        padding: 2rem;
    }
    section {
        padding: 3rem 2rem;
    }
}

/* ── Tablets: 991px and below ── */
@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    .home .box {
        padding: 2rem;
        justify-content: center;
        background-position: right !important;
    }

    .home .box .content {
        margin-top: -420px;
        text-align: center;
    }

    .home .box .content h3 {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .home .content {
        width: 100%;
    }

    .home .content h3 {
        font-size: 3rem;
    }

    .wrapper1 {
        padding: 20px 15px;
    }

    .category .box-container .box {
        min-width: 26rem;
        max-width: 26rem;
    }

    .category .box-container .box img {
        height: 20rem;
        width: 20rem;
    }

    .packages .box-container {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {

    .menu-btn {
        display: block;
    }

    .header .navbar {
        position: fixed;
        top: 0;
        left: -110%;            
        background: white;
        z-index: 10000;
        width: 35rem;
        height: 100%;
        display: flex;
        flex-flow: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
    }

    .header .navbar.active {
        left: 0;
        box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
    }

    .header .navbar a {
        margin: 1rem 0;
        font-size: 3rem;
    }

    .nav-close {
        display: block;
    }

    .contact-form {
        flex-direction: column;
    }

    .msg textarea {
        height: 80px;
    }

    .input-fields,
    .msg {
        width: 100%;
    }


    .contact-form-inner .input,
    .contact-form-inner textarea {
        width: 100% !important;
    }


    .msg {
        margin-left: 0;           
    }

    .contact-form-inner {
        flex-direction: column;
        width: 100%;
    }
}


@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .heading {
        font-size: 3rem;
    }

    .contact-form-inner .input,
    .contact-form-inner textarea {
        width: 100% !important;
    }
    
    .wrapper1 {
        padding: 10px;
    }

    .category .box-container .box {
        min-width: 22rem;
        max-width: 22rem;
    }

    .category .box-container .box img {
        height: 17rem;
        width: 17rem;
    }
}

/* END END END END END */


