@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;

}

::selection {
    background-color: #0b3181;
    color: #fff;
}

:root {
    --white: #fff;
    --color: #f58634;
}

a {
    text-decoration: none;
}

.logo {
    width: 170px;
    border-radius: 15px;
}

p {

    font-family: "Lato", sans-serif;
    font-size: 15px;
}

h5 {
    font-family: "Lato", sans-serif;
    color: #034d70;
}

h2 {
    font-family: "Lato", sans-serif;
    color: #036cb5;
    font-weight: bold;
}

h1 {
    font-family: "Lato", sans-serif;
    color: #f58634;
}

h4 {
    font-family: "Lato", sans-serif;
}

h3 {
    font-family: "Lato", sans-serif;
}

.navbar-light .navbar-nav .nav-link {
    color: rgb(255, 255, 255);
    font-weight: 500;
    font-size: 16px;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #fbb040;
}

.navbar-toggler {
   background-color: #fff;

}  

/* navbar color animation effect */
.navbar {
    background: linear-gradient(135deg, #033364, #3c5c6d);
}

.navbar {
    background-size: 200% 100%;
    animation: gradientMove 8s ease-in-out infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}




.heading-section {
    text-align: center;
}

.sub-heading {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    display: block;
    font-weight: 600;
    color: #2e9ca1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.heading-section h2 {
    font-size: 28px;
    font-weight: 600;
    padding-top: 10px;
    padding-bottom: 15px;
}

.carousel-testimonial .item {
    padding: 30px 10px;
}

/* nav */
/* Dropdown Menu Styling */
.navbar-nav .dropdown-menu {
    border-radius: 0px 0px 8px 8px;
    padding: 10px 0;
    border: none;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
    background-color: #fff;
}

/* Dropdown Items */
.navbar-nav .dropdown-menu .dropdown-item {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    padding: 10px 20px;
    color: #333;
    font-weight: 500;
    transition: 0.3s ease;
}

/* Hover Effect */
.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: #f58634;
    color: #fff;
}

/* Dropdown Arrow Color */
.navbar-light .navbar-nav .dropdown-toggle::after {
    border-top-color: #53200d;
}

/* Navbar hover for dropdown */
.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Mobile Friendly Adjustments */
@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
    }

    .navbar-nav .dropdown-menu .dropdown-item {
        padding-left: 30px;
    }
}

/* about */
/* ABOUT DOCTOR SECTION */
/* .about {
    padding: 60px 0;
} */

.about h1 {
    font-size: 32px;
    font-weight: 700;
    color: #034d70;
    margin-bottom: 20px;
}

.about p i {
    font-size: 16px;
    color: #f58634;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;

}

.about p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

/* IMAGE STYLISH BORDER */
.about img {
    border-radius: 12px;
    border: 3px solid #0e6ab6;
    padding: 5px;
    background: #fff;

    /* Shadow for professional medical look */
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);

    /* Smooth hover effect */
    transition: 0.3s ease-in-out;
}

.about img:hover {
    transform: scale(1.03);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.22);
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .about h1 {
        font-size: 26px;
    }

    .about p {
        font-size: 14px;
    }

    .about img {
        margin-bottom: 20px;
    }
}

/* services */
/* SERVICES SECTION */
.services h2 {
    font-size: 30px;
    color: #f58634;
    font-weight: 700;
    font-family: "Lato", sans-serif;
}

.services {
    background-color: #034d7014;
}

.service-box {
    display: block;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.service-img {
    border-radius: 12px;
    border: 2px solid #004caa;
    padding: 3px;
    background: #fff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.service-box:hover .service-img {
    transform: scale(1.05);
    box-shadow: 0px 7px 20px rgba(0, 0, 0, 0.2);
}

.service-title {
    margin-top: 12px;
    font-size: 17px;
    font-weight: 600;
    color: #034d70;
    font-family: "Lato", sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .service-title {
        font-size: 14px;
    }
}

/* procedure */
/* TREATMENT PROCEDURE */
.treatment-procedure h2 {
    font-family: "Lato", sans-serif;
    font-size: 30px;
    color: #f58634;
    font-weight: 700;
}

.procedure-subtitle {
    color: #444;
    font-size: 15px;
}

.procedure-box {
    background: #fff;
    padding: 12px;
    border-radius: 15px;
    border: 1px solid #004caa;
    transition: 0.3s ease-in-out;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.08);
}

.procedure-box:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

.procedure-icon {
    width: 70px;
    height: 70px;
    background: #f58634;
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.procedure-box h4 {
    font-size: 20px;
    color: #034d70;
    font-weight: 600;
    margin-bottom: 12px;
}

.procedure-box p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .procedure-box h4 {
        font-size: 17px;
    }

    .procedure-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}

