body {
    /* font-family: Arial, sans-serif, Perpetua; */
    font-family: Perpetua;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

header {
    background-color: #89c9ff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    height: 50px;
}

header nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    padding: 5px;
    position: relative;
    transition: color 0.3s ease, font-size 0.3s ease;
}

header nav a::after {
    content: "";
    display: block;
    width: 0%;
    height: 3px;
    background: rgb(255, 0, 0);
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease-in-out;
}

header nav a:hover {
    color: rgb(255, 0, 0);
}

header nav a:hover::after {
    width: 100%;
}

header nav a.active {
    color: rgb(255, 0, 0) !important;
}

header nav a.active::after {
    width: 100%;
    background: rgb(255, 0, 0);
}

.hero {
    text-align: center;
    background-color: #e9f5ff;
    padding: 20px 0;
}

.hero img {
    margin-top: 20px;
    max-width: 100%;
    height: auto;
}

.call-now {
    margin: 30px 0;
    text-align: center;
}

.call-now a {
    display: inline-block;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease-in-out;
}

.call-now a:hover {
    background: linear-gradient(135deg, #0056b3, #003f7f);
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 123, 255, 0.5);
}

.section {
    padding: 40px 20px;
}

.section p {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
}

.section img {
    max-width: 100%;
    margin: 20px 0;
    border-radius: 10px;
}

.text-image {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.text-image img {
    flex: 1;
    border-radius: 10px;
}

.text-image .text {
    flex: 1;
}

footer {
    background-color: #89c9ff;
    color: white;
    padding: 20px;
    text-align: center;
}

footer .footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
}

footer .footer-column {
    flex: 1;
    padding: 10px;
    min-width: 200px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: white;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.footer-column a::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: rgb(255, 0, 0);
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: width 0.3s ease-in-out;
}

.footer-column a:hover {
    color: rgb(255, 0, 0);
}

.footer-column a:hover::after {
    width: 100%;
}
.menu-toggle {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}
.nav-menu {
    display: flex;
    gap: 15px;
}
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: rgb(0, 0, 0);
        padding: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
    }
    .nav-menu.d-none {
        display: none !important;
    }
}