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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f4f7f6;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background-color: #0b3d91;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

header img {
    height: 60px;
    background: white;
    padding: 5px;
    border-radius: 8px;
}

.contact-info {
    font-size: 1em;
    font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info a {
    color: #4caf50;
    text-decoration: none;
}

/* Navigation Links */
nav {
    background-color: #082a6c;
    padding: 10px 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
}

nav a:hover {
    color: #4caf50;
}

/* Hero Section (Home Page) */
.hero {
    text-align: center;
    padding: 30px 15px;
    background: white;
}

.hero h1 {
    color: #0b3d91;
    font-size: 1.8em;
    margin-bottom: 20px;
}

/* Slider Styles */
.slider-container {
    position: relative;
    max-width: 900px;
    width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    display: block;
    height: 300px;
    object-fit: cover;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    z-index: 10;
}

.prev { left: 0; } 
.next { right: 0; }

/* Sub-pages Container Styles */
.container {
    max-width: 900px;
    width: 92%;
    margin: 30px auto;
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.container h1 {
    color: #0b3d91;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.container h2 {
    color: #0b3d91;
    font-size: 1.4em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.container ul {
    line-height: 1.8;
    font-size: 1em;
    padding-left: 20px;
}

.details-box {
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Map Container Responsive */
.map-container {
    margin-top: 30px;
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Buttons */
.cta-btn {
    display: inline-block;
    background-color: #4caf50;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    margin-right: 10px;
    text-align: center;
    transition: background 0.3s;
}

.cta-btn:hover {
    background-color: #388e3c;
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
}

/* Services Section */
.services {
    padding: 40px 15px;
    text-align: center;
}

.services h2 {
    color: #0b3d91;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-top: 5px solid #4caf50;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card a {
    text-decoration: none;
    color: #0b3d91;
    font-size: 1.1em;
    font-weight: bold;
    display: block;
}

/* Footer */
footer {
    background-color: #0b3d91;
    color: white;
    text-align: center;
    padding: 25px 15px;
    margin-top: 40px;
    font-size: 0.95em;
}

footer a {
    color: #4caf50;
    text-decoration: none;
    margin: 0 5px;
}

/* Mobile Media Queries (Responsive for all devices) */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .contact-info {
        justify-content: center;
    }

    .hero h1 {
        font-size: 1.4em;
    }

    .slide img {
        height: 220px;
    }

    .container {
        padding: 20px 15px;
        margin: 15px auto;
    }

    .cta-btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .services h2 {
        font-size: 1.5em;
    }
}