/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ===== FOOTER FIX (IMPORTANT) ===== */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

/* ===== MAIN CONTENT WRAPPER ===== */
/* IMPORTANT: HTML me is class ko wrap karo */
.page-content {
    flex: 1;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #0f8a8a;
    color: #fff;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.top-bar span {
    margin-right: 15px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
}

/* ===== HEADER ===== */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo {
    margin-left: 30px;
}

.logo h2 {
    color: #0f8a8a;
    font-weight: bold;
}

/* ===== NAVBAR ===== */
.menu {
    list-style: none;
    display: flex;
    align-items: center;
}

.menu li {
    position: relative;
}

.menu li a {
    text-decoration: none;
    padding: 10px 18px;
    color: #333;
    font-weight: 500;
}

.menu li a:hover {
    color: #0f8a8a;
}

/* ===== DROPDOWN ===== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    z-index: 999;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 18px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* ===== BUTTON ===== */
.header-btn .btn {
    background: #0f3c5c;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
}

.header-btn .btn:hover {
    background: #0f8a8a;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(rgba(14,138,146,0.85), rgba(14,138,146,0.85)),
                url('contact.jpg') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}
.site-footer {
    background-color: #26a69a;
    color: white;
    width: 100%;
    padding: 40px 20px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
}

.footer-top-section {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-column {
    flex: 1 1 250px;
    min-width: 200px;
}

.logo-column {
    flex-basis: 35%;
}

.footer-logo {
    width: 150px;
    background: white;
    padding: 5px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e0e0e0;
}

.footer-bottom-section {
    padding-top: 30px;
    width: 100%;
    text-align: center;
}

.social-icon {
    background: white;
    color: #26a69a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top-section {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}