* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #43B02A;                
    --secondary: #0077C8;           
    --accent: #6FD44C;             
    --success: #43B02A;
    --heading: #0F172A;
    --text: #64748B;
    --white: #FFFFFF;
    --black: #000000;
    --bg: #F4FBF6;
    --bg-light: #FCFEFD;
    --card-bg: #FFFFFF;
    --border: #DCEFE3;
    --border-light: rgba(0,119,200,.12);
    --header-bg: #FFFFFF;
    --header-sticky: #FFFFFF;
    --btn-bg: #43B02A;
    --btn-hover: #2E8B1F;
    --btn-text: #FFFFFF;
    --gradient: linear-gradient(135deg,#43B02A 0%,#0077C8 100%);
    --shadow: 0 15px 45px rgba(0,119,200,.10);
    --shadow-hover: 0 20px 60px rgba(67,176,42,.18);
    --radius: 18px;
    --radius-sm: 10px;
    --transition: .35s ease-in-out;
    --heading-font: "Cormorant Garamond", serif;
    --sub-heading-font: "Poppins", sans-serif;
    --body-font: "Inter", sans-serif;

}

img {
    max-width: 100%;
}

a,
a:hover,
a:focus,
a:visited,
a:active {
    text-decoration: none;
}

p,
ul,
li {
    padding: 0;
    margin: 0;
}

body {
    color: var(--text);
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark);
    font-weight: 700;
}

/*==========================
        HEADER
==========================*/
/*=====================
Header
=====================*/

header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 222;
}

header .headermn {
    background: var(--card-bg);
    padding: 10px 0;
    transition: var(--transition);
}

header .container {
    max-width: 1320px;
}

header .navbar-brand {
    width: 150px;
}

header .navbar-brand img {
    width: 100%;
}

/*=====================
Menu
=====================*/

header .navbar-nav {
    gap: 42px;
}

header .nav-link {
    color: var(--white);
    font-family: var(--sub-heading-font);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .5px;
    position: relative;
    padding: 0 !important;
    transition: var(--transition);
}

header .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    transform: translateX(-50%);
}

header .nav-link:hover,
header .nav-link.active {
    color: var(--secondary);
}

header .nav-link:hover::after,
header .nav-link.active::after {
    width: 100%;
}

/*=====================
Button
=====================*/

header .whatsapp {
    margin-left: 35px;
}

header .whatsapp li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    background: var(--btn-bg);
    color: var(--btn-text);
    font-family: var(--sub-heading-font);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

header .whatsapp li a:hover {
    background: var(--btn-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

header .whatsapp li a span {
    background: transparent;
    width: auto;
    height: auto;
    color: var(--btn-text);
}

/*=====================
Sticky
=====================*/

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--header-sticky);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
    animation: headerSlide .4s ease;
}

@keyframes headerSlide {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/*=====================
Toggle
=====================*/

header .navbar-toggler {
    border: none;
    color: var(--btn-bg);
    font-size: 28px;
}

header .navbar-toggler:focus {
    box-shadow: none;
}

/*=====================
Offcanvas
=====================*/

header .offcanvas {
    background: var(--card-bg);
}

header .offcanvas-header {
    border-bottom: 1px solid var(--border-light);
}

header .offcanvas-title img {
    width: 90px;
}

/* header .btn-close {
    filter: invert(1);
} */

header .offcanvas .nav-link {
    color:#111;
    padding: 12px 0 !important;
}

header .offcanvas .nav-link:hover,
header .offcanvas .nav-link.active {
    color: var(--secondary);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--secondary);
}

/* footer */
/*=================================
Footer
=================================*/

footer {
    overflow: hidden;
}

footer .footertop {
    background: #000;
    padding: 30px 0;
    overflow: hidden;
}

footer .row {
    row-gap: 25px;
}

footer .footertop h3 {
    color: var(--secondary);
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}

footer .footertop .about img {
    width: 200px;
    margin-bottom: 10px;
}

footer .footertop .about p {
    color: var(--white);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

footer .footertop ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footertop ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--white);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
}

footer .footertop ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

footer .footertop ul li a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

footer .footertop .addres li {
    margin-bottom: 14px;
}

footer .footertop .addres li i {
    color: var(--secondary);
    font-size: 18px;
    margin-top: 4px;
}

/*=================================
Bottom Footer
=================================*/

footer .footerboo {
    background: #000;
    border-top: 1px dashed var(--secondary);
    padding: 18px 0;
    text-align: center;
}

footer .footerboo p {
    margin: 0;
    color: var(--white);
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 400;
}

