body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}
.container{
    padding: 0;
}
.contact-link {
    color: white;
    text-decoration: none;
}
.contact-link:hover {
    font-weight: bold;
}

.ms-auto a{
    margin: 5px;
    text-decoration: none;
    font-family: 'poppins',sans-serif;
}
.apo {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 50px;
    padding: 15px;
}
.apo a {
    text-decoration: none;
    color: blue;
    font-size: 18px;
}
.apo a:hover{
    transform: translateY(-10px);
    transition: 0.6s;
}
.apo button {
    background-color: #2678D1;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    width: 250px;
}
.apo button:hover{
    transition: 0.5s;
    color: greenyellow;
    background-color: black;
}
.content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    gap:30px ;
}

.dr-img img {
    max-width: 100%;
    border-radius: 20px;
    border: 3px;
}
.text-box {
    max-width: 500px;
    text-align: start;
}
.text-box h1 span {
    color: rgb(0, 140, 255);
}
.text-box button {
    background-color: rgb(52, 98, 247);
    border: none;
    width: 130px;
    padding: 8px 12px;
    border-radius: 5px;
    color: white;
}
.text-box button:hover{
    color: chartreuse;
    background-color: black;
    transition: 0.6s;
}
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}
.service-box {
    width: 300px;
    text-align: center;
}
.service-box img {
    max-width: 80px;
}
.service-box h4{
    color: #2678D1;
    font-weight: bold;
}
.appointment-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10%;
    background-color: rgba(220, 221, 221, 0.877);
    color: black;
    padding: 20px;
}
.appointment-text {
    color: #2678D1;
    text-align: center;
    max-width: 400px;
}
.appointment-text button{
    background-color: #ffffff;
    border: 1px solid rgb(0, 140, 255);
    border-radius: 10px;
    width: 150px;
    font-weight: bold;
    color: rgb(0, 81, 255) ;
}
.appointment-text button:hover{
    border: 1px solid black;
    box-shadow: 1px 1px 5px 6px rgba(128, 255, 0, 0.171);
    transition: 0.6s;
    color: chartreuse;
}
.appointment-form {
    border: 1px solid #3498db;
    box-shadow: 0px 0px 4px 4px #00aaff25;
    padding: 20px;
    border-radius: 10px;
    width: 450px;
}
.appointment-form h2{
    color:#2678D1;
    text-align: center;
}
.appointment-form input, select, button {
    width: 100%;
    margin-top: 10px;
    padding: 8px;
}
.appointment-form button{
    background-color: #0077ff;
    border: none;
    color: white;
    font-family: 'poppins',sans-serif;
}
.appointment-form button:hover{
    background-color: black;
    color: chartreuse;
    transition: 0.6s;
}
.text-sss{
    text-align: center;
    color:#2678D1;
}
.statistics {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.container-count {
    max-width: 1200px;
    margin: 0 auto;
}

.statistics-counter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.single-statistics-box {
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.single-statistics-box:hover {
    transform: scale(1.05);
}

.statistics-content {
    font-size: 50px;
    font-weight: 700;
    color: #2678D1;
}

.counter {
    font-size: 60px;
    font-weight: 700;
    color:#2678D1;
    text-align: center;
}
@media (max-width: 768px) {
    .statistics-counter {
        flex-direction: column;
        align-items: center;
    }
    
    .single-statistics-box {
        width: 80%;
        margin-bottom: 20px;
    }
}
@keyframes count-up {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.counter {
    animation: count-up 1s ease-in-out;
}

@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
    }
    .services, .appointment-section {
        flex-direction: column;
    }
}
.footer {
    background-color: rgb(0, 81, 255);
    color: white;
    padding-bottom: 20px;
}
.list-unstyled span{
    color: aqua;
}
.footer h5 {
    font-weight: bold;
}
.footer a {
    text-decoration: none;
    transition: 0.3s;
}
.footer a:hover {
    text-decoration: underline;
    color: #00aaff;
}
.social-icons i {
    font-size: 20px;
}
.footer h5 {
    font-weight: bold;
}
.footer a {
    text-decoration: none;
    transition: 0.3s;
}
.footer a:hover {
    text-decoration: underline;
    color: #00aaff;
}
.social-icons i {
    font-size: 20px;
}
.a-t{
    width: 500px;
}
.a-t span{
    color: #00aaff;
}
.b-t{
    margin-top: 0px;
}
.k{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20%;
}