/* Custom CSS for menu and button styles */
html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.bg-prime{
    background:#3A85F4;
}
.bg-true{
    background:#08A680;
}
.text-prime{
    color:#3A85F4;
}
.text-true{
    color:#08A680;
}

.btn-prime{
    background:#3A85F4;
    color:#ffffff;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 500;
}
.btn-prime-light{
    background:#EBFAFF;
    color:#3A85F4;
    padding: 15px 20px;
    border-radius: 50px;
    border:2px solid #3A85F4;
    font-weight: 500;
}


/* Navbar Menu Styles */
.navbar {
    background: transparent !important;
    padding:20px;
}
/* Menu Styles with Smooth Hover Effect (No Jumping) */
.navbar .navbar-nav .nav-link {
    color: #000000;
    font-weight: bold;
    font-size: 18px;
    border: none;
    margin-right: 10px;
    position: relative;
    transition: color 0.3s ease;
}
.navbar .navbar-nav .nav-link:hover {
    color: #3A85F4;
}
/* Add the transparent border */
.navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px; /* Adjust the thickness of the "border" as needed */
    background: transparent;
    transition: background 0.3s ease;
}
/* Change the "border" color on hover */
.navbar .navbar-nav .nav-link:hover::before {
    background: #3A85F4;
}
.navbar .navbar-nav .nav-link.active {
    font-weight: bold;
    color: #3A85F4;
    border-bottom: 3px solid #3A85F4;
}
/* Button Styles with Hover Effect (No Size Change) */
.appointment-button {
    color: #ffffff;
    font-weight: bold;
    background: #08A680;
    border-radius: 25px;
    border: none;
    padding: 10px 25px 10px 25px;
    transition: box-shadow 0.3s ease;
}
.appointment-button:hover {
    color: #08A680;
    font-weight: bold;
    background: #ffffff;
    box-shadow: 0 0 0 3px #08A680; /* Simulate the border growth with box-shadow */
}



.hero {
    height: 80vh; /* 100% of the viewport height for full-screen */
}
.hero-column{
    justify-content: flex-start; /* Align content to the left */
}

.hero-sub-heading{
    font-size:24px;
    font-weight:700;
}
.hero-sub-heading-2{
    font-size:24px;
    font-weight:600;
}

.hero-heading{
    font-size:52px;
    font-weight:900;
    line-height: 70px;
}

.hero-text{
    font-size:20px;
    font-weight:normal;
}
.hero-text-bold{
    font-size:20px;
    font-weight:600;
}


.custom-card {
    width: 260px;
    height: 350px;
    position: relative;
    border-radius: 25px;
}
.custom-card .card-img {
    background-image: url('kidney-doodle.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 25px;
}
.custom-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
}


.o0{
    background-color: rgba(196, 0, 24, 0.5); /* Adjust the opacity here */
}
.o1{
    background-color: rgba(196, 193, 0, 0.5); /* Adjust the opacity here */
}
.o2{
    background-color: rgba(0, 196, 72, 0.5); /* Adjust the opacity here */
}
.o3{
    background-color: rgba(33, 0, 196, 0.5); /* Adjust the opacity here */
}
.o4{
    background-color: rgba(122, 0, 196, 0.5); /* Adjust the opacity here */
}
.o5{
    background-color: rgba(196, 151, 0, 0.5); /* Adjust the opacity here */
}
.o6{
    background-color: rgba(0, 12, 196, 0.5); /* Adjust the opacity here */
}

.custom-card .card-body {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    padding: 20px;
    background-color: transparent;
}
.card-body img{
    position: relative;
    left: 30%;
}



.wap-btn {
    width: 45px;
    height: 45px;
    background: #25D366;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    border-radius: 5px;
    position: fixed;
    bottom: 30px;
    right: 90px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