footer .footerboo a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

footer .footerboo a:hover {
    color: var(--accent);
}

/*=================================
Follow Us
=================================*/

footer .follow-us {
    margin-top: 25px;
}

footer .follow-us h4 {
    color: var(--white);
    font-family: var(--sub-heading-font);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
}

footer .social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

footer .social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 17px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

footer .social-links a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Facebook */
footer .social-links a:nth-child(1) {
    background: #1877F2;
}

/* Instagram */
footer .social-links a:nth-child(2) {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

/* YouTube */
footer .social-links a:nth-child(3) {
    background: var(--success);
}

/* quickcontact */

.quickcontact {
    width: 45px;
    position: fixed;
    top: 65%;
    right: 15px;
    z-index: 102;
}





/* scroll-top css============================= */
#scrollTopBtn {
    position: fixed;
    bottom: 17px;
    right: 15px;
    width: 42px;
    height: 42px;
    background-color: var(--secondary);
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: background-color .3s ease
}

#scrollTopBtn:hover {
    background: var(--primary);
    color: #fff;
}

#scrollTopBtn.show {
    display: flex
}


/*=================================
Enquiry Modal
=================================*/

#enquiryModal .modal-dialog {
    max-width: 420px;
}

#enquiryModal .modal-content {
    background: var(--card-bg);
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

#enquiryModal .modal-header {
    background: #39a742;
    color: var(--white);
    padding: 16px 20px;
    border: none;
}

#enquiryModal .modal-title {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
}

#enquiryModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

#enquiryModal .modal-body {
    padding: 30px;
    background: var(--card-bg);
}

#enquiryModal .form-control {
    height: 52px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--body-font);
    font-size: 15px;
    box-shadow: none;
    transition: var(--transition);
}

#enquiryModal textarea.form-control {
    height: 120px;
    resize: none;
    padding-top: 14px;
}

#enquiryModal .form-control::placeholder {
    color: var(--text);
}

#enquiryModal .form-control:focus {
    background: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px var(--border-light);
}

#enquiryModal .submit {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--gradient);
    color: var(--btn-text);
    font-family: var(--sub-heading-font);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

#enquiryModal .submit:hover {
    background: var(--btn-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}



/*=====================================
Thank You Section
=====================================*/

#lp-thankyou{
    width:100%;
    padding:80px 0;
    background:var(--bg);
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

#lp-thankyou .thankyou-wrapper{
    width:100%;
    max-width:1200px;
    margin:0 auto;
}

#lp-thankyou .thankyou-box{
    max-width:650px;
    margin:0 auto;
    padding:60px 45px;
    background:var(--white);
    border-radius:20px;
    text-align:center;
    box-shadow:var(--shadow);
}

#lp-thankyou .thankyou-icon{
    width:90px;
    height:90px;
    margin:0 auto 30px;
    border-radius:50%;
    background:var(--gradient);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
}

#lp-thankyou h2{
    margin:0 0 18px;
    color:var(--heading);
    font-family:var(--heading-font);
    font-size:42px;
    font-weight:700;
    line-height:1.2;
}

#lp-thankyou p{
    margin:0 auto 30px;
    max-width:500px;
    color:var(--text);
    font-family:var(--body-font);
    font-size:18px;
    line-height:1.8;
}

#lp-thankyou .thankyou-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 32px;
    background:var(--gradient);
    color:var(--btn-text);
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    transition:var(--transition);
}

#lp-thankyou .thankyou-btn:hover{
    background:var(--btn-hover);
    color:var(--white);
    transform:translateY(-4px);
    box-shadow:var(--shadow-hover);
}

#lp-thankyou .thankyou-btn i{
    transition:var(--transition);
}

#lp-thankyou .thankyou-btn:hover i{
    transform:translateX(5px);
}

/*=========================
Responsive
=========================*/

@media (max-width:991px){

#lp-thankyou{
    padding:70px 0;
}

#lp-thankyou .thankyou-box{
    padding:50px 35px;
}

#lp-thankyou h2{
    font-size:36px;
}

}

@media (max-width:767px){

#lp-thankyou{
    padding:60px 0;
}

#lp-thankyou .thankyou-box{
    padding:40px 25px;
    border-radius:16px;
}

#lp-thankyou .thankyou-icon{
    width:75px;
    height:75px;
    font-size:34px;
}

#lp-thankyou h2{
    font-size:30px;
}

#lp-thankyou p{
    font-size:16px;
}

#lp-thankyou .thankyou-btn{
    width:100%;
}

}

/*==============================
Breadcrumb
===============================*/

