/* --- GLOBAL THEME --- */
body {
    background-color: #ffffff; /* The specific cream/pale yellow from your image */
    margin: 0;
    font-family: 'Arial', sans-serif;
    width: 100%;
    overflow-x: hidden; /* This hides anything that tries to push outside */
    margin: 0;
    padding: 0;
}

/* --- CONTACT CARDS --- */
.glow-title {
    text-align: center;
    font-size: 48px;
    color: #003C71; /* Purple color from "THE TEAM" header */
    margin-bottom: 40px;
  font-family: 'Hangyaboly';
    letter-spacing: 1px;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
}

.glass-card {
    background: #003C71; /* Matches the white card background in the team image */
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(255,255,255,1); /* Soft shadow */
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 280px;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
}

.glass-card:active {
    transform: scale(0.95);
}

.contact-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.contact-card h3 {
    margin: 10px 0;
    color: #ffffff;
    font-weight: 800;
}

.tap-hint {
    margin-top: 15px;
    font-size: 12px;
    color: #f7BA06; /* Teal/Cyan hint text */
    font-weight: bold;
}

.main-content {
    padding-top: 100px;
     /* Space for the fixed navbar */
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
}

/* Navbar Container */
.navbar {
   background-color: #003c71;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 70px;
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Logo Styling */
.logo {
    text-decoration: none;
    font-size: 28px;
    font-weight: 900;
    color: #f7BA06;
    text-shadow: 0 0 10px #f7Ba06;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f7BA06; /* Matches logo glow on hover */
}

/* Dropdown Container */
.nav-item {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FFFFFF;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
}

.dropdown a {
    color: #3A3F5A;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.dropdown a:hover {
    background-color: #f1f1f1;
    color: #f7BA06;
}

/* Show dropdown on hover */
.nav-item:hover .dropdown {
    display: block;
}


.search-container input {
    background: transparent;
    border: none;
    color: white;
    outline: none;
    padding: 5px;
    width: 180px;
}

.search-container input::placeholder {
    color: #ccc;
}

.search-container button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: white;
}

.main-footer {
    background-color: #003C71 ;
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 100px;
    margin: 10px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ff9800;
}

.footer-col .highlight {
    color: #ffffff; /* Orange color for 'Fee' link */
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: white;
    color: black;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-col p i {
    margin-right: 10px;
    color: #ffffff;
}


/* Fix the Blue Heading and Alignment */
.footer-col h3 {
    color: #ffffff !important; /* Forces the blue text to white */
    text-align: left;
    margin-bottom: 20px;
}

/* Shift the whole container to the left */
.footer-container {
    justify-content: flex-start; /* Aligns columns to the left instead of spreading them */
    gap: 50px; /* Adjust this value to control the space between columns */
    padding-left: 5%; /* Moves everything slightly away from the very edge */
}

/* Styling the new Map Buttons */
.map-btn {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1); /* Subtle dark transparent background */
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.map-btn:hover {
    background: #FFB400; /* Turns yellow on hover like your logo buttons */
    color: #3b425a;
}

.map-btn i {
    margin-right: 12px;
    font-size: 1.2rem;
}

.map-btn span {
    font-size: 14px;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 5px 15px;
}

.search-container input {
    background: transparent;
    border: none;
    color: white;
    outline: none;
    padding: 5px;
}

.search-container input::placeholder {
    color: #ccc;
}

.search-container button {
    background: transparent;
    border: none;
    color: #00E5FF;
    cursor: pointer;
}

.icon-link {
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.icon-link:hover {
    color: #f7BA06;
}

.sign-in {
    border: 1px solid #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
}

.sign-in:hover {
    background-color: #f7Ba06;
    color: #3A3F5A !important;
}

@media (max-width: 600px) {
    .navbar {
        /* Keep it stacked, but align everything to the left */
        height: auto;
        padding: 15px;
        flex-direction: column; /* Stacks logo on top of links */
        gap: 10px;
    }

    .nav-left {
        /* Aligns your logo and links to the start of the container */
        align-items: flex-start; 
        width: 100%;
    }

    .nav-links {
        /* Ensures links are also pushed to the left */
        justify-content: flex-start; 
        width: 100%;
    }
}