﻿body {
    font-family: Calibri, 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #333;
    background-color: #ffffff;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #212529;
}
p {
    margin-bottom: 1rem;
    color: #555;
}
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position:relative;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: white;
    padding: 0.5rem 1rem;
}

    .navbar-nav .nav-link:hover {
        color: aqua;
    }
.hero-section {
    background: linear-gradient(135deg, #e9f2ff, #ffffff);
    padding: 80px 0;
}

    .hero-section h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero-section p {
        font-size: 1rem;
    }

.card {
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

.card-title {
    font-size: 1.8rem;
    font-weight: 600;
}

.service-icon {
    width: 55px;
    height: 55px;
    background-color: #e9f2ff;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}

.accordion-button {
    font-weight: 500;
    font-size:20px;
}

    .accordion-button:not(.collapsed) {
        background-color: #e9f2ff;
        color: black;
    }

.accordion-body {
    color: #555;
}

/* ==============================
   BUTTONS
============================== */
.btn-primary {
    font-weight: 500;
    border-radius: 30px;
    padding: 8px 22px;
}

.btn-outline-primary {
    border-radius: 30px;
    font-weight: 500;
}

/* ==============================
   CONTACT / INFO BOX
============================== */
.info-box {
    background-color: black;
    padding: 25px;
    border-radius: 12px;
}

/* ==============================
   FOOTER
============================== */
.footer {
    background-color: darkslategray;
   
    color: #ffffff;
    padding: 40px 0;
}

    .footer h5 {
        color: #ffffff;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .footer p {
        color: #ffffff;
    }

    .footer a {
        
        color: #ffffff;
        text-decoration: none;
    }

        .footer a:hover {
            color: #ccc;
        }

.footer-bottom {
    border-top: 1px solid #343a40;
    padding-top: 15px;
    margin-top: 20px;
    font-size: 14px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 12px 18px;
    font-size: 16px;
    text-decoration: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

    .whatsapp-float img {
        width: 28px;
        margin-right: 8px;
    }

    .whatsapp-float:hover {
        background-color: #1ebe5d;
        color: #fff;
    }

.hr {
    height: 1px;
    color: #ed1d61;
    background: #ed1d61;
    font-size: 0;
    border: 1px;
    margin-top: 10px;
    margin-left: 12px;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }

        .hero-section h1 {
            font-size: 1.7rem;
        }
}
