/*=====================================
GOOGLE FONT
======================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');


/*=====================================
ROOT VARIABLES
======================================*/

:root{

--primary:#6D2C91;
--secondary:#B146A1;
--accent:#00AEEF;
--dark:#1F2937;
--light:#F8FAFC;
--white:#ffffff;
--text:#555;
--border:#E5E7EB;

--shadow:0 10px 30px rgba(0,0,0,.08);

--radius:16px;

--transition:.35s ease;

}


/*=====================================
RESET
======================================*/

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

font-size:16px;

color:var(--text);

background:#fff;

line-height:1.7;

overflow-x:hidden;

}

h1,h2,h3,h4,h5,h6{

font-family:'Playfair Display',serif;

color:var(--dark);

font-weight:700;

}

p{

margin-bottom:15px;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

transition:var(--transition);

}

ul{

padding:0;

margin:0;

list-style:none;

}


/*=====================================
COMMON
======================================*/

section{

padding:90px 0;

}

.section-tag{

display:inline-block;

padding:8px 22px;

background:#F4EAF8;

color:var(--primary);

font-size:14px;

font-weight:600;

border-radius:50px;

letter-spacing:.5px;

}

.section-title{

font-size:42px;

font-weight:700;

margin-top:15px;

margin-bottom:20px;

}

.text-primary{

color:var(--primary)!important;

}

.bg-light{

background:#F8FAFC!important;

}

.logo_main{
	text-align:center;
	margin:0 auto;
}
/*=====================================
TOP HEADER
======================================*/

.top-header{

/* background:linear-gradient(90deg,#6D2C91,#B146A1); */

padding:12px 0;

color:#fff;

}

.top-header .logo{

width:205px;
margin:0 auto;

}

.contact-link{

color:#282828;

font-size:15px;

font-weight:500;

margin-right:15px;

}

.contact-link i{

margin-right:8px;
color:#6d2c91;

}

.top-header .btn{

border-radius:30px;
background:#6d2c91;
font-size:14px;
color:#fff;
padding:8px 25px;

font-weight:600;

}


/*=====================================
NAVBAR
======================================*/

