*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body{
    height:200vh;
    background:#f4f4f4;
}
/* NavBar*/

.navbar{

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 100px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: transparent;

    z-index: 999;

    transition:
        background 0.5s ease,
        height 0.5s ease,
        box-shadow 0.5s ease,
        backdrop-filter 0.5s ease;
}
.navbar.scrolled{

    background: rgba(255,255,255,0.96);

    backdrop-filter: blur(12px);

    box-shadow: 0 4px 20px rgba(0,0,0,0.08);

    height: 75px;
}
#navbar__logo img{

    height: 70px;

    transition: 0.4s ease;
}

.navbar.scrolled #navbar__logo img{

    height: 55px;
}

/* SCROLLED */

.navbar.scrolled .navbar__links{
    color: black;
}


.navbar__container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
    z-index: 1;
}

#navbar__logo img{
    height: 80px;
    width: auto;
    object-fit: contain;
}

.navbar__menu{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 20px;
    margin-left: 80px;
}

.navbar__item{
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar__links{
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.4s ease;
}

.navbar__links:hover{
    color: #f7b733;
}

.navbar__buttons{
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: auto;
}

.button{
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    background: #f7b733;
    color: #000;
    font-weight: bold;
    transition: 0.3s ease;
}
.navbar .button{
    transition: 0.4s ease;
}

.navbar.scrolled .button{

   background: #f7b733;
    color: #000;
}

.button:hover{
    background:#f7b733;
    filter: brightness(1.1);
}

.navbar__toggle{
    display: none;
}

.bar{
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: #fff;
    display: block;
    transition: all 0.4s ease;
}

.navbar.scrolled .bar{
    background:black;
    color: #fff;
}

/* MObile*/
@media screen and (max-width: 960px){

    .navbar__container{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar__menu{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        position: fixed;
        top: 0;
        right: -100%;

        width: 70%;
        height: 100vh;

        background: #111;
        padding: 0%;
        transition: 0.5s ease;
        gap: 30px;
    }

    .navbar__menu.active{
        right: 0;
    }

   

    .navbar__buttons{
        display: flex;
        gap: 10px;
        margin-left: auto;
        margin-right: 20px;
    }



    .button{
        padding: 8px 14px;
        font-size: 0.8rem;

    }


    .navbar__toggle{
        display: block;
        cursor: pointer;
        z-index: 1001;

        position: relative;
    }

    .navbar.scrolled .navbar__links{
    color: white;
}

}
@media screen and (max-width: 960px){

    .navbar.scrolled .bar{
        background: black;
    }

}
/* HERO SECTION */

.hero{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* SLIDES */

.slide{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active{
    opacity: 1;
}

/* IMAGES */

.slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK OVERLAY */

.hero::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* TEXT CONTENT */

.hero__content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    text-align: center;
    color: white;

    z-index: 2;
}

/* TITLE */

.hero__content h1{
    font-size: 4rem;
    margin-bottom: 20px;
}

/* SUBTITLE */

.hero__content p{
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* BUTTON */

.hero__btn{
    display: inline-block;
    padding: 14px 30px;

    background: #f7b733;
    color: black;

    text-decoration: none;
    border-radius: 30px;

    font-weight: bold;
    transition: 0.3s ease;
}

.hero__btn:hover{
    background:#f7b733;
    filter: brightness(1.1);
}


.floating-pill{

    position: fixed;

    bottom: 30px;
    right: 30px;

    background: rgb(37, 211, 102);
    color: white;

    text-decoration: none;

    padding: 14px 28px;

    border-radius: 999px;

    font-weight: bold;

    display: flex;
    align-items: center;
    gap: 10px;

    box-shadow: 0 6px 20px rgba(0,0,0,0.2);

    z-index: 1000;

    transition:
        background 0.4s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;

    /* SMOOTHER SLOWER FLOAT */

    animation: floaty 4s ease-in-out infinite;
}

/* HOVER */

.floating-pill:hover{

    background: rgb(30, 190, 90);

    transform: scale(1.05);

    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

/* SMOOTH FLOATING */

@keyframes floaty{

    0%{
        transform: translateY(0px);
    }

    25%{
        transform: translateY(-6px);
    }

    50%{
        transform: translateY(0px);
    }

    75%{
        transform: translateY(-3px);
    }

    100%{
        transform: translateY(0px);
    }
}

/* ABOUT SECTION */

.about{
    padding: 120px 50px;

    background:
    linear-gradient(
        to bottom,
        #ffffff,
        #f8f8f8
    );
}

/* CONTAINER */

.about__container{

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

/* SMALL TAG */

.about__tag{

    display: inline-block;

    padding: 8px 18px;

    background: rgba(37,211,102,0.12);

    color: rgb(37,211,102);

    border-radius: 30px;

    font-size: 0.9rem;

    font-weight: bold;

    margin-bottom: 25px;
}

/* TITLE */

.about__content h2{

    font-size: 3.2rem;

    line-height: 1.2;

    color: #111;

    margin-bottom: 25px;
}

/* TEXT */

.about__content p{

    font-size: 1.08rem;

    line-height: 1.9;

    color: #666;

    margin-bottom: 20px;
}

/* BUTTON */

.about__btn{

    display: inline-block;

    margin-top: 15px;

    padding: 14px 30px;

    background: rgb(37,211,102);

    color: white;

    text-decoration: none;

    border-radius: 999px;

    font-weight: bold;

    transition: 0.4s ease;
}

.about__btn:hover{

    transform: translateY(-3px);

    background: rgb(30,190,90);

    box-shadow:
    0 10px 25px rgba(37,211,102,0.3);
}

/* IMAGE */

.about__image img{

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 30px;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.12);
}

/* MOBILE */

@media screen and (max-width: 960px){

    .about{
        padding: 80px 20px;
    }

    .about__container{
        grid-template-columns: 1fr;
    }

    .about__content h2{
        font-size: 2.3rem;
    }

    .about__image img{
        height: 280px;
    }
}
/* TRANSFERS SECTION */

.transfers{

    padding: 120px 50px;

    background:
    linear-gradient(
        to bottom,
        #ffffff,
        #f8f8f8
    );
}

/* CONTAINER */

.transfers__container{

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.1fr 1fr;

    gap: 70px;

    align-items: center;
}

/* IMAGE */

.transfers__image{
    
    background: #f5f5f5;
    
    position: relative;
    
    display:flex;
    
    overflow: hidden;
    
    justify-content: center;
    
    align-items: center;

    padding: 20px;

    height: 550px;
    
    border-radius: 30px ;
    
    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);
    
}

.transfers__image img{

    width: auto;
    
    max-width: 110%;

    height: 100%;

    object-fit: contain;
    
    transform: scale(1.15);

    border-radius: 20px;
    
    transition: 0.4s ease;
}

/* CONTENT CARD */

.transfers__content{

    background: rgba(255,255,255,0.7);

    backdrop-filter: blur(10px);

    padding: 50px;

    border-radius: 30px;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.06);
}

/* SMALL TAG */

.transfer__tag{

    display: inline-block;

    padding: 8px 18px;

    background: rgba(37,211,102,0.12);

    color: rgb(37, 211, 102);

    border-radius: 30px;

    font-size: 0.9rem;

    font-weight: bold;

    margin-bottom: 25px;
}

/* TITLE */

.transfers__content h2{

    font-size: 3rem;

    line-height: 1.2;

    color: #111;

    margin-bottom: 25px;
}

/* TEXT */

.transfers__content p{

    font-size: 1.08rem;

    line-height: 1.9;

    color: #666;

    margin-bottom: 20px;
}

/* BUTTON */

.transfer__btn{

    display: inline-block;

    margin-top: 15px;

    padding: 14px 30px;

    background: rgb(37, 211, 102);

    color: white;

    text-decoration: none;

    border-radius: 999px;

    font-weight: bold;

    transition: 0.4s ease;
}

.transfer__btn:hover{

    background: rgb(30, 190, 90);

    transform: translateY(-3px);

    box-shadow:
    0 10px 25px rgba(37,211,102,0.35);
}

/* MOBILE */

@media screen and (max-width: 960px){

    .transfers{
        padding: 80px 20px;
    }

    .transfers__container{
        grid-template-columns: 1fr;
    }

    .transfers__image{

        height: 320px;

        padding: 10px;
    }
    .transfers__image img{
        transform: scale(1.05);
    }

    .transfers__content{
        padding: 35px;
    }

    .transfers__content h2{
        font-size: 2.2rem;
    }
}

/* TOURS SECTION */

.tours{
    padding: 100px 50px;

    background: #f8f8f8;

    overflow: hidden;
}

/* TITLE */

.tours__title{
    text-align: center;

    font-size: 3rem;

    margin-bottom: 60px;
}

/* WRAPPER */

.tours__wrapper{
    position: relative;

    display: flex;
    align-items: center;
}

/* SLIDER */

.tours__container{
    display: flex;

    gap: 30px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scrollbar-width: none;
}

.tours__container::-webkit-scrollbar{
    display: none;
}

/* CARD */

.tour__card{
    min-width: calc(33.333% - 20px);

    background: white;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: 0.4s ease;

    flex-shrink: 0;
}

.tour__card:hover{
    transform: translateY(-10px);
}

/* IMAGE */

.tour__card img{
    width: 100%;

    height: 250px;

    object-fit: cover;
}

/* CONTENT */

.tour__content{
    padding: 25px;
}

.tour__content h3{
    margin-bottom: 15px;

    font-size: 1.5rem;
}

.tour__content p{
    color: #666;

    line-height: 1.6;
}

/* BUTTONS */

.slider-btn{
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 50px;
    height: 50px;

    border: none;

    border-radius: 50%;

    background: white;

    box-shadow: 0 5px 20px rgba(0,0,0,0.15);

    cursor: pointer;

    font-size: 1.5rem;

    z-index: 10;

    transition: 0.3s ease;
}

.slider-btn:hover{
    background: rgb(37, 211, 102);

    color: white;
}

.prev{
    left: -25px;
}

.next{
    right: -25px;
}

/* MOBILE */

@media screen and (max-width: 960px){

    .tour__card{
        min-width: 85%;
    }

    .tours{
        padding: 80px 20px;
    }

    .tours__title{
        font-size: 2.3rem;
    }
}


/* FOOTER */

.footer{
    background: #111;
    color: white;

    padding-top: 70px;
}

/* CONTAINER */

.footer__container{
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 50px;

    padding: 0 40px 60px;
}

/* LOGO */

.footer__logo{
    font-size: 2rem;

    font-weight: bold;

    color: white;

    text-decoration: none;

    display: inline-block;

    margin-bottom: 20px;
}

.footer__logo img{

    width: 180px;

    height: auto;

    object-fit: contain;
}
    




/* HEADINGS */

.footer__section h3{
    margin-bottom: 20px;

    color: rgb(37, 211, 102);
}

/* TEXT */

.footer__section p{
    color: #ccc;

    line-height: 1.8;

    margin-bottom: 10px;
}

/* LINKS */

.footer__section a{
    display: block;

    color: #ccc;

    text-decoration: none;

    margin-bottom: 12px;

    transition: 0.3s ease;
}

.footer__section a:hover{
    color: rgb(37, 211, 102);
}

/* SOCIAL LINKS */

.footer__socials{
    display: flex;
    flex-direction: column;
}

/* COPYRIGHT */

.footer__bottom{
    border-top: 1px solid rgba(255,255,255,0.1);

    text-align: center;

    padding: 20px;

    color: #aaa;

    font-size: 0.9rem;
}

/* MOBILE */

@media screen and (max-width: 960px){

    .footer__container{
        grid-template-columns: 1fr;

        text-align: center;
    }

    .footer__socials{
        align-items: center;
    }
}