:root {
    --primary-color: #2A4B6A;
    --secondary-color: #9FD8E5;
    --text-color: #333;
}

*{
   font-family: "Roboto", serif;
}

.navbar {
    padding: 1rem 2rem;
    background-color: white;
}

.navbar-brand img {
    height: 40px;
}


.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
}

.stats-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.section-01{
    background-image: linear-gradient( 92.7deg,  rgba(245,212,212,1) 8.5%, rgba(252,251,224,1) 90.2% );
}


.service-card h4{
   font-size: 19px;
}

.service-card p{
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.8rem 2rem;
    /* border-radius: 30px; */
}

.btn-outline {
    border: 2px solid var(--primary-color);
    /* color: var(--primary-color); */
    padding: 0.8rem 2rem;
    border-radius: 30px;
    background: transparent;
}

.doctors-section {
    background-color: #F8FDFF;
    padding: 5rem 0;
}
/* button */
/* button */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 3rem 0; /* Reduce padding */

    }

    .service-card {
        margin: 0.5rem 0;
    }
}

.second-heading{
    font-weight: 800;
    color: var(--primary-color);
}

.why-choose-us{
    background-color: rgba(197, 102, 6, 0.144);
    border: 1px solid rgba(197, 102, 6, 0.6);
    height: 100%;
}

.why-choose-us h6{
   font-weight: 900;
}

.why-choose-us p{
    font-size: 14px;
}


/* Steps card design */


.number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to right, #8b5cf6, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Steps */
.step-number {
    width: 48px;
    height: 48px;
    background-color: #8b5cf6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    flex-shrink: 0;
}


.main-title {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 3rem;
}

/* footer section start */

footer {
    background-color: #09386c;
    color: white;
    padding: 48px 24px;
}
footer h2{
    color: #00fdff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.heading {
    font-size: 1.125rem;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 2px solid rgb(255 0 0 / 100%);;
    margin-bottom: 0px;
}

.description {
    font-size: 0.875rem;
    color: #fff;
    line-height: 1.6;
}

ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

li {
    font-size: 0.875rem;
    color: #fff;
}

.header-action-buttons{
    padding: 5px 10px;
    background-color: #2A4B6A;
    color: white;
    font-weight: 400;
    font-size: 14px;
}

/* Priority Page desings start */
.priority-page{
    background-color: #ECF2F0;
}

.main-heading-paragraph{
    font-size: 14px;
}
.priorityImgIcon {
    width: 10vw;
    max-width: 50px;
    height: 10vw;
    max-height: 50px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

.priorityImgIcon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* Media queries for responsiveness */
@media (max-width: 768px) {
    .priorityImgIcon {
        width: 15vw;
        height: 15vw;
    }
    .question-mark-bg::before {
        right: 45% !important;
        font-size: 140px !important;
    }
}

@media (max-width: 480px) {
    .priorityImgIcon {
        width: 20vw;
        height: 20vw;
    }
    .question-mark-bg::before {
        font-size: 50px;
        right: 2px;
    }
}

.question-mark-bg {
    position: relative;
    background-color: #f9f9f9; /* Optional: Set a background color for the card */
}

.question-mark-bg::before {
    content: '?'; /* The question mark symbol */
    position: absolute;
    top: 50%; /* Vertically center the symbol */
    right: 5%; /* Adjust the distance from the right side */
    transform: translateY(-50%); /* Center the symbol vertically */
    font-size: 100px; /* Adjust size as needed */
    color: rgba(0, 0, 0, 0.1); /* Set color and transparency */
    z-index: 0; /* Place it behind other elements */
}

.question-mark-bg .card-body {
    position: relative;
    z-index: 1; /* Ensure content appears above the question mark */
}
/* Custom CSS for nested dropdown */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    margin-left: .1rem;
    display: none; /* Hide nested dropdown by default */
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block; /* Show nested dropdown on hover */
}

/* Ensure the parent dropdown stays open when hovering over nested dropdown */
.dropdown-menu .dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* Adjust arrow direction */
.dropdown-toggle-arrow::after {
    content: "▶"; /* Change caret to right arrow */
    font-size: 7px;
    margin-left: 5px;
    border: none;
    vertical-align: middle;
}