.navbar{

/* background:linear-gradient(90deg,#6D2C91,#B146A1); */
background:linear-gradient(90deg, #2f0c44, #971984);

padding:0px 0;

transition:.4s;

z-index:999;

}

.navbar.shadow{

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.navbar-brand img{

height:65px;

}

.navbar-nav .nav-link{
margin:0 15px;
font-size:17px;
font-weight:500;
color:#fff;
padding:12px 16px;
position:relative;
}

.navbar-nav .nav-link:hover{

/* color:var(--primary); */

}

.navbar-nav .nav-link.active{

color:#fff;

}

.navbar-nav .nav-link::after{

content:"";

position:absolute;

right:-5px;

top:25px;

width:0;

height:2px;

background:var(--primary);

transition:.3s;

}

/* .navbar-nav .nav-link:hover::after{ */

/* width:55%; */

/* } */

.dropdown-menu{

border:none;

border-radius:12px;

box-shadow:var(--shadow);

padding:12px;

}

.dropdown-item{

padding:10px 15px;

border-radius:8px;

font-size:15px;

}

.dropdown-item:hover{

background:#F4EAF8;

color:var(--primary);

}


/*=====================================
BUTTONS
======================================*/

.btn{

padding:12px 30px;

border-radius:50px;

font-weight:600;

transition:.35s;

}

.btn-primary{

background:linear-gradient(45deg,#6D2C91,#B146A1);

border:none;

}

.btn-primary:hover{

transform:translateY(-4px);

box-shadow:0 12px 25px rgba(109,44,145,.25);

}

.btn-outline-primary{

border:2px solid var(--primary);

color:var(--primary);

}

.btn-outline-primary:hover{

background:var(--primary);

color:#fff;

}

.btn-danger{

border:none;

background:#320d46;

}

.btn-danger:hover{

transform:translateY(-4px);

}


/*=====================================
CARDS
======================================*/

.card{

border:none;

border-radius:18px;

box-shadow:var(--shadow);

overflow:hidden;

}

.shadow-lg{

box-shadow:var(--shadow)!important;

}

.rounded-4{

border-radius:22px!important;

}


/*=====================================
UTILITIES
======================================*/

.py-100{

padding:100px 0;

}

.mb-40{

margin-bottom:40px;

}

.mt-40{

margin-top:40px;

}

.bg-primary-light{

background:#F8F0FC;

}

.text-dark{

color:#222!important;

}

.text-muted{

color:#6B7280!important;

}


/*=====================================
ANIMATION
======================================*/

.fade-up{

animation:fadeUp .8s ease;

}

@keyframes fadeUp{

0%{

opacity:0;

transform:translateY(40px);

}

100%{

opacity:1;

transform:translateY(0);

}

}


/*=====================================
SCROLLBAR
======================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#eee;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#4F1F68;

}



/*======================================
HERO SECTION
======================================*/

.hero {
    position: relative;
    overflow: hidden;
	padding:0px;
}

.hero-img {
    width: 100%;
    /* height: 720px; */
    object-fit: cover;
}

.carousel-item {
    position: relative;
}

/* .carousel-item::before { */
    /* content: ""; */
    /* position: absolute; */
    /* inset: 0; */
    /* background: linear-gradient(rgba(10,20,40,.65), rgba(10,20,40,.45)); */
    /* z-index: 1; */
/* } */

.carousel-caption {
    z-index: 2;
    bottom: 18%;
    text-align: left;
    max-width: 650px;
}

.carousel-caption h5 {
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.carousel-caption h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel-caption p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.8;
}

.carousel-caption .btn {
    margin-right: 15px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 55px;
    height: 55px;
    /* background: rgba(255,255,255,.18); */
    background: #6D2C91;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: 2px;
}

.carousel-control-next {
    right: 2px;
}

/*======================================
DOCTOR SECTION
======================================*/

.doctor-section {
    position: relative;
}

.doctor-section img {
    border-radius: 20px;
    transition: .5s;
}

.doctor-section img:hover {
    transform: scale(1.03);
}

.doctor-badge {
    position: absolute;
    right: -15px;
    bottom: 30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg,#6D2C91,#B146A1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.18);
}

.doctor-badge h4 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 0;
}

.doctor-badge p {
    color: #fff;
    font-size: 13px;
    margin: 0;
}

.doctor-badge.pink {
    background: #320d46;
}

/*======================================
COUNTER BOX
======================================*/

.counter-box {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

.counter-box:hover {
    transform: translateY(-10px);
}

.counter-box h3 {
    color: #6D2C91;
    font-size: 34px;
    margin-bottom: 8px;
}

.counter-box span {
    font-size: 15px;
    color: #666;
}

/*======================================
ABOUT CONTENT
======================================*/

.about-content h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.about-content h5 {
    color: #6D2C91;
    margin-bottom: 20px;
}

.about-content p {
    color: #666;
    line-height: 1.9;
}

.about-content ul {
    margin-top: 20px;
}

.about-content ul li {
    margin-bottom: 12px;
    color: #555;
}

.about-content ul li i {
    color: #6D2C91;
    margin-right: 10px;
}

/*======================================
WHY CHOOSE US
======================================*/

.feature-card {
    background: #fff;
    padding: 35px;
    text-align: center;
    border-radius: 18px;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-12px);
}

.feature-card i {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg,#6D2C91,#B146A1);
    color: #fff;
    border-radius: 50%;
    line-height: 85px;
    font-size: 34px;
    margin-bottom: 25px;
}

.feature-card h5 {
    margin-bottom: 15px;
    font-size: 24px;
}

.feature-card p {
    color: #666;
    margin: 0;
}

/*======================================
SECTION BACKGROUND
======================================*/

.bg-pattern {
    background: #f8fafc;
    position: relative;
}

.bg-pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/pattern.png");
    opacity: .05;
}

/*======================================
IMAGE HOVER
======================================*/

.image-hover {
    overflow: hidden;
    border-radius: 20px;
}

.image-hover img {
    transition: .5s;
}

.image-hover:hover img {
    transform: scale(1.08);
}

/*======================================
BUTTON EFFECT
======================================*/

.btn-primary,
.btn-danger {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-danger::before {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(255,255,255,.15);
    transition: .5s;
}

.btn-primary:hover::before,
.btn-danger:hover::before {
    width: 100%;
}

/*======================================
FLOAT ANIMATION
======================================*/

.float-animation {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }

}

/*======================================
SECTION SPACING
======================================*/

.section-padding {
    padding: 100px 0;
}

/*======================================
        SERVICES SECTION
======================================*/

#ortho,
#gynae{
    position:relative;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s ease;
    height:100%;
    overflow:hidden;
    position:relative;
    border:1px solid #f1f1f1;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#6D2C91,#B146A1);
}

