/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #003366;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo img {
    height: 50px;
}

.navbar h1 {
    color: white;
    font-size: 1.5rem;
}

.navbar nav a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar nav a:hover,
.navbar nav a.active {
    color: #ffcc00;
}

/* Hero Sections */
.hero {
    padding: 40px;
    text-align: center;
    background: linear-gradient(to right, #003366, #0055a5);
    color: white;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Contact Section */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    gap: 20px;
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
    margin-bottom: 15px;
    color: #003366;
}

.contact-form label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #003366;
}

.contact-form .btn {
    display: inline-block;
    background: #003366;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form .btn:hover {
    background: #0055a5;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Floating Phone */
.phone-float {
    position: fixed;
    bottom: 80px;
    left: 25px;
    background: #003366;
    color: white;
    padding: 10px 13px;
    border-radius: 50%;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.phone-float:hover {
    transform: scale(1.1);
    background: #0055a5;
}

/* Footer */
footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 15px 10px;
    margin-top: 40px;
}

/* Images */
img {
    max-width: 100%;
    border-radius: 5px;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
    .contact-container {
        flex-direction: column;
    }
}

/* About Page Styling */
.about {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

.about h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #333;
}

.about p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.about-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.about-img {
    width: 7cm;
    height: 7cm;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}
