html, *{
    transition: 0.5s;
    margin: 0;
    padding: 0

}
:root{
    --roboto:'Roboto', sans-serif;
    --playfont:'Playfair Display', serif;
    --color1:#303366;
    --color2:#f58220;
}
a{
    text-decoration: none!important;

}
body{
    font-family: 'Roboto', sans-serif
}
.container{
    max-width: 1300px!important;
}
.logo-wrap{
gap:0px;
}
.logo-img img{
width:100px;
}
.logo-text h1{
margin:0;
font-size:45px;
font-weight:700;
padding-bottom: 2px;
color:#5a5a5a;
font-family: 'Playfair Display', serif;
background: linear-gradient(to right, #6b5c9f, #d7b123);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.logo-text span{
color:#caa33d;
}
.logo-text p{
margin:0;
color:#f58220;
font-size:14px;

font-weight:500;
}

.top-contact{
    padding:12px 0;
    display:inline-block;
    float: right;
}

.contact-row{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:6px;
}

.contact-row:last-child{
    margin-bottom:0;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:8px;
}

.top-contact i{
    color:#ff7a00;
    font-size:18px;
}

.top-contact a{
    color:#333;
    font-weight: 500;
    font-size:16px;
    text-decoration:none;
}

.top-contact a:hover{
    color:#ff7a00;
}

.social-bar{
    display:flex;
    gap:10px;
}

.social-bar a{
    width:40px;
    height:40px;
    background:#eae8ef;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition: 0.5s ease;
}
.social-bar a:hover{
     background: linear-gradient(135deg, #ff7a00, #ffb347);
}

.social-bar a:hover i{
    color: #fff;
}
.social-bar i{
    font-size:24px;
    color:var(--color1);
    transition: 0.5s ease;
}



.menubar{
    padding: 0 10px 0 50px;
    border-radius: 30px;
    background: linear-gradient(135deg, #f9e4a9, #eec556);
    transition:all 0.3s ease;
}

.navbar-custom{
    padding:15px 0;
}

.navbar-nav .nav-link{
    font-size:18px;
    color: #111;
    font-weight:500;
    margin:0 10px;
    padding: 5px 0;
}

.book-btn{
     background: linear-gradient(135deg, #e58323, #f1b70d);
    color:#fff;
    font-weight: 600;
    font-size: 18px;
    padding:4px 18px;
    border-radius:30px;
    text-decoration:none;
}

.book-btn:hover{
   transform: scale(1.1);
}

/* Sticky navbar */
.sticky{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}
.navbar-expand-lg .navbar-nav{
    position: relative;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    padding: 10px;
    top: 44px;
    border-top:0;
    border-radius: 10px;
    box-shadow: 0 0 5px #00000015;
    border: none;
}
.menubar ul li ul{
    width: 250px;
    transition: 0.5s ease;
}
}
.menubar ul li{
    transition: 0.5s ease;
}
.menubar ul li ul li a{
    padding: 10px 20px;
    font-weight: 600;
    font-size: 15px;
}
.menubar ul li ul li a:hover{
    padding-left: 30px;
    color: var(--color2);
}
.menubar ul li ul li{
    border-bottom: 1px solid #ffd97090;
    margin: 0 10px;
}
.menubar ul li ul li:hover{
    border-bottom: 1px solid #f2b70f;
}
.menubar ul li ul li:last-child{
    border-bottom: 0;
}


.hero-section{
position:relative;
}

.hero-slide{
height:600px;
background-size:cover;
background-position:center;
position:relative;
display:flex;
align-items:center;
}

.hero-slide::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgb(19 11 50 / 60%)
}

.slide1{
background-image:url("../images/banner/1.jpg");
background-position: center;
background-size: cover;
height: 500px;
}

.slide2{
background-image:url("../images/banner/2.jpg");
background-position: center;
background-size: cover;
height: 500px;
}

.slide3{
background-image:url("../images/banner/3.jpg");
background-position: center;
background-size: cover;
height: 500px;
}
.slide4{
background-image:url("../images/banner/4.jpg");
background-position: center;
background-size: cover;
height: 500px;
}
.slide5{
background-image:url("../images/banner/5.jpg");
background-position: center;
background-size: cover;
height: 500px;
}

.hero-content{
    position:absolute;
    color:#fff;
    width:80%;
    padding: 60px;
    left: 8%;
    top: 8%;
}

.hero-title{
font-size:70px;
font-weight:700;
margin: 0;
padding: 0;
line-height:1.3!important;
animation:fadeUp 1s ease;
}

.hero-title span{
color:#f5a623;
font-size: 50px;
display: block;
}

.hero-text{
font-size:20px;
margin:20px 0;
animation:fadeUp 1.4s ease;
}

.hero-btn{
display:inline-block;
background:linear-gradient(90deg,#ff8c00,#ffb300);
color:#fff;
padding:14px 30px;
border-radius:40px;
font-weight:600;
text-decoration:none;
animation:fadeUp 1.8s ease;
}

.hero-btn:hover{
opacity:0.9;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{a
opacity:1;
transform:translateY(0);
}
}
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next{
width:40px;
height:40px;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.4);
border-radius:50%;
}

/* icon size */
.hero-section  .carousel-control-prev-icon,
.hero-section  .carousel-control-next-icon{
width:40px;
height:40px;
background-size:20px;

}

/* left button position */
.hero-section  .carousel-control-prev{
left:50px;
}

/* right button position */
.hero-section  .carousel-control-next{
right:50px;
}
.hero-section .carousel-indicators [data-bs-target] {
   background: #fff;
   border:none;
   height: 10px;
   border-radius: 30px;
   width: 10px;
}
.hero-section .carousel-indicators .active {
     background-image: linear-gradient(#c98e18, #604449); 
     height: 10px;
     width: 30px;
}

.subheading-wrapper{
text-align:center;
margin:0 0;
}

.subheading-badge{
display:inline-flex;
align-items:center;
gap:10px;
padding:5px 15px;
border:1px solid #f5a623;
border-radius:40px;
font-weight:600;
font-size:16px;
color:var(--color1);
background:#f4f4f4;
margin-bottom: 10px;
}

.subheading-badge i{
color:#f5a623;
font-size:18px;
}

/*  */
.aboutsection{
    padding: 70px 0;
}

.doctor-wrapper{
    margin:0 50px;
    margin-top: 20px;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 0 15px #00000055;
}

/* LEFT FLOATING ICONS */
.abouleft{
    position: relative;
    padding:15px 0;
    padding-right: 20px;
    padding-bottom: 0;
}
.social-icons{
position:absolute;
left:-80px;
top:20px;
display:flex;
flex-direction:column;
gap:18px;
z-index:999;
}

.social-icons a{
width:55px;
height:55px;
background:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
color:#555;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
transition:.3s;
box-shadow: 0 0 5px #00000012;
border:1px solid #cccccc50;

}

.social-icons a:hover{
background:#ff8c1a;
color:white;

}

/* DOCTOR IMAGE */

.doctor-img{
position:relative;
margin-bottom: 10px;
padding-right: 40px;
}

.doctor-img img{
width:100%;
border-radius:6px;
}

/* EXPERIENCE BADGE */

.exp-badge{
position:absolute;
top:-30px;
right:5px;
background:#f28c28;
color:white;
padding:7px 16px;
border-radius:20px;
font-size:14px;
font-weight:600;
box-shadow:0 6px 15px rgba(0,0,0,0.2);
}

/* TAGS */

.tag{
margin-top:-15px;
display:inline-block;
padding:8px 16px;
font-weight: 600;
border-radius:20px;
color:white;
font-size:16px;
margin-bottom:10px;
}

.tag-blue{
background:#4b4a80;
margin-bottom: 15px;
}

.tag-orange{
background:#f28c28;
}

/* LIST */

.expertise{
margin-top:10px;
padding-left:18px;
}

.expertise li{
margin-bottom:0;
color:#444;

}

.expertise li::marker{
    color:#3d3c8e;
    font-size: 25px;
}
.abttext{
    background: #f0f0ff60;
    box-shadow: 0 0 5px #66666650;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}
.abttext p{
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    text-align: justify;
}
.abttext p:last-child{
    margin-bottom: 0;
}
.aboutright h2{
   font-size:55px;
font-weight:700;
color:#5a5a5a;
font-family: 'Playfair Display', serif;
background: linear-gradient(to right, #6b5c9f, #e78d1e);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.aboutright h3{
    font-size: 24px;
    color: var(--color1);
    line-height: 1.2;
    margin-bottom: 25px;
}
.doctor-buttons{
display:flex;
gap:25px;
flex-wrap:wrap;
}

/* Schedule Button */

.btn-consult{

background:linear-gradient(90deg,#f28c28,#f5b400);
color:#fff;
padding:14px 30px;
border-radius:40px;
font-weight:600;
text-decoration:none;
display:inline-flex;
align-items:center;
gap:10px;
transition:all .3s ease;
}

.btn-consult:hover{
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.btn-consult i{
transition:.3s;
}

.btn-consult:hover i{
transform:translateX(6px);
}


/* Profile Button */

.btn-profile{
  
    border:2px solid #4b4a80;
    color:#4b4a80;
    padding:14px 30px;
    border-radius:40px;
    font-weight:600;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:.3s;
}

.btn-profile:hover{
background:#4b4a80;
color:#fff;
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.btn-profile i{
transition:.3s;
}

.btn-profile:hover i{
transform:translateX(6px);
}




.subheading-wrapper h1 {
    font-size: 55px;
    font-weight: 700;
    
    font-family: 'Playfair Display', serif;
    background: linear-gradient(to right, #141b89, #e78d1e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.subheading-wrapper p {
    font-size: 16px;
    width: 50%;
    font-weight: 500;
    margin:0 auto;
}
.service-card{
width:100%;
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
border-left:6px solid #f28c28;
transition:.3s;
position:relative;
}

.service-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.service-img img{
width:100%;
height:250px;
object-fit:cover;
}

.service-content{
padding:25px;
}

.service-content h4{
font-weight:600;
color:#3d3c8e;
margin-bottom:12px;
display:flex;
align-items:center;
gap:10px;
}

.dot{
width:10px;
height:10px;
background:#f28c28;
border-radius:50%;
display:inline-block;
}

.service-content p{
color:#555;
font-size:16px;
line-height:1.6;
margin-bottom:15px;
}

.view-more{
color:#3d3c8e;
font-weight:600;
text-decoration:none;
display:inline-flex;
align-items:center;
gap:8px;
transition:.3s;
}

.view-more i{
transition:.3s;
}

.view-more:hover i{
transform:translateX(6px);
}
.service-card{
    margin-top: 40px;
}
.servicesec{
    padding: 0 0 80px 0;
}

.counter-sec{
  background: linear-gradient(135deg,#2d2f5b,#3b3f73);
  padding: 60px 0;
}

.counter-card{
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 30px 20px;
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.counter-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  background: #897e5f;
}

.counter-card .icon{
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(45deg,#ff9800,#ffc107);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-card .icon i{
  color: #fff;
  font-size: 24px;
}

.counter-card h2{
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  margin: 10px 0;
}

.counter-card p{
  color: #cfcfcf;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.blogsec{
    padding: 80px 0;
    background: url('../images/blogbg.jpg');
}

.article-box{
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.4s ease;
  margin-top: 35px;
  box-shadow: 0 10px 15px rgba(0,0,0,0.08);
}

.article-box:hover{
  transform: translateY(-5px);
  box-shadow: 0 25px 35px rgba(0,0,0,0.08);
}

/* Image */
.article-img{
  position: relative;
  width: 40%;
}

.article-img img{
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* Arrow button */
.arrow-btn{
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.arrow-btn:hover{
  background: #ff7a00;
  color: #fff;
}

/* Content */
.article-content{
  width: 60%;
  padding: 30px;
}

.author-name{
  font-size: 15px;
  color: #333;
  display: block;
  margin-bottom: 10px;
}

.article-content h3{
  font-size: 22px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--color1);
  line-height: 1.4;
  margin-bottom: 20px;
}

/* Read more */
.read-link{
  color: #c76b1c;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.read-link i{
  transition: 0.3s;
}

.read-link:hover i{
  transform: translateX(5px);
}


.country-tab-sec{
  padding:40px 25px;
  background:#f6f7fb;
  margin-top: 20px;
}

/* Tabs */
.tab-buttons{
  display:flex;
  gap:15px;
  margin-bottom:25px;
  flex-wrap:wrap;
}

.tab-btn{
  padding:10px 15px;
  border-radius:12px;
  border:1px solid #ddd;
  background:#fff;
  cursor:pointer;
  font-weight:600;
  transition:0.3s;
}

.tab-btn.active{
  background:#2f3163;
  color:#fff;
  border-color:#2f3163;
}

/* Content */
.tab-content{
  display:none;
}

.tab-content.active{
  display:block;
}

/* Card */
.tab-card{
  background:#2f3163;
  color:#fff;
  padding:30px;
  border-radius:15px;
}

.tab-card h3{
  margin:0;
  font-size:24px;
}

.tab-card .highlight{
  color:#ffc107;
  margin:8px 0;
}

.tab-card .location{
  font-size:14px;
  opacity:0.8;
}

/* Features */
.features{
  margin-top:25px;
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:15px;
}

.features div{
  background:#fff;
  color:var(--color1);
  padding:15px;
  border-radius:10px;
  font-size:16px;
  font-weight: 500;
}
.features div i{
    font-size: 16px;
    color: #fff;
    background: #eabc3f;
    width: 30px!important;
    text-align: center;
    height: 30px!important;
    border-radius: 100%;
    line-height: 30px;
}
.tab-btn i{
  margin-right:8px;
  background:#595c84;
  padding:10px;
  color: #fff;
  font-size: 20px;
  border-radius:8px;
}

.feature-sec{
  padding:0 25px 40px 25px;
  background:#f5f6f8;
}

/* Card */
.feature-box{
  background:#fff;
  border-radius:15px;
  padding:25px;
  text-align:left;
  transition:0.4s;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  border:1px solid transparent;
  
}

/* Icon */
.feature-box .icon{
  width:50px;
  height:50px;
  background:#f39c12;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:15px;
}

.feature-box .icon i{
  color:#fff;
  font-size:20px;
}

/* Title */
.feature-box h4{
  font-size:18px;
  font-weight:600;
  color:#2f3163;
  margin-bottom:10px;
}

/* Line */
.feature-box .line{
  display:block;
  width:40px;
  height:3px;
  background:#f39c12;
  border-radius:2px;
}

/* ACTIVE STATE */
.feature-box.active{
  border:2px solid #f39c12;
}

.feature-box.active h4{
  color:#f39c12;
}

/* HOVER EFFECT */
.feature-box:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 25px rgba(0,0,0,0.1);
  border:2px solid #f39c12;
}

.feature-box:hover h4{
  color:#f39c12;
}


.cta-sec{
  padding:40px 0;
}

.cta-box{
  background: linear-gradient(135deg, #2f3163, #3b3f73);
  border-radius:20px;
  padding:60px 30px;
  color:#fff;
}

/* Heading */
.cta-box h2{
  font-size:35px;
  font-weight:700;
  margin-bottom:15px;
  font-family: 'Playfair Display', serif;
}

/* Text */
.cta-box p{
  font-size:16px;
  color:#dcdcec;
  max-width:600px;
  margin:0 auto 25px;
  line-height:1.6;
}

/* Button */
.cta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size: 18px;
  background:var(--color2);
  color:#2f3163;
  padding:10px 25px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.cta-btn i{
  transition:0.3s;
}

/* Hover */
.cta-btn:hover{
  background:#f4b400;
  transform:translateY(-2px);
  color: #2f3163;
}

.cta-btn:hover i{
  transform:translateX(5px);
}

.timeline-section {
  padding: 0 ;
}

.timeline-section .container {
  position: relative;
  width: 900px;
  margin: 0 auto;
  margin-top: 50px;
}

/* vertical line */
.timeline-section .container::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to top, #141b89, #e78d1e);
}

/* item */
.timeline-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 40px;
  padding-left: 80px;
  transition: 0.3s ease;
}

/* icon circle */
.timeline-item .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: #f39c12;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: 0.3s ease;
  z-index: 2;
}

/* content */
.timeline-item .content h4 {
  color: var(--color1);
  font-family:var(--playfont);
  padding-bottom: 10px;
  font-weight: 600;
}

.timeline-item .content p {
  color: #444444;
  font-size: 18px;
}

/* hover / active effect */
.timeline-item:hover .icon,
.timeline-item.active .icon {
  background: #1e2a78;
  transform: scale(1.1);
  background: var(--color2);
}

.timeline-item:hover .content h4,
.timeline-item.active .content h4 {
  color: #f39c12;
}

/* smooth animation */
.timeline-item:hover {
  /*transform: translateX(5px);*/
}

/* Section Background */
.cta-section {
  padding: 30px 20px;
  text-align: center;
}

/* Container */
.cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Button Style */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #1e3a8a;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Arrow */
.cta-btn .arrow {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #ffdd23, #ea580c);
}

/* Arrow Move */
.cta-btn:hover .arrow {
  transform: translateX(6px);
}

/* Active Click */
.cta-btn:active {
  transform: scale(0.97);
}
.reviewsec{
    padding: 70px 0;
}


.testimonial-section {
  
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.testimonial-container {
  max-width: 900px;
  margin: auto;
  position: relative;
}

/* Quote Icon */
.quote-icon {
  position: absolute;
  left: -40px;
  top: 0;
  font-size: 120px;
  color: #facc15;
  opacity: 0.3;
  animation: floatQuote 3s ease-in-out infinite;
}

/* Floating Animation */
@keyframes floatQuote {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Testimonials */
.testimonial {
  display: none;
  transition: opacity 0.5s ease;
}

.testimonial.active {
  display: block;
}

/* Avatar */
.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-weight: bold;
  font-size: 22px;
  color: #1e3a8a;
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
}

/* Name */
.testimonial h3 {
  margin: 15px 0 5px;
  color: #1e3a8a;
}

/* Stars */
.stars {
  color: #f59e0b;
  margin-bottom: 15px;
}

/* Text */
.testimonial p {
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: #222;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* Arrows */
.testimonial-container .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 45px;
    height: 45px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonial-container .prev { 
    left: -60px;
    border:2px solid #cccccc50; 
    width: 50px;
    height: 50px;
    padding:0;
    padding-left: 10px;
}
.testimonial-container .prev i{ 
    text-align: center;
    line-height: 50px;
}
.testimonial-container .next { 
    right: -60px;
     border:2px solid #cccccc50; 
    width: 50px;
    height: 50px;
     padding:0;
     padding-left: 10px;
     }
.testimonial-container .next i{ 
    text-align: center;
    line-height: 50px;
}
/* Dots */
.testimonial-container .dots {
  margin-top: 30px;
}

.testimonial-container .dots span {
  display: inline-block;
  width: 20px;
  height: 4px;
  background: #d1d5db;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
}

.testimonial-container .dots .active {
  background: #f59e0b;
}

.testimonial-container .quote-icon.rotate {
  transform: rotate(180deg);
}

/* Section Background */
.contact-strip {
  background: linear-gradient(135deg, #1e2a5a, #2b2f6b);
  padding: 40px 0;
}

/* Container */
.topfooter{
  background: linear-gradient(135deg, #1e2a5a, #2b2f6b);
}
.contact-container {
  
  margin: auto;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Card */
.contact-card {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}
.contact-card a{
    color: #ffffff;
}
.contact-card:hover {
  border: 1px solid #f59e0b;
  box-shadow: 0 0 15px rgba(209, 187, 66, 0.5);
}
/* Icon Box */
.contact-card .icon-box {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}

/* Text */
.contact-card .content span {
  display: block;
  font-size: 14px;
  color: #cbd5f5;
  margin-bottom: 3px;
}

.contact-card .content h4 {
  margin: 0;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

/* Hover Effect */
.contact-card .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

footer{
    padding: 40px 0;
     background: linear-gradient(135deg, #1e2a5a, #2b2f6b);
}


/* Underline */
.underline {
  width: 40px;
  height: 3px;
  background: #f59e0b;
  margin-bottom: 15px;
}

/* Text */
.highlight {
  color: #facc15;
}

.sub,
.desc {
  color: #cbd5f5;
}

/* Social Icons */
.socials a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: #fff;
  transition: 0.3s;
}

.socials a:hover {
  background: #f59e0b;
  border-color: #f59e0b;
}

/* Lists */
.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}
.footer-list li a{
  color: #cbd5f5;
  font-size: 16px;
}
.footer-list li a:hover{
    color: white;
}

/* Bullet */
.footer-list li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  background: var(--color2);
  color: #f59e0b;
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 100%;
}

/* Active */
.footer-list li.active {
  color: #facc15;
  font-weight: 600;
}
.footermid h2{
    color: white;
    font-family: var(--playfont);
}
.footermid h3{
    color: white;
    font-family: var(--playfont);
}


.clinic-location {
  margin-top: 35px;
  color: #fff;
}
.location-details{
    padding: 30px;
}
.section-title {
  font-size: 28px;
  font-weight: 600;
  position: relative;
  font-family: var(--playfont);
}

.section-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #fbbf24;
  display: block;
  margin-top: 8px;
}

.location-box {
  background: rgba(255,255,255,0.05);

  border-radius: 10px;
}

.location-details h5 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
}

.location-details h5 i{
    font-size: 20px;
}
.location-details p {
  margin-bottom: 10px;
  color: #d1d5db;
  position: relative;
  padding-left: 30px;
}

.location-details p i.bi-dot{
    background: #54482d;
    height: 15px;
    border-radius: 100%;
    font-size: 15px;

    line-height: 15px;
    width: 15px;
    text-align: center;
}
.location-details i {
  color: #fbbf24;
  position: absolute;
  margin-right: 8px;
  left: 0;
  font-size: 18px;
}

.location-details a {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 500;
}

.map-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.map-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e0f2fe;
  color: #000;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 5px;
  text-decoration: none;
}

.map-btn:hover {
  background: #bae6fd;
}
.footercopy p{
    color: #fff;
    font-size: 0.9rem;
    font-weight: 300;
    padding-top: 1.5rem;
    margin-bottom: 0;
}
.footercopy p a{
    color: white;
    margin: 0 15px;
}
.footercopy p a:hover{
    color: var(--color2);
}
.frgt{
    text-align: right;
}
.pagebanner{
    background: var(--color1);
    padding: 2rem 0;
}
.pagebanner h1{
    text-align: center;
    color: #fff;
    font-family: var(--playfont);
}
.pagebanner p{
    margin-bottom: 0;
     color: #fff;
    text-align: center;
    font-size: 14px;
}
.contactpg {
    padding: 4rem 0;
}

.appointment-card {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  width: 100%;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0,0,0,0.08);
  position: relative;
}

/* ICON */
.appointment-card .icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -60px auto 15px;
  color: #fff;
  font-size: 28px;
}

/* TITLE */
.appointment-card h2 {
  font-weight: 600;
  color: #2c2c54;
  font-family: var(--playfont);
}

.subtitle {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 25px;
}

/* INPUT */
.custom-input {
  background: #f3f4f6;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
}

.custom-input span {
  margin-right: 8px;
  color: #9ca3af;
}

.custom-input input,
.custom-input textarea {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
}

.custom-input textarea {
  height: 100px;
  resize: none;
}

/* LABEL */
label {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  text-align: left;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

.submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.eh-clinic-wrap {
  /*background: #f3f4f6;*/
  padding: 40px 15px;
  display: flex;
  justify-content: center;
}

.eh-clinic-card {
  background: #fff;
  border-radius: 15px;
  
  width: 100%;
  box-shadow: 0 0 15px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* INFO */
.eh-clinic-info {
  padding: 25px;
}

.eh-clinic-info h5 {
  font-weight: 600;
  color: #1f2a44;
  position: relative;
  padding-left: 55px;
  margin-bottom: 0;
  line-height: 1.4;
}

.eh-clinic-info h5 span{
    font-size: 15px;
    font-weight: 400;
    color: #222222;
}
.eh-clinic-info h5 i {
  color: #ffffff;
  position: absolute;
  margin-right: 8px;
  width: 2.8rem;
  height: 2.8rem;
  line-height: 2.8rem;
  text-align: center;
  background: var(--color2);
  border-radius: 5px;
  left: 0;
}

.eh-clinic-info p {
  color: #6b7280;
  margin: 10px 0 15px;
  font-size: 14px;
}

/* BADGES */
.eh-badge {
  background: #f1f5f9;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: #334155;
  margin-left: 50px;
}

.eh-badge i {
  color: #64748b;
  margin-right: 5px;
}

.eh-phone {
  background: #fff7ed;
}

.eh-phone i {
  color: #f97316;
}

.eh-phone a {
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
}

/* MAP */
.eh-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}
.blogpg{
    padding: 5rem 10rem;
}

.eh-blog-card {
  margin-top: 40px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  position: relative;
  transition: 0.4s ease;
}

/* IMAGE */
.eh-card-img {
  overflow: hidden;
  height: 230px;
}

.eh-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* CONTENT */
.eh-card-content {
  padding: 20px;
}

.eh-card-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2a44;
  margin-bottom: 12px;
}

.eh-author {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 20px;
}

.eh-author i {
  color: #f97316;
  margin-right: 6px;
}

/* FOOTER */
.eh-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.eh-readmore {
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
}

.eh-readmore span {
  margin-left: 6px;
  transition: 0.3s;
}

/* ROUND BUTTON */
.eh-arrow-btn {
  width: 40px;
  height: 40px;
  background: var(--color2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.eh-arrow-btn a{
  color: #fff!important;

}

/* HOVER EFFECTS */
.eh-blog-card:hover .eh-card-img img {
  transform: scale(1.08);
}

.eh-blog-card:hover .eh-readmore span {
  margin-left: 10px;
}

/* YELLOW BORDER ANIMATION */
.eh-blog-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0%;
  background: #facc15;
  transition: width 0.4s ease;
}

.eh-blog-card:hover::after {
  width: 100%;
}
.blogtext{
    box-shadow: 0 0 10px #00000045;
    padding: 35px;
    border-radius: 20px;
}
.blogtext h1{
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 600;
    color: var(--color1);
    padding-bottom: 5px;
}
.blogtext p{
    color: #444444;
}
.blogtext h2{
    font-size: 1.5rem;
    margin: 10px 0 15px 0;
    font-weight: 500;
    color: var(--color1);
}
.blogtext h3{
    font-size: 1.1rem;
    font-weight: 600;
    color: #303030;
}
.blogtext ul li::marker{
    color: var(--color2);
    font-size: 18px;
}
.blogtext ul li{
    color:#333;
}
.lastpara{
    padding: 20px;
    background: var(--color1);
    color:#fff!important;
    font-weight: 600;
    border-radius: 10px;
}
.textimg{
    border: 1px dashed var(--color2);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.stages-wrapper-x9 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 25px;
}

.stage-card-x9 {
  padding: 20px 25px;
  background: #f9f9f9;
  border-left: 4px solid;
}

.stage-card-x9 h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.stage-card-x9 p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* Unique border colors */
.stage-i-x9 {
  border-color: #f39c12; /* orange */
}

.stage-ii-x9 {
  border-color: #f1c40f; /* yellow */
}

.stage-iii-x9 {
  border-color: #2c3e50; /* dark blue */
}

.stage-iv-x9 {
  border-color: #5dade2; /* light blue */
}

/* Responsive */
@media (max-width: 768px) {
  .stages-wrapper-x9 {
    grid-template-columns: 1fr;
  }
}
.gallery-x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-x2 img {
  width: 100%;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.3s;
}

.gallery-x2 img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox-x2 {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
}

.lightbox-content-x2 {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.close-x2 {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
}

.table-responsive-x1 {
  width: 100%;
  overflow-x: auto;
}

.custom-table-x1 {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
  font-family: Arial, sans-serif;
}

.custom-table-x1 th {
  background: var(--color1);
  color: #fff;
  padding: 12px;
  text-align: left;
}

.custom-table-x1 td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

.custom-table-x1 tr:nth-child(even) {
  background: #f9f9f9;
}

.custom-table-x1 tr:hover {
  background: #f1f1f1;
}

/* Mobile view */
@media (max-width: 600px) {
  .custom-table-x1 th,
  .custom-table-x1 td {
    padding: 10px;
    font-size: 14px;
  }
}

.yt-card-x1 {
    margin-top: 25px;
  /*width: 320px;*/
  border-radius: 16px;
  border:1px solid #cccccc50;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.yt-img-wrap-x1 {
  position: relative;
  x
}

.yt-img-wrap-x1 img {
  width: 100%;
  display: block;
}

/* Overlay */
.yt-overlay-x1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 70px;
  height: 70px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}

.yt-overlay-x1 i {
  color: #fff;
  font-size: 26px;
}

/* Hover effect */
.yt-card-x1:hover .yt-overlay-x1 {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Content */
.yt-content-x1 {
  padding: 20px;
}

.yt-content-x1 h4 {
  color: #3d3d8f;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.yt-content-x1 p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0;
}
.videosec {
    padding: 4rem 0;
}

.pub-section-x {
  padding: 4.5rem;
  background: #f7f8fc;
}

.pub-wrapper-x {
  position: relative;
  padding-left: 60px;
    

}

.pub-wrapper-x::before {
  content: "";
  position: absolute;
  left: 75px;
  top: 0;
  width: 3px;
  height: 100%;
  background: #e1e3f0;
}

/* Item */
.pub-item-x {
  position: relative;
  margin-bottom: 30px;
}

/* Icon */
.pub-icon-x {
  position: absolute;
  left: -5px;
  top: 10px;
  width: 50px;
  height: 70px;
  background: #4b3f72;
  color: #fff;
  border-radius: 0 10px 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 2;
}

/* Yellow strip */
.pub-icon-x::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0;
  width: 6px;
  height: 100%;
  background: #ffc107;
  
}

/* Card */
.pub-card-x {
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-left: 40px;
  transition: 0.3s;
}

.pub-card-x:hover {
  transform: translateY(-5px);
}

/* Text */
.pub-card-x p {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
  font-family: var(--roboto);

}

.pub-card-x span {
  display: block;
  font-weight: 600;
  margin-top: 10px;
  font-size: 15px;
  color: var(--color1);
  font-style: italic;
}

.review-card-x {
    height: 320px;
  background: #fff7ed; /* very light orange */
  padding: 25px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  margin-top: 25px;
}

/* bottom hover line */
.review-card-x::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0%;
  background: #f59e0b; /* orange */
  transition: 0.4s ease;
}

.review-card-x:hover::after {
  width: 100%;
}

/* top section */
.review-top-x {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar-x {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-name-x {
  font-weight: 600;
  color: #1f2937;
  font-size: 1.2rem;
  font-family: var(--playfont);
}

/* stars */
.review-stars-x {
  color: #f59e0b;
  margin-bottom: 10px;
}

/* text */
.review-text-x {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  position: relative;
}

/* quotes */
.quote-x {
  color: var(--color2);
  font-size: 18px;
  font-weight: bold;
}

.testisec{
    padding: 4.5rem 0;
}
.presentsec{
    padding: 4.5rem 0;
}

.counter-section-x {
  padding: 40px 0;
}

.counter-box-x {
  background: #f3f4f6;
  padding: 30px 10px;
  border-radius: 15px;
}

.counter-item-x h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2a44;
  margin-bottom: 5px;
}

.counter-item-x p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

.conf-section-x {
  max-width: 900px;
  margin: auto;
  font-family: var(--roboto);
}

.conf-title-x {
  font-size: 24px;
  font-family: var(--playfont);
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}


.conf-title-x::after {
  content: "";
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #6b5c9f, #d7b123);
  position: absolute;
  left: 0;
  bottom: -8px;
}

.conf-item-x {
  display: flex;
  gap: 30px;
  padding: 20px 0;
  position: relative;
}

.conf-left-x {
  width: 120px;
  position: relative;
}

.conf-left-x h3 {
  font-size: 22px;
  margin: 0;
  font-weight: 700;
}

.conf-dot-x {
  width: 10px;
  height: 10px;
  background: #f4a100;
  border-radius: 50%;
  position: absolute;
  left: -18px;
  top: 8px;
}

.conf-badge-x {
  display: inline-block;
  margin-top: 10px;
  background: #e6efff;
  color: #3a6df0;
  font-weight: 600;
  padding: 5px 20px;
  border-radius: 20px;
  font-family: var(--roboto);
  font-size: 12px;
}

.conf-right-x {
  flex: 1;
}

.conf-right-x h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.conf-sub-x {
  margin: 8px 0;
  color: #444;
  font-size: 15px;
}

.conf-location-x {
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
}

.conf-tag-x {
  display: inline-block;
  border: 1px solid var(--color2);
  color: var(--color2);
  padding: 4px 12px;
  font-weight: 400;
  border-radius: 20px;
  font-size: 13px;
}

.conf-divider-x {
  height: 1px;
  background: #eee;
  margin: 10px 0;
}

.award-list-x {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.award-item-x {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.award-icon-x {
  width: 50px;
  height: 50px;
  background: #f4a62a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.award-content-x {
  flex: 1;
}

.award-content-x h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1c2b4a;
}

.award-sub-x {
  margin: 5px 0;
  color: #f39c12;
  font-weight: 500;
}

.award-loc-x {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.award-year-x {
  font-weight: 600;
  color: #7a86a1;
  min-width: 50px;
  text-align: right;
}
.awardsec{
    padding: 4rem 80px;
}
.cert-gallery-ux9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.cert-card-ux9 {
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  cursor: pointer;
}

.cert-card-ux9:hover {
  transform: translateY(-6px);
}

.cert-img-ux9 img {
  width: 100%;
  border-radius: 10px;
}

.cert-card-ux9 h4 {
  margin-top: 15px;
  font-size: 16px;
  color: #1c2b4a;
}

/* Lightbox */
.lightbox-ux9 {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
}

.lightbox-img-ux9 {
  display: block;
  margin: auto;
  max-width: 85%;
  max-height: 85%;
  border-radius: 10px;
}

.close-ux9 {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* Certificates */
.certificatesec{
    padding: 4rem;
}
.cert-grid-cx {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.cert-box-cx {
  background: #fff;
  padding: 15px;
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
    border: 2px solid #f4a62a;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.cert-box-cx p{
    font-size: 18px;
    padding: 15px 0;
    padding-bottom: 0;
    font-weight: 500;
    color: var(--color1);
    margin-bottom: 0;
}
.cert-box-cx:hover {
  transform: translateY(-6px);
}

.cert-box-cx img {
  width: 100%;
    border: 1px solid #cccccc85;
  border-radius: 10px;
}

/* Lightbox */
.cx-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.cx-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
}

.cx-image {
  position: relative;
  max-width: 85%;
  max-height: 85%;
  border-radius: 12px;
  transform: scale(0.8);
  opacity: 0;
  transition: 0.4s ease;
}

.cx-lightbox.show .cx-image {
  transform: scale(1);
  opacity: 1;
}

.cx-close {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.cx-drhero-wrap {
  padding: 60px;
  color: #ffffff;
  
  border-radius: 14px;
  max-width: 900px;
  font-family: var(--roboto);
}

/* Badge */
.cx-drhero-badge {
  display: inline-block;
  padding: 6px 16px;
  font-weight: 600;
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* Name */
.cx-drhero-name {
  font-size: 52px;
  margin: 0;
  font-family: var(--playfont);
  font-weight: 600;
}

.cx-drhero-name span {
  color: #ffcc33;
}

/* Titles */
.cx-drhero-title {
  color: #ffd54f;
  margin-top: 14px;
  margin-bottom: 4px;
  font-weight: 600;
}

.cx-drhero-subtitle {
  color: #cfd2ff;
  padding-top: 5px;
  margin-bottom: 26px;
  font-size: 18px;
}

/* List */
.cx-drhero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 38px;
}

.cx-drhero-list li {
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
  color: #e4e6ff;
  font-size: 14px;
}

.cx-drhero-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffcc33;
  font-size: 14px;
}

/* Stats */
.cx-drhero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cx-drhero-card {
  flex: 1;
  min-width: 180px;
  padding: 24px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.cx-drhero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.cx-drhero-card h2 {
  margin: 0;
  font-size: 45px;
  font-weight: 600;
  color: #ffcc33;
}

.cx-drhero-card p {
  margin-top: 6px;
  font-size: 14px;
  margin-bottom: 0;
  color: #d6d9ff;
}
.abouttop{
   background: linear-gradient(135deg, #3a3d73, #25285a);
}
.cx-docimg-frame {
  display: inline-block;
  padding: 10px;
  border-radius: 22px;

  /* Gradient border */
  background: linear-gradient(135deg, #c8a97e, #9f8a5a);

  /* Optional shadow for premium feel */
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.cx-docimg-inner {
  background: #e9e9e9;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.cx-docimg-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.abouttop{
    padding: 2rem 0;
}

/* Section */
.cx-care-section {
  padding: 4rem 0;
  font-family: var(--roboto);
}

/* Heading with lines */
.cx-care-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.cx-care-heading h2 {
  font-size: 34px;
  color: #2f3a63;
  font-family: var(--playfont);
  font-weight: 600;
  margin: 0;
}

.cx-care-heading span {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #caa96b, transparent);
}

/* Card */
.cx-care-card {
  max-width: 1024px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cx-care-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Quote Box */
.cx-care-quote {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 25px;
  padding: 18px;
  background: #fff7ec;
  border-left: 4px solid #f4a62a;
  border-radius: 8px;
}

.cx-care-quote-icon {
  font-size: 20px;
  color: #f4a62a;
  margin-top: 2px;
}

.cx-care-quote p {
  margin: 0;
  font-size: 25px;
  font-style: italic;
  color: #333;
  font-weight: 500;
}

.cx-care-quote span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #777;
}

.cx-edu-wrap {
  padding: 70px 20px;
  background: linear-gradient(135deg, #2c2f63, #1f224a);
  color: #fff;
  font-family: var(--roboto);
  position: relative;
  overflow: hidden;
}

/* Header */
.cx-edu-header {
  text-align: center;
  margin-bottom: 50px;
}

.cx-edu-header h2 {
  font-size: 44px;
  margin: 0;
  font-family: var(--playfont);
  font-weight: 600;
}

.cx-edu-header p {
  font-size: 15px;
  color: #ffffff;
  margin-top: 8px;
}

/* Grid */
.cx-edu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

/* Card */
.cx-edu-card {
  display: flex;
  gap: 15px;
  padding: 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  transition: 0.3s;
}

.cx-edu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Icon */
.cx-edu-icon {
  min-width: 45px;
  height: 45px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffb347, #ff8c00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

/* Tag */
.cx-edu-tag {
  font-size: 15px;
  color: #ffc107;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Text */
.cx-edu-card h3 {
  margin: 4px 0;
  font-family: var(--playfont);
  font-size: 18px;
}

.cx-edu-card p {
  margin: 0;
  font-size: 14px;
  color: #d6d9ff;
}

/* Responsive */
@media (max-width: 768px) {
  .cx-edu-grid {
    grid-template-columns: 1fr;
  }
}

.cx-exp-wrap {
  padding: 70px 20px;
  background: #f4f6f9;
  font-family:var(--roboto);
}

/* Header */
.cx-exp-header {
  text-align: center;
  margin-bottom: 50px;
}

.cx-exp-header h2 {
  font-size: 44px;
  margin: 0;
  color: #2f3566;
  font-weight: 600;
  font-family: var(--playfont);
}

.cx-exp-header p {
  margin-top: 10px;
  color: #6c7293;
  font-size: 16px;
}

/* Grid */
.cx-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* Card */
.cx-exp-card {
  background: #ffffff;
  padding: 30px 22px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.cx-exp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* Icon */
.cx-exp-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffa726, #fb8c00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #fff;
  margin-bottom: 18px;
}

/* Title */
.cx-exp-card h3 {
  font-size: 22px;
  line-height: 1.6;
  color: #2f3566;
  margin-bottom: 10px;
  font-family: var(--playfont);
}

/* Text */
.cx-exp-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .cx-exp-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .cx-exp-grid {
    grid-template-columns: 1fr;
  }
}



.cx-aff-wrap {
  padding: 2.5em 0;
  background: #f4f6f9;
  font-family: var(--roboto);
}

/* Header */
.cx-aff-header {
  text-align: center;
  margin-bottom: 50px;
}

.cx-aff-header h2 {
  font-size: 42px;
  font-family: var(--playfont);
  color: #2f3566;
  margin: 0;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.cx-aff-header h2::before,
.cx-aff-header h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: #2f3566;
}

.cx-aff-header h2::before {
  left: -70px;
}

.cx-aff-header h2::after {
  right: -70px;
}

.cx-aff-header p {
  margin-top: 12px;
  font-size: 15px;
  color: #6c7293;
}

/* List */
.cx-aff-list {
  max-width: 900px;
  margin: auto;
}

/* Item */
.cx-aff-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 28px;
}

/* Left accent line */
.cx-aff-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 24px;
  background: #f59e0b;
  border-radius: 2px;
}

/* Title */
.cx-aff-item h3 {
  margin: 0;
  font-size: 22px;
  font-family: var(--playfont);
  color: #2f3566;
  font-weight: 600;
}

/* Badge */
.cx-aff-item h3 span {
  margin-left: 10px;
  font-size: 15px;
  background: #e5e7eb;
  padding: 3px 8px;
  border-radius: 12px;
  color: #555;
}

/* Text */
.cx-aff-item p {
  margin: 6px 0 0;
  font-size: 15px;
  color: #666;
}

.cx-cta-wrap {
  padding: 4rem 10px;
  background:linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)), url('../images/ctabg.jpg');
  background-position: right center;
  background-size: cover;
  text-align: center;
  font-family: var(--roboto);
}

/* Inner */
.cx-cta-inner {
  margin: auto;
}

/* Icon */
.cx-cta-icon {
  font-size: 36px;
  color: #2f3566;
  margin-bottom: 10px;
}

/* Heading */
.cx-cta-inner h2 {
  font-size: 45px;
  font-family: var(--playfont);
  color: #2f3566;
  margin: 10px 0;
  position: relative;
  display: inline-block;
}

/* Lines */
.cx-cta-inner h2::before,
.cx-cta-inner h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: #caa96b;
}

.cx-cta-inner h2::before {
  left: -70px;
}

.cx-cta-inner h2::after {
  right: -70px;
}

/* Text */
.cx-cta-inner p {
  color: #333333;
  font-size: 16px;
  max-width: 700px;
  margin: 10px auto 30px;
  line-height: 1.6;
}

/* Buttons */
.cx-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.cx-cta-btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

/* Primary */
.cx-cta-btn.primary {
  background: #3b3f7a;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.cx-cta-btn.primary:hover {
  background: #2c2f63;
}

/* Outline */
.cx-cta-btn.outline {
  border: 1px solid #3b3f7a;
  color: #3b3f7a;
}

.cx-cta-btn.outline:hover {
  background: #3b3f7a;
  color: #fff;
}

/* Divider */
.cx-cta-divider {
  height: 1px;
  background: #ddd;
  margin: 40px 0;
}

/* Contact Cards */
.cx-cta-contact {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cx-cta-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  min-width: 250px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.cx-cta-box-icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: auto;
  font-size: 25px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffa726, #fb8c00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 10px;
}

.cx-cta-box-icon.dark {
  background: #3b3f7a;
}

.cx-cta-box p {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  color: var(--color1);
}

/* Responsive */
@media (max-width: 600px) {
  .cx-cta-inner h2::before,
  .cx-cta-inner h2::after {
    display: none;
  }
}

/* Wrapper */
.cx-wht-wrap {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Pulse effect */
.cx-wht-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  animation: cx-wht-pulse-anim 2s infinite;
}

@keyframes cx-wht-pulse-anim {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Button */
.cx-wht-btn {
  position: relative;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 2;
  transition: 0.3s;
}

.cx-wht-btn:hover {
  transform: scale(1.1);
}


.cx-wht-wrap {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Pulse effect */
.cx-wht-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  animation: cx-wht-pulse-anim 2s infinite;
}

@keyframes cx-wht-pulse-anim {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Button */
.cx-wht-btn {
  position: relative;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 2;
  transition: 0.3s;
}

.cx-wht-btn:hover {
  transform: scale(1.1);
}



/* Wrapper 2 */
.cx-call-wrap {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 65px;
  height: 65px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Pulse effect */
.cx-call-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
   background: rgba(49, 105, 237, 0.4);
  border-radius: 50%;
  animation: cx-wht-pulse-anim 2s infinite;
}

@keyframes cx-wht-pulse-anim {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Button */
.cx-call-btn {
  position: relative;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #2462ea, #0e40ae);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 2;
  transition: 0.3s;
}

.cx-call-btn:hover {
  transform: scale(1.1);
}


.cx-call-wrap {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Pulse effect */
.cx-call-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
   background: rgba(16, 92, 10, 0.4);
  border-radius: 50%;
  animation: cx-wht-pulse-anim 2s infinite;
}

@keyframes cx-wht-pulse-anim {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Button */
.cx-call-btn {
  position: relative;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #0e40ae, #103898);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 2;
  transition: 0.3s;
}

.cx-wht-btn:hover {
  transform: scale(1.1);
}

/* Side yellow indicator */
.cx-wht-side {
  position: fixed;
  right: 0;
  bottom: 120px;
  width: 6px;
  height: 50px;
  background: #f59e0b;
  border-radius: 4px 0 0 4px;
  z-index: 998;
}


.cx-bread-wrap {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2c2f63, #10307a);
  color: #fff;
  font-family: var(--roboto);
}

/* Tag */
.cx-bread-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  margin-bottom: 20px;
}

/* Title */
.cx-bread-title {
  font-size: 46px;
  margin: 0;
  font-family: var(--playfont);
  font-weight: 600;
}

.cx-bread-title span {
  background: linear-gradient(90deg, #ffcc33, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.cx-bread-sub {
  margin-top: 5px;
  max-width: 600px;
  color: #d6d9ff;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
  .cx-bread-title {
    font-size: 30px;
  }
}

.cx-serv-wrap {
  width: 100%;
  background: #f4f6f9;
  border-radius: 14px;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Header */
.cx-serv-header {
  background: linear-gradient(135deg, #2c2f63, #1f224a);
  color: #fff;
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.cx-serv-header i {
  font-size: 22px;
}

.cx-serv-header h3 {
  margin: 0;
  font-size: 30px;
  font-family: var(--playfont);
}

.cx-serv-header p {
  margin: 2px 0 0;
  font-size: 12px;
  color: #cfd2ff;
}

/* List */
.cx-serv-list {
  list-style: none;
  margin: 0;
  padding: 10px;
  
  overflow-y: auto;
}

/* Custom Scrollbar */
.cx-serv-list::-webkit-scrollbar {
  width: 6px;
}

.cx-serv-list::-webkit-scrollbar-thumb {
  background: #f59e0b;
  border-radius: 4px;
}

/* Item */
.cx-serv-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  margin: 0.8rem 0;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

/* Icon */
.cx-serv-item i {
  font-size: 18px;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  text-align: center;
  line-height: 30px;
  background: #cccccc40;
  color: #6c7293;
}

/* Text */
.cx-serv-item h4 {
  margin: 0;
  font-size: 18px;
  color: #2f3566;
}

.cx-serv-item span {
  font-size: 11px;
  color: #888;
}

/* Hover */
.cx-serv-item:hover {
  background: #ffffff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* Active */
.cx-serv-item.active {
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  border-left: 3px solid #f59e0b;
}

.cx-serv-item.active i {
  color: #2c2f63;
}

.cx-serv-item.active .cx-arrow {
  margin-left: auto;
  color: #f59e0b;
}

/* Arrow */
.cx-arrow {
  margin-left: auto;
  font-size: 14px;
  opacity: 0;
  transition: 0.3s;
}

/* Show arrow on hover */
.cx-serv-item:hover .cx-arrow {
  opacity: 1;
}
.servicepg{
    padding: 4rem 0;
}

.cx-bc-wrap {
  font-family: var(--roboto);
}

/* Card */
.cx-bc-card {
  margin: auto;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Image */
.cx-bc-img {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.cx-bc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay title */
.cx-bc-img h2 {
  position: absolute;
  bottom: 15px;
  left: 20px;
  font-family: var(--playfont);
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

/* Content */
.cx-bc-content {
  padding: 25px;
}

.cx-bc-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 16px;
}

.cx-proc-wrap {
  padding: 50px 0;
  font-family: var(--roboto);
}

/* Header */
.cx-proc-header {
  
  margin: auto;
  margin-bottom: 30px;
}

.cx-proc-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cx-proc-icon {
  background: #f59e0b;
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cx-proc-header h2 {
  margin: 0;
  font-size: 28px;
  color: #2f3566;
  font-weight: 600;
  font-family: var(--playfont);
}

.cx-proc-header p {
  margin-top: 6px;
  color: var(--color1);
  font-size: 16px;
}

/* Card */
.cx-proc-card {
  
  margin: 15px auto;
  display: flex;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.cx-proc-card:hover {
  transform: translateY(-5px);
}

/* Icon */
.cx-proc-card-icon {
  min-width: 36px;
  height: 36px;
  background: #f59e0b;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title */
.cx-proc-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-family: var(--playfont);
  color: #2f3566;
}

/* Highlight first */
.cx-proc-card.highlight h3 {
  color: #f59e0b;
}

/* Text */
.cx-proc-card p {
  margin: 0;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 600px) {
  .cx-proc-card {
    flex-direction: column;
  }
}

.cx-treat-wrap {
  font-family: var(--roboto);
}

/* Card */
.cx-treat-card {
  margin: auto;
  padding: 35px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2c2f63, #1f224a);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Title */
.cx-treat-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.cx-treat-icon {
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 10px;
  font-size: 18px;
}

.cx-treat-title h2 {
  margin: 0;
  font-size: 30px;
  font-family: var(--playfont);
}

/* Content */
.cx-treat-content p {
  font-size: 16px;
  color: #d6d9ff;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Steps */
.cx-treat-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
}

/* Step Box */
.cx-step-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: 0.3s;
}

.cx-step-box:hover {
  background: rgba(255,255,255,0.12);
}

/* Number */
.cx-step-box span {
  width: 28px;
  height: 28px;
  background: #f59e0b;
  color: #fff;
  font-size: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text */
.cx-step-box p {
  margin: 0;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 600px) {
  .cx-treat-steps {
    grid-template-columns: 1fr;
  }
}

.cx-why-wrap {
    padding: 50px 0;
    font-family: var(--roboto);
}

/* Header */
.cx-why-header {
  
  margin: auto;
  margin-bottom: 35px;
}

.cx-why-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cx-why-icon {
  background: #f59e0b;
  color: #fff;
  padding: 8px;
  border-radius: 8px;
  display: flex;
}

.cx-why-header h2 {
  margin: 0;
  font-family: var(--playfont);
  font-size: 26px;
  color: #2f3566;
}

.cx-why-header p {
  margin-top: 6px;
  font-size: 14px;
  color: #6c7293;
}

/* Grid */
.cx-why-grid {
  
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Card */
.cx-why-card {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  position: relative;
}

.cx-why-card:hover {
  transform: translateY(-6px);
}

/* Icon */
.cx-why-card-icon {
  width: 36px;
  height: 36px;
  background: #fff4e5;
  color: #f59e0b;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* Title */
.cx-why-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #2f3566;
  font-family: var(--playfont);
}

/* Text */
.cx-why-card p {
  margin: 0;
  font-size: 15px;
  color: #333333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 700px) {
  .cx-why-grid {
    grid-template-columns: 1fr;
  }
}

.cx-cta2-wrap {
  font-family: var(--roboto);
}

/* Box */
.cx-cta2-box {
  
  margin: auto;
  text-align: center;
  padding: 40px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fbb034, #ff7e00);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Heading */
.cx-cta2-box h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  font-family: var(--playfont);
}

/* Text */
.cx-cta2-box p {
  margin: 10px auto 25px;
  font-size: 15px;
  max-width: 600px;
  color: rgba(255,255,255,0.9);
}

/* Buttons */
.cx-cta2-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Base Button */
.cx-cta2-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

/* White Button */
.cx-cta2-btn.light {
  background: #fff;
  color: #ff7e00;
  font-weight: 500;
}

.cx-cta2-btn.light:hover {
  background: #f2f2f2;
}

/* Outline Button */
.cx-cta2-btn.outline {
  border: 1px solid rgba(255,255,255,0.8);
  color: #fff;
}

.cx-cta2-btn.outline:hover {
  background: rgba(255,255,255,0.15);
}

/* Button */
.cx-ap-open-btn {
  padding: 12px 20px;
  background: #ff9800;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Overlay */
.cx-ap-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.cx-ap-box {
  background: #fff;
  width: 90%;
  max-width: 420px;
  border-radius: 12px;
  padding: 20px;
  animation: cxApFadeIn 0.3s ease;
}

/* Header */
.cx-ap-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cx-ap-header h2{
    font-size: 28px;
    font-weight: 800;
    color: var(--color1);
    font-family: var(--playfont);
}

.cx-ap-close {
  font-size: 22px;
  cursor: pointer;
 width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50px;
    text-align: center;
    line-height: 30px;
    background: var(--color1);
    color: #fff;
}

/* Text */
.cx-ap-subtext {
  font-size: 16px;
  margin-bottom: 10px;
  color: #666;
}

/* Form */
.cx-ap-input,
.cx-ap-textarea {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border-radius: 2px;
  border: 1px solid #cccccc;
  font-size: 15px;
  font-weight: var(--roboto);
}

.cx-ap-textarea {
  height: 100px;
  resize: none;
}

/* Button */
.cx-ap-submit {
  margin-top: 15px;
  width: 100%;
  background: #ff9800;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* Animation */
@keyframes cxApFadeIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.gallerypg {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
}