.service-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#6D2C91,#B146A1);
    color:#fff;
    font-size:36px;
    transition:.35s;
}

.service-card:hover .service-icon{
    transform:rotateY(180deg);
}

.service-card h5{
    font-size:24px;
    margin-bottom:15px;
    color:#222;
}

.service-card p{
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin-bottom:25px;
}

.service-card a{
    color:#6D2C91;
    font-weight:600;
    text-decoration:none;
}

.service-card a i{
    margin-left:8px;
    transition:.3s;
}

.service-card:hover a i{
    margin-left:15px;
}

/*======================================
        PINK CARD
======================================*/

.pink-card::before{
    background:linear-gradient(90deg,#E91E63,#ff6ba8);
}

.service-icon.pink{
    background:linear-gradient(135deg,#E91E63,#ff6ba8);
}

.pink-card a{
    color:#E91E63;
}

/*======================================
        SERVICE GRID
======================================*/

.service-card ul{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.service-card ul li{
    padding:8px 0;
    color:#666;
}

.service-card ul li i{
    color:#6D2C91;
    margin-right:8px;
}

/*======================================
        SERVICE IMAGE
======================================*/

.service-image{
    overflow:hidden;
    border-radius:18px;
}

.service-image img{
    transition:.5s;
}

.service-image:hover img{
    transform:scale(1.08);
}

/*======================================
        APPOINTMENT CTA
======================================*/

.appointment-section{

    background:linear-gradient(135deg,#6D2C91,#B146A1);

    color:#fff;

    padding:80px 0;

    position:relative;

    overflow:hidden;

}

.appointment-section::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-120px;

    right:-120px;

}

.appointment-section::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    left:-80px;

    bottom:-80px;

}

.appointment-section h2{

    color:#fff;

    font-size:42px;

    margin-bottom:15px;

}

.appointment-section p{

    color:rgba(255,255,255,.85);

    margin:0;

}

.appointment-section .btn{

    border-radius:50px;
	font-size:18px;
    padding:10px 20px;

    font-weight:600;

}

.appointment-section .btn-light{

    color:#6D2C91;

}

.appointment-section .btn-warning{

    background:#FFC107;

    border:none;

}

.appointment-section .btn-warning:hover{

    background:#ffca2c;

    transform:translateY(-4px);

}

/*======================================
        SECTION TITLE
======================================*/

.section-title-center{

    text-align:center;

    margin-bottom:60px;

}

.section-title-center h2{

    font-size:42px;

    margin-top:15px;

}

.section-title-center p{

    max-width:700px;

    margin:auto;

    color:#666;

}

/*======================================
        HOVER EFFECT
======================================*/

.service-card:hover h5{

    color:#6D2C91;

}

.pink-card:hover h5{

    color:#E91E63;

}


/*======================================
        HOSPITAL SECTION
======================================*/

.hospital-card{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

    border:1px solid #eee;

}

.hospital-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.hospital-card img{

    width:120px;

    height:120px;

    object-fit:contain;

    margin:auto;

    transition:.4s;

}

.hospital-card:hover img{

    transform:scale(1.08);

}

.hospital-card h5{

    margin-top:25px;

    font-size:22px;

    color:#222;

    transition:.3s;

}

.hospital-card:hover h5{

    color:#6D2C91;

}

.hospital-card p{

    color:#666;

    font-size:15px;

    margin-top:10px;

}



/*======================================
        COUNTER SECTION
======================================*/

.counter-section{

    position:relative;

    background:linear-gradient(135deg,#6D2C91,#8B39B4,#B146A1);

    padding:90px 0;

    overflow:hidden;

}

.counter-section::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    left:-120px;

    top:-120px;

}

.counter-section::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    right:-80px;

    bottom:-80px;

}

.counter-item{

    text-align:center;

    color:#fff;

    position:relative;

    z-index:2;

}

.counter-item h2{

    color:#fff;

    font-size:60px;

    font-weight:700;

    margin-bottom:10px;

}

.counter-item p{

    color:rgba(255,255,255,.9);

    font-size:18px;

    margin:0;

}

.counter-item{

    transition:.35s;

}

.counter-item:hover{

    transform:translateY(-8px);

}



/*======================================
        STATS CARD
======================================*/

.stats-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.stats-card:hover{

    transform:translateY(-10px);

}

.stats-card i{

    width:80px;

    height:80px;

    background:linear-gradient(135deg,#6D2C91,#B146A1);

    color:#fff;

    border-radius:50%;

    line-height:80px;

    font-size:32px;

    margin-bottom:20px;

}

.stats-card h3{

    color:#6D2C91;

    font-size:36px;

    margin-bottom:10px;

}

.stats-card span{

    color:#666;

    font-size:16px;

}



/*======================================
        ACHIEVEMENTS
======================================*/

.achievement-box{

    background:#fff;

    border-radius:20px;

    padding:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.achievement-box:hover{

    transform:translateY(-10px);

}

.achievement-box h4{

    color:#6D2C91;

    margin-bottom:20px;

}

.achievement-box ul{

    padding:0;

    margin:0;

    list-style:none;

}

.achievement-box li{

    padding:12px 0;

    border-bottom:1px solid #eee;

    color:#555;

}

.achievement-box li:last-child{

    border:none;

}

.achievement-box li i{

    color:#6D2C91;

    margin-right:10px;

}



/*======================================
        BACKGROUND EFFECT
======================================*/

.counter-bg{

    position:relative;

}

.counter-bg::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("../images/pattern.png");

    opacity:.05;

}



/*======================================
        RESPONSIVE
======================================*/

@media(max-width:991px){

.counter-item{

margin-bottom:35px;

}

.counter-item h2{

font-size:46px;

}

.hospital-card{

margin-bottom:20px;

}

}

@media(max-width:767px){

.counter-section{

padding:70px 0;

}

.counter-item h2{

font-size:38px;

}

.counter-item p{

font-size:15px;

}

.hospital-card img{

width:90px;

height:90px;

}

}


/*======================================
        TESTIMONIAL SECTION
======================================*/

.testimonial-section{
    background:#f8fafc;
    position:relative;
}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

    position:relative;

    overflow:hidden;

}

.testimonial-card::before{

    content:"\201C";

    position:absolute;

    right:20px;

    top:10px;

    font-size:90px;

    color:#f1f1f1;

    font-family:serif;

    line-height:1;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.stars{

    color:#FFC107;

    font-size:18px;

    margin-bottom:15px;

}

.testimonial-card p{

    color:#666;

    line-height:1.9;

    margin-bottom:25px;

}

.testimonial-card h5{

    margin:0;

    color:#6D2C91;

    font-size:20px;

}

.testimonial-card small{

    color:#999;

}



/*======================================
        TESTIMONIAL SLIDER
======================================*/

.carousel-indicators{

    bottom:-60px;

}

.carousel-indicators button{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#6D2C91;

}

/* .carousel-control-prev-icon, */
/* .carousel-control-next-icon{ */

    /* background-color:#6D2C91; */

    /* border-radius:50%; */

    /* padding:20px; */

/* } */
.carousel-control-prev-icon,
.carousel-control-next-icon{

    /* background-color: #6D2C91; */
    border-radius: 50%;
    padding: 14px;
    font-size: 18px;

}



/*======================================
        GALLERY
======================================*/

.gallery-item{

    overflow:hidden;

    border-radius:18px;

    position:relative;

}

.gallery-item img{

    width:100%;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.1);

}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:rgba(109,44,145,.75);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    transition:.35s;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay i{

    color:#fff;

    font-size:34px;

}



/*======================================
        REVIEW CTA
======================================*/

.review-section{

    background:linear-gradient(135deg,#6D2C91,#B146A1);

    padding:80px 0;

    color:#fff;

    position:relative;

    overflow:hidden;

}

.review-section::before{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    right:-100px;

    top:-100px;

}

.review-section h2{

    color:#fff;

    font-size:42px;

    margin-bottom:15px;

}

.review-section p{

    color:rgba(255,255,255,.9);

    margin-bottom:0;

}

.review-section .btn{

    border-radius:50px;

    padding:14px 35px;

    font-weight:600;

}

.review-section .btn-warning{

    background:#FFC107;

    border:none;

    color:#222;

}

.review-section .btn-warning:hover{

    transform:translateY(-5px);

}



/*======================================
        IMAGE EFFECT
======================================*/

.zoom{

    overflow:hidden;

    border-radius:18px;

}

.zoom img{

    transition:.5s;

}

.zoom:hover img{

    transform:scale(1.08);

}



/*======================================
        FADE ANIMATION
======================================*/

.fadeIn{

    animation:fadeIn .8s ease;

}

@keyframes fadeIn{

0%{

opacity:0;

transform:translateY(40px);

}

100%{

opacity:1;

transform:translateY(0);

}

}



/*======================================
        RESPONSIVE
======================================*/

@media(max-width:991px){

.review-section{

text-align:center;

}

.review-section .btn{

margin-top:25px;

}

.testimonial-card{

margin-bottom:30px;

}

}

@media(max-width:767px){

.review-section{

padding:60px 0;

}

.review-section h2{

font-size:32px;

}

.testimonial-card{

padding:25px;

}

.gallery-item{

margin-bottom:20px;

}

}


/*======================================
CONTACT SECTION
======================================*/

.contact-section{
    background:#f8fafc;
}

.contact-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    height:100%;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    margin-bottom:30px;
}

.contact-item:last-child{
    margin-bottom:0;
}

.contact-item i{
    width:60px;
    height:60px;
    background:linear-gradient(135deg,#6D2C91,#B146A1);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-right:20px;
    flex-shrink:0;
}

.contact-item h6{
    margin-bottom:6px;
    font-weight:600;
}

.contact-item p{
    margin:0;
    color:#666;
}

/*======================================
APPOINTMENT FORM
======================================*/

.appointment-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.form-control,
.form-select{
    height:55px;
    border-radius:12px;
    border:1px solid #ddd;
    box-shadow:none;
}

textarea.form-control{
    height:auto;
}

.form-control:focus,
.form-select:focus{
    border-color:#6D2C91;
    box-shadow:0 0 0 .2rem rgba(109,44,145,.15);
}

/*======================================
GOOGLE MAP
======================================*/

.map iframe{
    width:100%;
    height:450px;
    border:0;
}

/*======================================
FOOTER
======================================*/

.footer{
    background:#111827;
    color:#ddd;
}

.footer p{
    color:#bbb;
}

.footer h5{
    color:#fff;
    margin-bottom:25px;
    position:relative;
}

.footer h5::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:60px;
    height:3px;
    background:#B146A1;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#bbb;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#fff;
    padding-left:8px;
}

.footer hr{
    border-color:rgba(255,255,255,.08);
    margin:35px 0;
}

/*======================================
SOCIAL ICONS
======================================*/

.social-icons{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.social-icons a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#222;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.social-icons a:hover{
    background:#B146A1;
    transform:translateY(-5px);
}

/*======================================
FLOATING BUTTONS
======================================*/

.floating-whatsapp,
.floating-call,
#scrollTopBtn{

    width:60px;
    height:60px;
    border-radius:50%;
    position:fixed;
    right:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
    z-index:9999;
    transition:.3s;

}