/* faq */
/* FAQ Section */
.faq {
    background: #f7fafc;
    padding: 60px 0;
}

.faq h5 {
    color: #034d70;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.faq h2 {
    font-size: 32px;
    font-weight: 700;
    color: #f58634;
    margin-top: 10px;
}

/* Accordion */
.accordion-button {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px !important;
    font-weight: 600;
    padding: 16px;
    color: #1a1a1a;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #e6f1ff;
    color: #0056b3;
    border-color: #bcd7ff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #80bfff;
}

.accordion-item {
    margin-bottom: 12px;
    border: none;
}

.accordion-body {
    font-size: 15px;
    color: #4a5568;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 18px;
    line-height: 1.6;
}

/* FAQ Image */
.faq img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Mobile Optimization */
@media (max-width: 767px) {
    .faq {
        padding: 40px 0;
    }

    .faq h2 {
        font-size: 26px;
    }

    .accordion-button {
        padding: 14px;
        font-size: 15px;
    }

    .accordion-body {
        font-size: 14px;
    }

    .faq img {
        margin-bottom: 20px;
    }
}

/* contact */

.contact {
    background-color: #034d7014;
    padding: 20px;
    border-radius: 10px;
}

.contact h5 i {
    color: #f58634;
    font-size: 16px;
    font-weight: 600;
    font-family: "Lato", sans-serif;
}

.contact h4 {
    font-size: 22px;
    font-weight: 600;
    color: #53200d;
    margin-top: 5px;
}

.contact h2 {
    font-size: 28px;
    font-weight: 700;
    color: #034d70;
    margin-bottom: 20px;
}

