/* Base Reset & Body */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4faff;
    color: #003366;
}

/* Fixed Banner with Logo and Title */
.fixed-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: url('Images/Tap.jpg');
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo-overlay {
    height: 80px;
    margin-bottom: 10px;
}

.title-overlay {
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

/* Navigation - Side Menu */
.menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 1100;
    border-radius: 5px;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #003366;
    color: white;
    z-index: 1050;
    padding-top: 60px;
    transition: left 0.3s ease;
}

.side-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-menu ul li {
    padding: 12px 20px;
    border-bottom: 1px solid #005599;
}

.side-menu ul li a {
    color: white;
    text-decoration: none;
    display: block;
}

.side-menu ul li a:hover {
    background-color: #005599;
}

.side-menu ul .submenu {
    display: none;
    background-color: #002244;
}

.side-menu ul li:hover .submenu {
    display: block;
}

/* Content Starts Below Banner */
.main-content {
    padding-top: 250px; /* Adjust depending on height of banner + nav */
    margin-top: -100px; /* pull up the content slightly */
}


/* Wrapper */
.wrapper {
    width: 1100px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
}

/* Section Styling */
.section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section h1, .section h2 {
    color: #004080;
    margin-bottom: 20px;
}

.section p, .section ul {
    font-size: 16px;
    line-height: 1.6;
}

ul {
    padding-left: 20px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

.service-card {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
}

.service-card h3 {
    color: #0066cc;
    margin: 10px 0;
}

/* Contact Section */
.contact-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-section h1 {
    color: #0066cc;
    margin-bottom: 10px;
}

.contact-box {
    margin: 30px 0;
    background-color: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #0066cc;
}

.contact-link {
    color: #0066cc;
    font-weight: bold;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.whatsapp-button:hover {
    background-color: #1ebe5d;
}

/* Footer */
.footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

/* Map Fullscreen */
#map {
    /*height: 100%;*/
    height: 100vh; /* or 400px */
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .section,
    .services-grid {
        padding: 20px;
    }

    .banner,
    .banner-slide,
    .fixed-banner {
        height: 200px;
    }

    .logo-overlay {
        height: 50px;
    }

    .title-overlay {
        font-size: 24px;
            }
}

.banner-container {
    background: url('Images/banner1.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.banner-text {
    background-color: rgba(0, 102, 204, 0.7);
    padding: 20px;
    border-radius: 10px;
}