.floating-whatsapp{
    background:#25D366;
    bottom:160px;
}

.floating-call{
    background:#0d6efd;
    bottom:90px;
}

#scrollTopBtn{
    background:#6D2C91;
    border:none;
    bottom:20px;
    display:none;
    cursor:pointer;
}

.floating-whatsapp:hover,
.floating-call:hover,
#scrollTopBtn:hover{
    transform:translateY(-6px);
    color:#fff;
}

/*======================================
ANIMATION
======================================*/

@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

}

.floating-whatsapp,
.floating-call{

animation:pulse 2s infinite;

}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:1199px){

.hero-img{
/* height:600px; */
}

.carousel-caption h1{
font-size:50px;
}

}

@media(max-width:991px){

.top-header{
text-align:center;
}

.top-header .col-lg-4{
	margin-bottom:0px;
}

.navbar-nav{
padding-top:20px;
}

.carousel-caption{
text-align:center;
left:8%;
right:8%;
bottom:15%;
}

.carousel-caption h1{
font-size:42px;
}

.carousel-caption p{
font-size:16px;
}

.contact-box,
.appointment-form{
margin-bottom:30px;
}

.footer{
text-align:center;
}

.footer h5::after{
left:50%;
transform:translateX(-50%);
}

.social-icons{
justify-content:center;
}

}

