* {
    box-sizing: border-box;
}

body{
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

.topnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: whitesmoke;
    height: 80px;
    padding: 10px 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

/* Scrolled Navigation Bar Background */
.topnav.scrolled {
    background-color: #0074B3;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.topnav.scrolled a {
    color: rgb(255, 191, 0);
}

.topnav.scrolled a:hover {
    color: rgba(255, 191, 0, 0.6);
}

.topnav.scrolled a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 50%;
    height: 3px;
    background-color: rgb(255, 191, 0);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.topnav.scrolled a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.topnav.scrolled a.active {
    color: rgba(255, 191, 0, 0.6);
}

.topnav.scrolled a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.topnav img {
    height: 100%;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.nav-links a {
    color: black;
    text-decoration: none;
    position: relative;
    font-size: 17px;
    padding: 0 50px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
    color: rgba(252, 6, 6, 0.8);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 50%;
    height: 3px;
    background-color: #FC0606;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-links a.active {
    color: rgba(231, 76, 60, 0.6);
}

.nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.bar-icon,
.close-icon {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: black;
}

@media screen and (max-width: 768px) {
    .topnav .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: whitesmoke;
        z-index: 10;
        padding: 16px 0;
    }

    .topnav .nav-links a {
        color: black;
        text-decoration: none;
        position: relative;
        font-size: 17px;
        padding: 12px 16px;
        text-align: left;
        width: 100%;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    /* Scrolled Navigation Bar Background */
    .topnav.scrolled {
        background-color: #0074B3;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    }

    .topnav.scrolled a {
        color: #000000;
    }

    .topnav.scrolled a:hover {
        color: #FC0606;
    }

    .topnav.scrolled a::after {
        content: '';
        position: relative;
        left: 50%;
        bottom: -4px;
        width: 50%;
        height: 3px;
        background-color: #FC0606;
        transform: translateX(-50%) scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }
    
    .topnav.scrolled a:hover::after {
        transform: translateX(-50%) scaleX(1);
    }
    
    .topnav.scrolled a.active {
        color: #FC0606;
    }
    
    .topnav.scrolled a.active::after {
        transform: translateX(-50%) scaleX(1);
    }

    .topnav .icon {
        display: block;
    }

    .close-icon {
        display: none;
    }

    .bar-icon {
        display: block;
    }

    .bar-icon i:hover,
    .close-icon i:hover {
        color: #FC0606;;
    }

    .topnav.scrolled i:hover {
        color: #ffbf00;
    }

    .topnav.responsive .bar-icon {
        display: none;
    }

    .topnav.responsive .close-icon {
        display: block;
    }

    .topnav.responsive .nav-links {
        display: flex;
    }

    .nav-links a::after {
        content: none;
    }

    .nav-links a:hover {
        color: #FC0606;
    }

    .nav-links a.active {
        color: #FC0606;
    }
}

/* Custom Language Dropdown Styling */
.lang-select {
    position: relative;
    display: inline-block;
    width: 100px;
    margin: 10px;
    cursor: pointer;
}

.selected-lang {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #ffffff;
}

.selected-lang img {
    width: 20px;
    height: 20px;
}

.lang-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
}

.lang-options li {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.lang-options li:last-child {
    border-bottom: none;
}

.lang-options li:hover {
    background-color: #f0f0f0;
}

.lang-options img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Show dropdown on hover */
.lang-select:hover .lang-options {
    display: block;
}

/* Hide the Google Translate Bar */
body > .skiptranslate {
    display: none;
}

body {
    top: 0px !important;
}

@media (max-width: 600px) {
    .lang-select {
        width: 100px;
    }

    .selected-lang, .lang-options li {
        font-size: 12px;
        padding: 5px;
    }

    .lang-options img {
        margin-right: 5px;
    }
}


footer {
    background-color: #2A2A2A;
    color: #ffffff;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
}

footer .footer-col {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

footer h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    /* text-transform: uppercase; */
    color: #FC0606;
}

footer p {
    font-size: 16px;
    line-height: 1.8;
    color: #F2F4F7;
}

footer .social-links {
    margin-top: 15px;
    display: flex;
    gap: 20px;
}

footer .social-links a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: #FC0606;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .footer-col {
        max-width: 100%;
    }

    footer h4 {
        font-size: 18px;
    }
    
    footer p {
        font-size: 14px;
    }

    footer .social-links {
        justify-content: center;
    }
}

/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #FC0606;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 15px;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: none;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: #C0392B;
    transform: translateY(-5px);
}

/* Show the button when scrolling down */
.show {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .back-to-top {
        right: 20px;
        bottom: 20px;
        padding: 12px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        right: 15px;
        bottom: 15px;
        padding: 10px;
        font-size: 16px;
    }
}

/* Copyright Section Styles */
.copyright-section {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.copyright-section p {
    margin: 0;
}

.copyright-section span {
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .copyright-section {
        font-size: 14px; 
    }
}

/*WhatsApp Button Styles*/
.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Adjusted position to left */
    transform: translateX(0); /* Reset transform */
    background-color: #25D366;
    color: white;
    font-size: 32px;
    text-decoration: none;
    border-radius: 50%; /* Ensures the icon is round */
    width: 50px; /* Equal width and height */
    height: 50px; /* Equal width and height */
    display: flex; /* Center align icon */
    align-items: center; /* Center align icon */
    justify-content: center; /* Center align icon */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    animation: zoom 2s infinite;
}

@keyframes zoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Hover effect */
.whatsapp-icon:hover {
    transform: scale(1.1); /* Enlarges icon on hover */
}

/* Making the icon responsive */
@media (max-width: 768px) {
    .whatsapp-icon {
        bottom: 20px;
        left: 20px;
        width: 45px; /* Smaller size for responsiveness */
        height: 45px; /* Smaller size for responsiveness */
        font-size: 28px;
    }

    .tour-button {
      font-size: 14px;
    }

}

@media (max-width: 480px) {
    .whatsapp-icon {
        bottom: 15px;
        left: 15px;
        width: 40px; /* Even smaller for very small screens */
        height: 40px; /* Even smaller for very small screens */
        font-size: 24px;
    }
}