body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
}
/* Style for the horizontal rule (hr) */
.section-divider {
    border: 0;
    height: 0.25rem;
    background-color: #001d3d; /* Set the color of the hr line */
    margin: 40px 0; /* Adjust spacing above and below the hr line */
}

/* General Styles for Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

/* Logo Styling */
.logo {
    font-size: 2em;
    font-weight: bold;
}

.logo span {
    color: #61dfff; /* Accent color */
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.25em;
    transition: color 0.3s ease;
    font-weight: bold;
}

.navbar ul li a:hover {
    color: #00f5d4; /* Accent color on hover */
}

/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
}

.social-icons .icon {
    color: #fff;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-icons .icon:hover {
    color: #00bbf9; /* Accent color on hover */
}

/* Hamburger Icon */
.hamburger-icon { 
    display: none;
    font-size: 2em;
    cursor: pointer;
    color: #fff;
    position: absolute;
    top: 20px; /* Position at the top of the page */
    left: 20px; /* Position on the left */
    z-index: 10; /* Ensure it stays on top of the navbar */
    text-shadow: 0 0 10px #fff, 0 0 20px #c800ff, 0 0 30px #00a2ff; /* Initial glow effect */
    animation: glow 1.5s infinite alternate; /* Animation for glowing effect */
}

/* Keyframes for the glowing effect */
@keyframes glow {
    0% {
        text-shadow: 0 0 10px #fff, 0 0 20px #c800ff, 0 0 30px #00a2ff;
    }
    50% {
        text-shadow: 0 0 20px #fff, 0 0 30px #c800ff, 0 0 40px #00a2ff;
    }
    100% {
        text-shadow: 0 0 10px #fff, 0 0 20px #c800ff, 0 0 30px #00a2ff;
    }
}

/* Navbar */
.navbar {
    position: relative; /* Ensure the navbar is positioned relatively */
    /* background-color: #e00404; Default background color for the navbar */
}

.navbar ul {
    display: flex;
    flex-direction: row; /* Default layout for desktop */
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center; /* Center the navbar items horizontally */
}

.navbar ul li {
    margin: 10px 20px;
}

/* Glowing Text Effect for Navbar Links */
.navbar ul li a {
    color: #fff; /* Text color */
    font-size: 1.2em; /* Font size */
    text-decoration: none; /* Remove underline from links */
    text-shadow: 0 0 5px #a106de, 0 0 10px #6200ff, 0 0 15px #b700ff; /* Glowing effect */
    transition: text-shadow 0.3s ease-in-out; /* Smooth transition effect */
}

/* Add a stronger glow effect on hover */
.navbar ul li a:hover {
    text-shadow: 0 0 10px #0ce7e3, 0 0 20px #00d9ff, 0 0 30px #00ffd9; /* Glow intensifies on hover */
}

/* Mobile View */
@media (max-width: 768px) {
    /* Navbar list items should be hidden by default on mobile */
    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #c01919;
        position: absolute;
        top: 60px; /* Below the header */
        left: 0;
        padding: 20px 0;
    }
    .navbar ul li {
        margin: 10px 0;
    }

    /* Show the hamburger icon on mobile */
    .hamburger-icon {
        display: block;
    }
}

/* When the menu is active, show the navbar items */
.navbar.active ul {
    display: flex; /* Show the navbar items when the menu is active */
}

/* Toggle hamburger icon appearance on active state */
.navbar.active .hamburger-icon i {
    transform: rotate(90deg); /* Rotate icon when active */
}

/* Mobile Navigation (Hidden by default) */
.navbar ul {
    display: flex;
}

@media (max-width: 768px) {
    /* Hide the navbar items on mobile */
    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 60px; /* Below the header */
        left: 0;
        padding: 20px 0;
    }

    .navbar ul li {
        margin: 10px 0;
        text-align: center;
    }

    /* Show the hamburger icon */
    .hamburger-icon {
        display: block;
    }
}

/* When the menu is active, show the navbar items */
.navbar.active ul {
    display: flex;
}