@media(max-width:767px){

.hero-img{
/* height:520px; */
}

.carousel-caption{
bottom:12%;
}

.carousel-caption h1{
font-size:32px;
}

.carousel-caption h5{
font-size:15px;
}

.carousel-caption p{
display:none;
}

.btn{
padding:10px 20px;
font-size:14px;
}

.contact-item{
flex-direction:column;
text-align:center;
}

.contact-item i{
margin:0 auto 15px;
}

.floating-whatsapp,
.floating-call,
#scrollTopBtn{
width:50px;
height:50px;
font-size:20px;
right:15px;
}

.floating-whatsapp{
bottom:140px;
}

.floating-call{
bottom:75px;
}

#scrollTopBtn{
bottom:15px;
}

}

@media(max-width:575px){

.section-title{
font-size:30px;
}

.hero-img{
/* height:450px; */
}

.counter-item h2{
font-size:34px;
}

.service-card,
.hospital-card,
.testimonial-card{
padding:25px;
}

.contact-box,
.appointment-form{
padding:25px;
}

.footer{
padding-top:60px;
}

}

/*==============================
Floating WhatsApp
==============================*/

.floating-whatsapp{

position:fixed;

right:20px;

bottom:90px;

width:60px;

height:60px;

background:#25D366;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:28px;

text-decoration:none;

box-shadow:0 8px 20px rgba(0,0,0,.2);

z-index:9999;

transition:.3s;

}

