* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    margin: auto;
}

header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
}

.logo {
    font-weight: bold;
    font-size: 20px;
}

.btn-primary {
    background: #007bff;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
}

.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.section {
    padding: 60px 20px;
    text-align: center;
}

.light-bg {
    background: #f5f5f5;
}

.services-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cta {
    padding: 60px 20px;
    text-align: center;
    background: #007bff;
    color: white;
}

footer {
    background: #222;
    color: #fff;
    padding: 40px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

footer p {
    margin-top: 10px;
}

copyright {
    text-align: center;
    margin-top: 20px;
}


/* Modal Background */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

/* Show modal when targeted */
.modal:target {
    display: flex;
}

/* Modal Box */
.modal-content {
    background: #fff;
    padding: 35px;
    width: 350px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}

.phone {
    font-size: 22px;
    font-weight: bold;
    color: #007bff;
    margin: 15px 0;
}

.subtext {
    font-size: 14px;
    color: #666;
    bottom: 10px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    text-decoration: none;
    font-size: 24px;
    color: #333;
}


/* Animation */
@keyframes fadeIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.btn-secondry {
    bottom: 0px;
    background: #007bff;
    color: #fff;
    padding: 6px 20px;
    text-decoration: none;
    border-radius: 5px;
}