#lp-breadcrumb{
    position:relative;
    padding:50px 0;
    background:var(--gradient);
    overflow:hidden;
    display:flex;
    align-items:center;
}

/* Optional Decorative Circle */

#lp-breadcrumb::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-120px;
    right:-80px;
}

#lp-breadcrumb::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    bottom:-100px;
    left:-70px;
}

#lp-breadcrumb .container{
    position:relative;
    z-index:2;
}

/*==============================
Breadcrumb Box
===============================*/

#lp-breadcrumb #lp-breadcrumb-box{
    display:inline-block;
    background:var(--white);
    padding:12px 22px;
    border-radius:50px;
    box-shadow:var(--shadow);
    margin-bottom:20px;
}

#lp-breadcrumb #lp-breadcrumb-box .breadcrumb{
    margin:0;
    align-items:center;
}

#lp-breadcrumb #lp-breadcrumb-box .breadcrumb-item{
    font-size:15px;
    font-weight:600;
}

#lp-breadcrumb #lp-breadcrumb-box .breadcrumb-item + .breadcrumb-item::before{
    content:"/";
    color:var(--text);
}

#lp-breadcrumb #lp-breadcrumb-box .breadcrumb-item a{
    color:var(--heading);
    text-decoration:none;
    transition:var(--transition);
}

#lp-breadcrumb #lp-breadcrumb-box .breadcrumb-item a:hover{
    color:var(--secondary);
}

#lp-breadcrumb #lp-breadcrumb-box .breadcrumb-item.active{
    color:var(--secondary);
    font-weight:700;
}

#lp-breadcrumb #lp-breadcrumb-box i{
    color:var(--secondary);
    margin-right:8px;
}

/*==============================
Heading
===============================*/

#lp-breadcrumb #lp-breadcrumb-content h2{
    color:var(--white);
    font-family:var(--heading-font);
    font-size:52px;
    font-weight:700;
    margin:0;
    line-height:1.2;
}

#slider .owl-theme .owl-dots .owl-dot {
  display: none;
}

#slider button.owl-prev {
  position: absolute;
  text-align: center;
  padding: 0px;
  color: var(--secondary);
  top: 50%;
  font-size: 25px;
  left: 15px;
  background-color: #ffffff7a;
  width: 35px;
  height: 35px;
  line-height: 35px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

#slider button.owl-next {
  position: absolute;
  text-align: center;
  padding: 0px;
  color: var(--secondary);
  top: 50%;
  font-size: 25px; 
  right: 15px;
  background-color: #ffffff7a;
  width: 35px;
  height: 35px;
  line-height: 35px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

#slider button.owl-prev span,
#slider button.owl-next span {
  bottom: 2px;
  position: relative;
}





#about-doctor{
    background:#fff;
    padding:50px 0;
}

#about-doctor #doctor-content .sub-title{
    display: inline-block;
    color: var(--secondary);
    font-family: var(--sub-heading-font);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;

}

#about-doctor #doctor-content h2{
       color: var(--heading);
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

#about-doctor #doctor-content h6{
    color:var(--secondary);
    margin-bottom:20px;
    font-weight:600;
}

#about-doctor #doctor-content p{
    color:var(--text);
    line-height:30px;
    margin-bottom:18px;
}

#about-doctor #doctor-content ul{
    margin:0 0 20px;
    padding-left:18px;
}

#about-doctor #doctor-content ul li{
    margin-bottom:10px;
    color:var(--heading);
    font-weight:500;
}

#about-doctor #doctor-gallery{
    position: sticky;
    top: 120px;
}

#about-doctor .about-img-small{
    border-radius:35px;
    height:260px;
    width:100%;
    object-fit:cover;
}

#about-doctor .about-img-large{
    border-radius:35px;
    height:260px;
    width:100%;
    object-fit:cover;
}

#about-doctor .about-img-round{
    width:100%;
    height:140px;
    border-radius:30px;
    object-fit:cover;
}

#about-doctor .experience-box{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    border-radius:30px 0;
    text-align:center;
    padding:35px 20px;
    height:140px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

#about-doctor .experience-box h2{
    font-size:52px;
    margin:0;
    font-weight:700;
}

#about-doctor .experience-box span{
    font-size:18px;
    font-weight:600;
}


#ent-services{
    padding:50px 0;
    background:#f7fbfd;
    overflow: hidden;
}

#ent-services .sub-title{
    display: inline-block;
    color: var(--secondary);
    font-family: var(--sub-heading-font);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

#ent-services h2{
       color: var(--heading);
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