.contact p a {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

.contact p a:hover {
    color: #f58634;
}

.contact i {
    color: #53200d;
    margin-right: 8px;
}

/* Contact Image Styling */
.contact img {
    border-radius: 20px;
    border: 4px solid #004caa;
    padding: 5px;
    background: #fff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

/* Google Map frame */
.contact iframe {
    border-radius: 15px !important;
    border: 3px solid #004caa !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE */
@media only screen and (max-width: 768px) {
    .contact h2 {
        font-size: 24px;
    }

    .contact img {
        margin-top: 20px;
    }
}



/* Footer */
footer {
    background: linear-gradient(135deg, #11238ad2, #3d5e70);
    color: #fff;
    padding-top: 50px;
    font-family: "Lato", sans-serif;
}

footer .logo {
    width: 140px;
    border-radius: 10px;


    background: #fff;
}

footer h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

footer p {
    font-size: 15px;
    color: #fefefe;
    margin-bottom: 8px;
    line-height: 1.6;
}

footer a {
    color: #fefefe;
    transition: 0.3s ease;
    text-decoration: none;
}

footer a:hover {
    color: #000;
    text-decoration: underline;
}

footer hr {
    margin: 30px 0;
    border-top: 1px solid #fff;
    opacity: 0.3;
}

footer .fa-solid {
    margin-right: 8px;
}

/* Footer Bottom */
footer .text-center p {
    color: #fff;
    font-size: 16px;
    margin: 0;
    text-align: justify;
}

footer .text-center p a {
    color: #fff;
}

footer .text-center p a:hover {
    color: #000;
    text-decoration: underline;
}

/* Responsive */
@media only screen and (max-width: 768px) {
    footer .text-center.text-md-start {
        text-align: center !important;
    }

    footer .row>div {
        margin-bottom: 20px;
    }

    footer h4 {
        font-size: 16px;
    }

    footer p {
        font-size: 13px;
    }
}


/* about page  */
/* Breadcrumb Section */
.breadcrumb-section {
    background:
        linear-gradient(90deg, #0e6ab629, #1866a7ed, #1866a700), url(/images/back.webp);
    /* padding: 50px 0; */
    padding-top: 115px;
    padding-bottom: 50px;
    margin-top: 20px;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcrumb {
    background: transparent !important;
    padding: 0;
    margin-bottom: 10px;
    justify-content: center;
}

.breadcrumb-item a {
    color: #fbb040;
    font-weight: 500;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #dce9f7;
    font-weight: 600;
}

.breadcrumb-title {
    font-size: 36px;
    font-weight: 700;
    margin-top: 10px;
}

/* Responsive */
@media(max-width: 768px) {
    .breadcrumb-title {
        font-size: 26px;
    }
}






.rts-doctors-details-area {
    font-family: "Lato", sans-serif;
    overflow: hidden;
}

/* ============================
   Left Side – Doctor Image Card
============================ */
.large-team-details-thumbnail {
    background: linear-gradient(135deg, #eaf6ff, #d7edff);
    padding: 10px;
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(0, 93, 155, 0.15);
}

.large-team-details-thumbnail img {
    border-radius: 18px;
    width: 100%;
    height: auto;
    object-fit: cover;

}



/* ============================
   Clinic Details Box – Glassmorphism
============================ */
.bottom-doctor-details {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 93, 155, 0.15);
}

.bottom-doctor-details h5 {
    color: #005d9b;
    font-weight: 700;
    border-left: 4px solid #f58634;
    padding-left: 10px;
    margin-bottom: 20px;
}

.single-shedule {
    padding: 10px 0;
    border-bottom: 1px dashed #d0d8e1;
}

.single-shedule:last-child {
    border-bottom: none;
}

.single-shedule p {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.single-shedule a,
.single-shedule span {
    color: #555;
    font-size: 14px;
}

/* ============================
   Right Side – Text Content
============================ */
.doctor-all-details-area .pre-title {
    color: #005d9b;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.doctor-all-details-area .name {
    font-size: 36px;
    font-weight: 800;
    color: #002b49;
    background: linear-gradient(to right, #005d9b, #00a6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.doctor-all-details-area p {
    font-size: 17px;
    color: #444;
    line-height: 1.75;
}

/* ============================
   Additional Info Boxes – Floating Cards
============================ */
.single-details-content-info {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(0, 93, 155, 0.15);
    box-shadow: 0 8px 20px rgba(0, 93, 155, 0.10);
    transition: 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.single-details-content-info:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 26px rgba(0, 93, 155, 0.15);
}

/* Accent bar on top */
.single-details-content-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #005d9b, #00a6e6);
}

.single-details-content-info .title {
    font-size: 18px;
    font-weight: 700;
    color: #005d9b;
    margin-bottom: 10px;
}

.single-details-content-info p {
    margin-bottom: 6px;
    font-size: 15px;
    color: #333;
}

/* ============================
   Social Icons
============================ */
.follow-me-social-area {
    align-items: center;
}

.follow-me-social-area span {
    font-weight: 700;
    font-size: 16px;
    color: #002b49;
}

.follow-me-social-area a i {
    font-size: 22px;
    margin-right: 8px;
    color: #005d9b;
    transition: 0.3s;
}

.follow-me-social-area a i:hover {
    color: #f58634;
    transform: translateY(-3px);
}

/* ============================
   Responsive
============================ */
@media (max-width: 991px) {
    .doctor-all-details-area .name {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .single-details-content-info {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .doctor-all-details-area .name {
        font-size: 26px;
        text-align: center;
    }

    .follow-me-social-area {
        text-align: center;
        justify-content: center;
    }
}

/* gallery  */
.gallery-section {
    background: #f8fafc;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    position: relative;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #007bff;
    display: block;
    margin: 10px auto 0;
}

.gallery-img {
    width: 100%;


    border-radius: 10px;
    transition: 0.3s ease;
}



.service-section-info {
    background: #f8fafc;
}

.service-info h4 {
    color: #0d2b5b;
}

.service-info p,
.service-info li,
.service-info ol {
    line-height: 1.7;
}

.service-info p {
    text-align: justify;
}

/* video +content */

.service-img video {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 20px rga(0, 0, 0, 0.15);
}

/* list  */
.service-info ul li,
.service-info ol li {
    font-size: 16px;
    margin-bottom: 8px;
    padding-left: 5px;
}

.service-info ul li i {
    font-size: 16px;
}

/* sidebar area */
.services-link {
    background: #ffff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease-in-out;
}

.services-link h4 {
    color: #0d2b5b;
}

.services-link ul li {
    margin-bottom: 12px;
}

.services-link ul li a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 500;
    background: #f1f5f9;
    transition: 0.3s;
    color: #0d2b5b;
}


.service-link ul li a:hover {
    background: #0d2b5b;
    color: #fff;
}

.services-link ul li a.active {
    background: #0d2b5b;
    color: #fff;
}

/* sidebar */

.sticky-sidebar {
    position: sticky;
    top: 95px;
    z-index: 10;
}

/* overflow small screen  */
@media (max-width:992) {
    .service-section-info .row {
        flex-wrap: wrap !important;
    }

    .sticky-sidebar {
        position: static;
        margin-top: 30px;
    }

    .services-link {
        padding: 25px;
    }

    .services-img video {
        max-height: 300px;
    }
}

@media (max-width:576px) {
    .service-link ul li a {
        padding: 8px 12px;
        font-size: 14px;
    }

    .service-info h4 {
        font-size: 20px;
    }
}


/*call/wh button  */
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    position: fixed;
    z-index: 9999;
    left: 12px;
    bottom: 20px;
}

.btn-whatsapp,
.btn-call {
    padding: 12px 12px;
    border-radius: 70px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-call {
    background-color: #007bff;
}

.btn-whatsapp:hover {
    background-color: #1ebe5b;
    transform: translateY(-3px);
}

.btn-call:hover {
    background-color: #0069d9;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .contact-buttons {
        flex-direction: column;
    }

    .btn-whatsapp,
    .btn-call {
        justify-content: center;
        width: 100%;
    }
}

/* back to top */
#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
    z-index: 9999;
}

#backToTop:hover {
    background-color: #0056d2;
    transform: translateY(-4px);
}


.testimonial-section {
    background-color: #034d7014;
}

.book-btn {
    background-color: #005d9b;
    color: #fff !important;
    padding: 6px 17px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid #005d9b;
    transition: all 0.3s ease-in-out;
}

.book-btn:hover {
    background-color: #fff;
    color: #005d9b !important;
    border-color: #005d9b;
    box-shadow: 0 4px 10px rgba(0, 93, 155, 0.3);
}

@media (max-width: 992px) {
    .book-btn {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}


/* yash */

/* BANNER */
.doctor-banner {
   margin-top: 90px;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, #e1f1ff, #9bc0f78f);
}

.banner-container {
   padding-top: 44px;
   padding-bottom: 50px;
}

/* Allow Bootstrap's grid to control column layout; use centering on small screens via media query */

/* LEFT TEXT */
.banner-text {
    flex: 1;
}

.tagline {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    color: #0e6ab6;
    margin-bottom: 15px;
}

.banner-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #0b3c5d;
    margin-bottom: 15px;
    font-weight: 700;
}

.banner-text h2 {
    margin-bottom: 10px;
}

.banner-text p {
    color: #555;
    text-align: justify;
    margin-bottom: 30px;
    margin-top: 20px;
}

.changing-text {
    color: #0e6ab6;
    display: inline-block;
    transition: opacity .4s ease, transform .4s ease;
}

.banner-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #0e6ab6;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(14, 106, 182, .35);
}

/* RIGHT IMAGE */
.banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.doctor-border {
    position: relative;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    animation: floatDoctor 5s ease-in-out infinite;
}

.doctor-border img {
    width: 96%;
    height: 96%;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 2%;
    left: 2%;
    background: #fff;
    z-index: 2;
}

/* ROTATING BORDER */
.doctor-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(#062135 0deg,
            #023e7e 90deg,
            #0e6ab6 180deg,
            #023e7e 270deg,
            #062135 360deg);
    animation: spin 6s linear infinite;
}

/* ANIMATIONS */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes floatDoctor {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* MOBILE */
@media(max-width:900px) {
    .banner-container {
        display: block;
        text-align: center;
    }

    .banner-text,
    .banner-image {
        width: 100%;
    }

    .doctor-border {
        width: 260px;
        height: 260px;
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto;
    }

    .doctor-banner {
        margin-top: 60px;
    }

    .banner-image {
        margin-top: 40px;
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
    }
    .banner-container {
    padding-top: 35px;
    padding-bottom: 0px;
}

}


/* ICON ORBIT WRAPPER */
.icon-orbit {
    position: relative;
    width: 380px;
    height: 380px;
    margin: auto;
}

/* ROTATING ICON RING */
.orbit {
    position: absolute;
    inset: -45px;
    border-radius: 50%;
    animation: orbitRotate 14s linear infinite;
    pointer-events: none;
}

/* ICON STYLE */
.orbit-icon {
    position: absolute;
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0e6ab6;
}

/* ICON POSITIONS */
.orbit-icon:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-icon:nth-child(2) {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.orbit-icon:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-icon:nth-child(4) {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* ORBIT ANIMATION */
@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* MOBILE */
@media(max-width:900px) {
    .icon-orbit {
        width: 260px;
        height: 260px;
    }

    .orbit {
        inset: -30px;
        animation-duration: 10s;
    }

    .orbit-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* EXTRA SMALL SCREENS */
@media(max-width:600px) {
    .doctor-border {
        width: 200px;
        height: 200px;
    }

    .icon-orbit {
        width: 200px;
        height: 200px;
    }

    .orbit {
        inset: -20px;
    }

    .orbit-icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .banner-text h1 {
        font-size: 1.5rem;
    }

    .banner-text p {
        font-size: 14px;
    }

    .banner-btn {
        padding: 10px 20px;
    }
}