html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;

}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.navbar {
    width: 100%;
    padding: 0 1rem 0 1rem;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fs-xl-5 {
    font-size: 1.25rem;
   
}


@media (max-width: 992px) {
    .navbar {
        background-color: #ffffff;
        padding: 0 !important;
    }

    .nav-link {
        color: #000000 !important;
    }

    .navbar-toggler {
        color: rgb(22, 21, 21);
        border-color: rgb(0, 0, 0);
        margin: 0;
        position: absolute;
        top: 2rem;
        right: 1rem;
        z-index: 1031;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        filter: brightness(-100%);
    }

    .fs-xl-5 {
        font-size: inherit;
    }

    .nav-item {
        margin-left: 1rem;
    }

    .book-now-btn {
        width: fit-content;
        margin: .5rem 0 0 .5rem;
        margin-bottom: 1rem;
        color: #000000 !important;
        border: 1px groove #000000 !important;
        box-shadow: 0px 2px 3px #000000 !important;
    }

    .hero-content {
        margin-top: 75% !important;
    }

}
.nav-link {
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000000;
    transition: width 0.4s ease-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.8);
    z-index: 1;
    transition: color 0.3s ease-in-out;
}
.dropdown-item{
    padding: 10px;
    color: #000000;
    font-weight: 400;
    cursor: pointer;
    position: relative;
}
.dropdown-item:hover{
    color: #ffffff;
    background-color: #3b3b3b;
}
.book-now-btn{
    background-color: #e9f0f8;
    color: #000000 !important;
    border: 1px groove #050505;
    transition: ease-in-out 0.3s;
    box-shadow: 0px 2px 3px #000000;;
    padding: 8px 20px;
    font-weight: 700;
    border-radius: 5px;
}

.book-now-btn:hover {
    color: #000000 !important;
    transition: ease-in-out 0.3s;
    box-shadow: 0px 4px 10px #383838;
    transform: scale(1.1);
}

.book-now-btn:active {
    transform: scale(0.9);
    box-shadow: inset 2px 2px 10px 3px #8b8b8b;
}
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('../../public/adventure.webp') center/cover no-repeat;
    color: white;
    padding: 150px 0;
    text-align: center;
}
.hero h1{
    margin-top: 10%;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}
@media (max-width: 768px) {
    .hero {
        padding: 100px 15px;
    }
    .hero h1 {
        font-size: 2rem;
        margin-top: 25%;
    }
}

.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.values-section {
    background-color: #f1f3f5;
    padding: 80px 0;
}

.value-item {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: scale(1.05);
}

.value-item i {
    font-size: 3rem;
    color: #186aa0;
    margin-bottom: 15px;
}

.testimonials-section {
    background-color: #f8f9fa;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.testimonial-card:hover {
    transform: rotateX(5deg) rotateY(5deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-content {
    text-align: center;
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    margin-right: 15px;
}

.testimonial-author {
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .testimonial-card {
        transform: none;
    }
    .testimonial-card:hover {
        transform: scale(1.02);
    }
}
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #186aa0 100%);
    color: #f4f4f4;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

footer * {
    position: relative;
    z-index: 2;
}

footer h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    text-transform: uppercase;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

footer ul li a {
    color: #f4f4f4;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

footer ul li a:hover {
    color: #3498db;
    opacity: 1;
    transform: translateX(10px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3498db;
    transform: scale(1.1);
}
.social-contact-container {
    position: fixed;
    right: 20px;
    top: 75%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;

}

.social-contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-contact-btn:hover::before {
    opacity: 1;
}

.whatsapp-btn {
    background: linear-gradient(145deg, #25D366, #128C7E);
    box-shadow: inset 2px 3px 10px #013615;
}

.phone-btn {
    background: linear-gradient(145deg, #4CAF50, #45A049);
    box-shadow: inset 2px 3px 10px #034205;
}

.email-btn {
    background: linear-gradient(145deg, #FF4081, #F50057);
    box-shadow: inset 2px 3px 10px #57031f;
}

.social-contact-btn i {
    font-size: 24px;
    position: relative;
    z-index: 1;
}

.social-contact-btn:hover {
    transform: scale(1.1) translateZ(20px);
}

@media (max-width: 768px) {
    .social-contact-container {
        right: 10px;
        top: 80%;
    }

    .social-contact-btn {
        width: 40px;
        height: 40px;
    }
}