#ent-services p{
    color:var(--text);
    margin-bottom: 25px;
}


#ent-services .service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
    border:1px solid #e8eef4;
}

#ent-services .service-card:hover{
    transform:translateY(-8px);
}

#ent-services .service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

#ent-services .service-content{
    padding:20px;
    text-align:center;
}

#ent-services .service-content h4{
    font-size:22px;
    margin-bottom:12px;
    color:var(--heading);
}

#ent-services .service-content p{
    font-size:15px;
    line-height:26px;
    margin-bottom:15px;
}

#ent-services .service-content a{
    display:inline-block;
    color:var(--primary);
    font-weight:600;
    text-decoration:none;
}

#ent-services .service-content a:hover{
    color:var(--secondary);
}

#ent-services .service-box{
    border:1px solid #dfe7ef;
    border-radius:22px;
    padding:8px;
    background:#fff;
    height:100%;
    transition:.3s;
}

#ent-services .service-box:hover{
    border-color:#0d6efd;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

#ent-services .service-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    height:100%;
}

#ent-services .service-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

#ent-services .service-content{
    padding:15px;
    text-align:center;
}

#ent-services .service-content h4{
    font-size:26px;
    font-weight:700;
    margin-bottom:15px;
}

#ent-services .service-content p{
    color:#6c757d;
    line-height:28px;
    margin-bottom:20px;
}

#ent-services .service-content a{
    color:#2aa84a;
    text-decoration:none;
    font-weight:600;
}

#ent-services .service-content a:hover{
    color:#0d6efd;
}


/*==========================
 Counter Section
==========================*/

#counter-section{
    padding:20px 0;
    background:var(--white);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

#counter-section .counter-item{
    display:flex;
    align-items:center;
    gap:20px;
    padding:20px 30px;
    border-right:1px solid var(--border);
    transition:var(--transition);
    height:100%;
}

#counter-section .counter-item:last-child{
    border-right:none;
}

#counter-section .counter-item:hover{
    transform:translateY(-5px);
}

#counter-section .counter-icon{
    width:68px;
    height:68px;
    min-width:68px;
    border:2px solid var(--primary);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(67,176,42,.08);
    transition:var(--transition);
}

#counter-section .counter-item:hover .counter-icon{
    background:var(--gradient);
    border-color:transparent;
}

#counter-section .counter-icon i{
    color:var(--primary);
    font-size:28px;
    transition:var(--transition);
}

#counter-section .counter-item:hover .counter-icon i{
    color:var(--white);
}

#counter-section .counter-content h2{
    font-family:var(--heading-font);
    font-size:52px;
    font-weight:700;
    color:var(--heading);
    line-height:1;
    margin-bottom:8px;
}

#counter-section .counter-content p{
    margin:0;
    font-size:16px;
    font-weight:500;
    color:var(--text);
    font-family:var(--body-font);
}



/*=========================
 FAQ Section
=========================*/

#ent-faq{
    padding:50px 0;
    background:var(--bg);
}

#ent-faq .accordion-item{
    border:1px solid var(--border);
    border-radius:var(--radius);
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
}

#ent-faq .accordion-button{
    background:var(--white);
    color:var(--heading);
    font-size:18px;
    font-weight:600;
    font-family:var(--sub-heading-font);
    padding:22px 28px;
    box-shadow:none;
}

#ent-faq .accordion-button:not(.collapsed){
    background:var(--gradient);
    color:var(--white);
}

#ent-faq .accordion-button:focus{
    box-shadow:none;
}

#ent-faq .accordion-body{
    background:var(--white);
    color:var(--text);
    font-size:16px;
    line-height:30px;
    padding:25px 28px;
}

#ent-faq .accordion-button::after{
    filter:brightness(0);
}

#ent-faq .accordion-button:not(.collapsed)::after{
    filter:brightness(100);
}


#ent-faq .sub-title {
    display: inline-block;
    color: var(--secondary);
    font-family: var(--sub-heading-font);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}


#ent-faq h2 {
    color: var(--heading);
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    /*margin-bottom: 30px;*/
}

#ent-faq  p {
    color: var(--text);
    margin-bottom: 25px;
}
/*====================================
Testimonial Section
====================================*/

#testimonial-section {
    padding: 50px 0;
    background: var(--bg-light);
    overflow: hidden;
}

#testimonial-section .review-info {
    padding-right: 30px;
}

#testimonial-section .sub-title {
    display: inline-block;
    color: var(--secondary);
    font-family: var(--sub-heading-font);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

#testimonial-section h2 {
    color: var(--heading);
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