.floating-whatsapp:hover{

transform:translateY(-5px);

color:#fff;

}



/*==============================
Floating Call
==============================*/

.floating-call{

position:fixed;

right:20px;

bottom:20px;

width:60px;

height:60px;

background:#0d6efd;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:24px;

text-decoration:none;

box-shadow:0 8px 20px rgba(0,0,0,.2);

z-index:9999;

transition:.3s;

}

.floating-call:hover{

color:#fff;

transform:translateY(-5px);

}



/*==============================
Scroll Top
==============================*/

#scrollTopBtn{

position:fixed;

left:20px;

bottom:20px;

width:55px;

height:55px;

border:none;

background:#7B2D8E;

color:#fff;

font-size:22px;

border-radius:50%;

display:none;

align-items:center;

justify-content:center;

cursor:pointer;

z-index:9999;

transition:.3s;

box-shadow:0 8px 20px rgba(0,0,0,.2);

}

#scrollTopBtn:hover{

background:#5c2170;

transform:translateY(-5px);

}


.header_main{
	padding:60px 0;
	background:#f1f1f1;
}
.head_title{
	text-align:center;
}
.head_title h1{
	font-size:36px;
	color:#2f0c44;
	font-weight:700;
}
.head_title p{
	font-size:16px;
	color:#282828;
	font-weight:500;
}










