/* ==========================
   GOOGLE FONT
==========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#eef5ff;
    color:#222;
    overflow-x:hidden;
}

/* Scroll Bar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:#0c7c59;
    border-radius:20px;
}

::-webkit-scrollbar-track{
    background:#ddd;
}

/* ==========================
HEADER
==========================*/

header{
    width:100%;
    height:80px;
    position:fixed;
    top:0;
    left:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(15px);
    z-index:999;
    transition:.4s;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.logo h2{
    color:#fff;
    font-size:34px;
    font-weight:700;
    letter-spacing:2px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:40px;
}

nav ul li a{
    text-decoration:none;
    color:white;
    font-weight:600;
    transition:.3s;
    position:relative;
}

nav ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:3px;
    background:#00ff95;
    transition:.4s;
}

nav ul li a:hover::after{
    width:100%;
}

/* ==========================
HERO
==========================*/

.hero{
    width:100%;
    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.45),
    rgba(0,0,0,.45)),
    url("imagess/hero.jpg");

    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-content{
    color:white;
    animation:fadeUp 1.3s;
}

.hero h1{

    font-size:65px;
    margin-bottom:20px;
    text-shadow:3px 3px 15px black;
}

.hero p{

    font-size:22px;
    margin-bottom:40px;
    font-weight:300;
}

.btn{

    text-decoration:none;
    color:white;
    background:#00a86b;
    padding:16px 42px;
    border-radius:50px;
    font-size:18px;
    transition:.4s;
    display:inline-block;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.btn:hover{

    transform:translateY(-6px);
    background:#ff7b00;
}

/* ==========================
SECTION
==========================*/

section{

    padding:90px 8%;
}

section h2{

    text-align:center;
    font-size:42px;
    margin-bottom:60px;
    color:#003049;
}

/* ==========================
CARDS
==========================*/

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;
}

.card{

    background:white;

    border-radius:25px;

    padding:35px;

    transition:.4s;

    position:relative;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.card::before{

    content:"";

    position:absolute;

    top:-80px;

    right:-80px;

    width:180px;

    height:180px;

    background:linear-gradient(45deg,#00b894,#55efc4);

    border-radius:50%;

    transition:.5s;
}

.card:hover::before{

    transform:scale(6);
}

.card h3{

    position:relative;

    z-index:2;

    color:#004d40;

    margin-bottom:15px;

    transition:.4s;
}

.card p{

    position:relative;

    z-index:2;

    color:#555;

    line-height:28px;

    transition:.4s;
}

.card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 50px rgba(0,0,0,.18);
}

.card:hover h3,

.card:hover p{

    color:white;
}

/* ==========================
WHY US
==========================*/

.why{

background:linear-gradient(135deg,#0f2027,#203a43,#2c5364);

}

.why h2{

color:white;

}

.why .card{

background:rgba(255,255,255,.12);

backdrop-filter:blur(10px);

border:1px solid rgba(255,255,255,.25);

text-align:center;

}

.why .card h3{

color:white;

font-size:24px;

}

/* ==========================
FOOTER
==========================*/

footer{

background:#051923;

padding:35px;

text-align:center;

color:white;

font-size:17px;

}

/* ==========================
ANIMATION
==========================*/

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(80px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* Floating Animation */

.card{

animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

100%{

transform:translateY(0);

}

}

/* ==========================
RESPONSIVE
==========================*/

@media(max-width:992px){

.hero h1{

font-size:48px;

}

header{

padding:0 30px;

}

nav ul{

gap:20px;

}

}

@media(max-width:768px){

header{

flex-direction:column;

height:auto;

padding:15px;

}

nav ul{

flex-wrap:wrap;

justify-content:center;

padding-top:10px;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:18px;

}

section{

padding:70px 25px;

}

}

@media(max-width:480px){

.hero h1{

font-size:30px;

}

.hero p{

font-size:16px;

}

.btn{

padding:14px 28px;

font-size:16px;

}

section h2{

font-size:30px;

}
}
.hidden{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

.active{
    color:#00ff95 !important;
}

.btn{
    position:relative;
    overflow:hidden;
}

@keyframes ripple{

to{

transform:scale(4);

opacity:0;

}

}

#topBtn:hover{
    transform:scale(1.1);
    background:#ff7b00 !important;
}
/*==========================
OUR TOURS
===========================*/

.tours{
    padding:80px 8%;
    background:#f8fbff;
}

.tours h2{
    text-align:center;
    font-size:42px;
    color:#0c7c59;
}

.tour-subtitle{
    text-align:center;
    color:#666;
    margin:15px 0 50px;
}

.tour-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:30px;
}

.tour-card{
    background:white;
    border-radius:20px;
    padding:30px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
    border-top:6px solid #0c7c59;
}

.tour-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.tour-card h3{
    margin:15px 0;
    color:#0c7c59;
}

.tour-card ul{
    margin:20px 0;
    padding-left:20px;
}

.tour-card ul li{
    margin:10px 0;
    color:#555;
}

.tour-badge{
    background:#0c7c59;
    color:white;
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    display:inline-block;
}

.tour-btn{
    display:inline-block;
    margin-top:20px;
    background:#0c7c59;
    color:white;
    text-decoration:none;
    padding:12px 30px;
    border-radius:30px;
    transition:.3s;
}

.tour-btn:hover{
    background:#ff7b00;
}
/* Gallery Page */

.gallery-banner{
    height:420px;
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("imagess/banner.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
}

.gallery-banner h1{
    font-size:55px;
    margin-bottom:15px;
}

.gallery-banner p{
    font-size:20px;
}

.gallery{
    padding:70px 8%;
}

.section-title{
    text-align:center;
    font-size:40px;
    color:#0c7c59;
    margin-bottom:40px;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    cursor:pointer;
}

.gallery-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;
}

.gallery-card:hover img{
    transform:scale(1.1);
}

.overlay{
    position:absolute;
    left:0;
    bottom:-100%;
    width:100%;
    height:100%;
    background:rgba(12,124,89,.85);
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.4s;
}

.gallery-card:hover .overlay{
    bottom:0;
}

.overlay h3{
    color:#fff;
    font-size:26px;
    text-align:center;
}

.active{
    color:#ffb703;
    font-weight:bold;
}
/* =========================
   PERSONAL PHOTOS & VIDEOS
========================= */

.personal-media {
    padding: 60px 8%;
    background: #ffffff;
}

.media-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.media-card {
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

.media-card img,
.media-card video {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: cover;
}

.media-card img {
    transition: transform 0.4s ease;
}

.media-card:hover img {
    transform: scale(1.05);
}

/* Mobile */

@media (max-width: 768px) {

    .personal-media {
        padding: 40px 5%;
    }

    .media-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .media-card img,
    .media-card video {
        height: 250px;
    }

}
.tour-price {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    font-size: 16px;
}