/* Toggle hamburger icon appearance on active state */
.navbar.active .hamburger-icon i {
    transform: rotate(90deg); /* Rotate icon when active */
}
/* Hero Section */
.hero {
    height: 60vh;
    background: url('images/contact.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    max-width: 2100px;
    margin: auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
.contact {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.contact h1 {
    font-size: 36px;
    color: #30b099;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-info h2 {
    font-size: 24px;
    color: #007BFF;
    margin-top: 15px;
}

.info-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    font-size: 18px;
    color: #555;
}

.info-item i {
    font-size: 28px;
    margin-right: 15px;
}

.info-item a {
    text-decoration: none;
    color: #06b0f2; /* Blue color for links */
}

.info-item a:hover {
    text-decoration: underline;
}
.info-item h1 {
    text-decoration: none;
    color: #06b0f2; /* Blue color for links */
}

/* Contact Icons Section */
.contact-icons h2 {
    font-size: 28px;
    color: #17779c;
    margin-top: 30px;
}
.contact-icons h3 {
    font-size: 22px;
    color: #f96f5d;
    margin-top: 30px;
}
.contact-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Makes sure icons wrap on smaller screens */
}

.contact-icon {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.contact-icon:hover {
    transform: scale(1.1); /* Enlarges the icons on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Adds shadow on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-info h1 {
        font-size: 28px;
    }

    .contact-info h2 {
        font-size: 20px;
    }

    .info-item {
        font-size: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-row {
        gap: 15px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .contact-info h1 {
        font-size: 24px;
    }

    .contact-info h2 {
        font-size: 18px;
    }

    .contact-row {
        justify-content: center;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }
}

.whatsapp-icon {
    width: 43px; /* Set a fixed width for the icons */
    height: 43px; /* Maintain aspect ratio */
    margin: 0 10px; /* Space between icons */
    color:#00b4d8;
    font-weight: 200;
}

.email-icon {
    width: 43px; /* Set a fixed width for the icons */
    height: 43px; /* Maintain aspect ratio */
    margin: 0 10px; /* Space between icons */
    color:#00b4d8;
    font-weight: 200;
}

.fb-icon {
    width: 43px; /* Set a fixed width for the icons */
    height: 43px; /* Maintain aspect ratio */
    margin: 0 10px; /* Space between icons */
    color:#00b4d8;
    font-weight: 200;
}

.insta-icon {
    width: 43px; /* Set a fixed width for the icons */
    height: 43px; /* Maintain aspect ratio */
    margin: 0 10px; /* Space between icons */
    color:#00b4d8;
    font-weight: 200;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .contact-info {
        padding: 0;
        flex: unset;
        font-size: 2px;
        max-width: 21px;
    }
}
.map {
    margin-top: 20px;
}
/* Footer */
.footer {
    background-color: #003459;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

/* Flexbox layout for footer */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1800px;
    margin: 0 auto;
}

/* 1st Column: Logo */
.footer-logo img {
    max-height: 300px;
    /* Adjust logo size */
    margin-bottom: 20px;
    margin-right: 120px;
}

/* 2nd Column: Reference Links */
.footer-links {
    flex: 1;
    padding: 0 20px;
}

.footer-links h3 {
    font-size: 25px;
    color: #FFD700;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links li {
    margin: 8px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 21px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f72585;
}

/* 3rd Column: Contact Us */
.footer-contact {
    flex: 1;
    padding: 0 20px;
    text-align: center;
}

.footer-contact h3 {
    font-size: 25px;
    color: #FFD700;
    margin-bottom: 10px;
}

.footer-contact p {
    font-size: 21px;
    margin: 5px 0;
    color: #ff758f;
}

.footer-contact i {
    margin-right: 12px;
}

/* 4th Column: Follow Us */
.footer-social {
    flex: 1;
    padding: 0 20px;
    text-align: center;
}

.footer-social h3 {
    font-size: 25px;
    color: #FFD700;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 21px;
}

.social-icon {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #ff4d6d;
}

/* Copyright text */
.footer-social H1 {
    font-size: 2.51rem;  
    color: #f7aef8;
    margin-bottom: 10px;
}

.footer-social h2 {
    font-size: 34px;  
    color: #72ddf7;
    margin-bottom: 10px;
}
/* Copyright text */
.footer-copy {
    text-align: center;
    font-size: 21px;
    margin-top: 20px;
    border-top: 1px solid #555;
    padding-top: 10px;
    color: #e500a4;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo img {
        max-height: 50px;
    }

    .footer-links,
    .footer-contact,
    .footer-social {
        text-align: center;
        margin-bottom: 20px;
    }

    .social-icons {
        justify-content: center;
    }
}


/* Responsive Design */
@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .header .logo {
        margin-bottom: 10px;
    }

    .header nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .social-icons {
        margin-top: 20px;
        gap: 10px;
    }

    .destination-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 40%;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .about-image {
        margin-top: 20px;
    }
}