#testimonial-section h2 span {
    color: var(--secondary);
}

/*========================
Google Rating
========================*/

#testimonial-section .google-rating {
    display: flex;
    align-items: center;
    gap: 18px;
}

#testimonial-section .google-rating img {
    width: 65px;
}

#testimonial-section .stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

#testimonial-section .stars i {
    color: #FDBA12;
    font-size: 18px;
}

#testimonial-section .stars strong {
    margin-left: 10px;
    color: var(--heading);
    font-size: 28px;
    font-weight: 700;
}

#testimonial-section .rating-text p {
    margin: 0;
    color: var(--text);
    font-size: 16px;
}

#testimonial-section .rating-text span {
    color: var(--secondary);
    font-weight: 700;
}

/*========================
Slider
========================*/

#testimonial-section .testimonial-slider {
    position: relative;
}

#testimonial-section .testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin: 10px;
}

#testimonial-section .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

#testimonial-section .testimonial-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#testimonial-section .testimonial-head h4 {
    color: var(--heading);
    font-family: var(--sub-heading-font);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

#testimonial-section .testimonial-head small {
    color: var(--secondary);
    font-size: 14px;
}

#testimonial-section .rating i {
    color: #FDBA12;
    font-size: 15px;
}

#testimonial-section .testimonial-card p {
    height: 130px;
    overflow-y: auto;
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    padding-right: 8px;
}

/* Scrollbar */

#testimonial-section .testimonial-card p::-webkit-scrollbar {
    width: 5px;
}

#testimonial-section .testimonial-card p::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#testimonial-section .testimonial-card p::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

#testimonial-section .testimonial-card p::-webkit-scrollbar-thumb:hover {
    background: var(--btn-hover);
}

/*========================
Owl Nav
========================*/

#testimonial-section .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

#testimonial-section .owl-nav button {
    width: 46px;
    height: 46px;
    border-radius: 50% !important;
    background: var(--white) !important;
    box-shadow: var(--shadow);
    color: var(--secondary) !important;
    transition: var(--transition);
}

#testimonial-section .owl-nav button:hover {
    background: var(--secondary) !important;
    color: var(--white) !important;
}

#testimonial-section .owl-nav span {
    font-size: 26px;
    line-height: 1;
}


/*=========================
 Video Section
=========================*/

#ent-video{
    padding:50px 0;
    background:var(--bg-light);
}


#ent-video .sub-title {
    display: inline-block;
    color: var(--secondary);
    font-family: var(--sub-heading-font);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

#ent-video h2 {
    color: var(--heading);
    font-family: var(--heading-font);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

#ent-video h2 span {
    color: var(--secondary);
}

#ent-video .video-box{
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--shadow);
    background:var(--white);
    border:1px solid var(--border);
}

#ent-video .video-box video{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
    background:#000;
    border-radius:var(--radius);
}


/*==================================
        Appointment Section
==================================*/

#appointment{
    padding:50px 0;
    background:var(--bg);
}

#appointment h2{
    font-family:var(--heading-font);
    color:var(--heading);
    font-size:52px;
    margin-bottom:20px;
}

#appointment p{
    color:var(--text);
    line-height:30px;
    margin-bottom:25px;
}

#appointment .appointment-list{
    margin:0;
    padding:0;
    list-style:none;
}

#appointment .appointment-list li{
    margin-bottom:18px;
    font-size:17px;
    color:var(--heading);
    font-weight:500;
}

#appointment .appointment-list li i{
    color:var(--primary);
    margin-right:10px;
}

#appointment .appointment-form{
    background:var(--white);
    padding:40px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    border:1px solid var(--border);
}

#appointment .appointment-form h3{
    margin-bottom:25px;
    color:var(--heading);
    font-family:var(--heading-font);
    font-size:38px;
}

#appointment .form-control,
#appointment .form-select{
    height:55px;
    border-radius:10px;
    border:1px solid var(--border);
    box-shadow:none;
}

#appointment textarea.form-control{
    height:130px;
    resize:none;
}

#appointment .form-control:focus,
#appointment .form-select:focus{
    border-color:var(--primary);
    box-shadow:none;
}

#appointment .theme-btn{
    width:100%;
    height:55px;
    border:none;
    border-radius:10px;
    background:var(--gradient);
    color:var(--white);
    font-weight:600;
    transition:var(--transition);
}

#appointment .theme-btn:hover{
    background:var(--btn-hover);
}

#appointment .sub-title {
    display: inline-block;
    color: var(--secondary);
    font-family: var(--sub-heading-font);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}