
 body{
font-family:'Poppins',sans-serif;
background:#eef3f7;
}
.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Video */
.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Overlay (important for readability) */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* adjust light/dark */
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  top: 50%;
  transform: translateY(-50%);
}

.hero-content h1 {
  font-size: 48px;
  font-weight: bold;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 20px;
}

/* Button */
.hero-content .btn {
  background: #FF6B6B;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
}

/* Responsive */
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content p {
    font-size: 16px;
  }
}

/* TITLE */

.title{
font-size:44px;
font-weight:700;
color:#0f3c44;
margin-bottom:30px;
}

/* MAIN LAYOUT */

.welcome-layout{
position:relative;
max-width:900px;
margin:auto;
height:620px;
}
/* CENTER IMAGE */

.center-img{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:320px;
height:240px;
z-index:2;
}

.center-img img{
width:100%;
height:100%;

object-fit:cover;
border:10px solid white;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* CARDS */

.point{
position:absolute;
width:280px;
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
font-size:15px;
line-height:1.6;
color:#444;
text-align:center;
transition:0.3s;
}

.point:hover{
transform:translateY(-5px);
}

/* ICON */

.point i{
color:#ff4b4b;
font-size:26px;
margin-bottom:12px;
display:block;
}

/* POSITIONS */

.top{
top:0;
left:50%;
transform:translateX(-50%);
}

.left{
top:50%;
left:-40px;
transform:translateY(-50%);
}

.right{
top:50%;
right:-40px;
transform:translateY(-50%);
}

.bottom{
bottom:-170px;
left:50%;
transform:translateX(-50%);
width:320px;
}

/* HIGHLIGHT TEXT */

.point span{
color:#ff3b3b;
font-weight:600;
}

.center-img img{
animation:pulse 3s infinite;
}

@keyframes pulse{
0%{box-shadow:0 0 0 0 rgba(255,75,75,0.5);}
70%{box-shadow:0 0 0 25px rgba(255,75,75,0);}
100%{box-shadow:0 0 0 0 rgba(255,75,75,0);}
}
/* MOBILE RESPONSIVE (576px and below) */

@media (max-width:576px){

.title{
font-size:28px;
margin-bottom:30px;
padding:0 15px;
}

/* change layout */

.welcome-layout{
position:static;
height:auto;
display:flex;
flex-direction:column;
align-items:center;
gap:20px;
}

/* cards */

.point{
position:static;
width:100%;
max-width:350px;
padding:20px;
font-size:14px;
transform:none;
}

/* image */

.center-img{
position:static;
transform:none;
margin:10px 0;
}

.center-img img{
width:260px;
height:260px;
}

/* order */

.top{order:1;}

.left{order:3;}
.right{order:4;}
.bottom{order:5;}

}

.why-premium{
background:linear-gradient(135deg,#f6fbff,#fff7f7);
margin-top: 200px;

}
.why-premium{
position:relative;
overflow:hidden;
}

.premium-card{
position:relative;
z-index:2;
}

.premium-title{
font-size:40px;
font-weight:700;
color:#153243;
}

.premium-card{
background:rgba(255,255,255,0.75);
backdrop-filter:blur(10px);
border-radius:20px;
padding:40px 25px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.4s;
height:100%;
}

.premium-card:hover{
transform:translateY(-12px) scale(1.03);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.premium-icon{
width:80px;
height:80px;
margin:auto;
margin-bottom:20px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#ff7e5f,#ff4d4d);
color:white;
font-size:30px;
animation:floatIcon 3s ease-in-out infinite;
}

.premium-card h5{
font-weight:700;
margin-bottom:10px;
font-size:20px;
}

.premium-card p{
font-size:15px;
color:#666;
}

/* floating icon animation */

@keyframes floatIcon{

0%{transform:translateY(0px)}

50%{transform:translateY(-6px)}

100%{transform:translateY(0px)}

}
.balloons{
position:absolute;
width:100%;
height:100%;
top:0;
left:0;
overflow:hidden;
z-index:0;
}

.balloons span{
position:absolute;
bottom:-120px;
width:60px;
height:80px;
background:radial-gradient(circle,#ff7aa2,#ff4d6d);
border-radius:50%;
animation:balloonFloat 15s linear infinite;
opacity:0.4;
}

.balloons span:nth-child(1){
left:10%;
animation-duration:18s;
background:#ff9f43;
}

.balloons span:nth-child(2){
left:30%;
animation-duration:22s;
background:#54a0ff;
}

.balloons span:nth-child(3){
left:50%;
animation-duration:20s;
background:#5fdd96;
}

.balloons span:nth-child(4){
left:70%;
animation-duration:25s;
background:#feca57;
}

.balloons span:nth-child(5){
left:90%;
animation-duration:17s;
background:#ff6b6b;
}

@keyframes balloonFloat{

0%{
transform:translateY(0) rotate(0deg);
}

100%{
transform:translateY(-120vh) rotate(360deg);
}

}

/* =========================
   TABLET (≤ 768px)
========================= */
@media (max-width: 768px){

.premium-title{
font-size:30px;
}




.premium-card{
padding:30px 20px;
}

.premium-icon{
width:65px;
height:65px;
font-size:24px;
}

.premium-card h5{
font-size:18px;
}

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

/* reduce animation intensity */
.balloons span{
width:45px;
height:60px;
opacity:0.3;
}

.bubbles span{
width:15px;
height:15px;
}

}

/* =========================
   MOBILE (≤ 576px)
========================= */
@media (max-width: 576px){

.premium-title{
font-size:24px;
line-height:1.3;
padding:0 10px;
}
.why-premium{
margin: 10px;

}
/* cards spacing */
.premium-card{
padding:25px 18px;
border-radius:15px;
}

/* icon smaller */
.premium-icon{
width:55px;
height:55px;
font-size:20px;
margin-bottom:15px;
}

/* text adjustments */
.premium-card h5{
font-size:16px;
}

.premium-card p{
font-size:13px;
}

/* 🚨 IMPORTANT: reduce heavy animations for performance */
.balloons span{
width:35px;
height:50px;
opacity:0.2;
animation-duration:25s;
}

.bubbles span{
width:10px;
height:10px;
animation-duration:14s;
}

/* optional: reduce number of elements */
.balloons span:nth-child(4),
.balloons span:nth-child(5),
.bubbles span:nth-child(4),
.bubbles span:nth-child(5){
display:none;
}

}


/* SECTION */
.services-premium{
background:linear-gradient(135deg,#fdfbff,#f1f8ff);
}

.service-title{
font-size:40px;
font-weight:700;
color:#123;
}

/* FLIP CARD */
.flip-card{
perspective:1000px;
height:360px;
position:relative;
border-radius:20px;
overflow:hidden;
animation:floatCard 4s ease-in-out infinite;
border: 1px solid black;
}

/* GLOW BORDER */
.flip-card::before{
content:'';
position:absolute;
inset:-2px;
background:linear-gradient(45deg,#a18cd1,#6ec6ff,#ff9a9e,#5fdd96);
border-radius:20px;
z-index:0;
opacity:0;
transition:0.4s;
}

.flip-card:hover::before{
opacity:1;
animation:glowRotate 3s linear infinite;
}

@keyframes glowRotate{
0%{filter:hue-rotate(0deg)}
100%{filter:hue-rotate(360deg)}
}

/* INNER */
.flip-inner{
position:relative;
width:100%;
height:100%;
transition:transform 0.8s;
transform-style:preserve-3d;
z-index:2;
}

/* FLIP */
.flip-card:hover .flip-inner{
transform:rotateY(180deg);
}

.flip-card.active .flip-inner{
transform:rotateY(180deg);
}

/* FRONT */
.flip-front{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(135deg,#ffffff,#f7fbff);
border-radius:20px;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
padding:20px;
text-align:center;
backface-visibility:hidden;
}

/* ICON */
.cartoon-icon{
width:70px;
height:70px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
color:white;
margin-bottom:10px;
background:linear-gradient(135deg,#a18cd1,#6ec6ff);
box-shadow:0 6px 15px rgba(0,0,0,0.1);
animation:iconFloat 3s ease-in-out infinite;
}

/* IMAGE */
.service-img img{
width:300px;
height:200px;
border-radius:20%;
object-fit:cover;
margin:10px 0;
border:4px solid #fff;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

/* TITLE */
.flip-front h5{
font-size:18px;
font-weight:600;
color:#333;
}

/* BACK */
.flip-back{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(135deg,#a18cd1,#6ec6ff);
color:white;
border-radius:20px;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
padding:25px;
text-align:center;
transform:rotateY(180deg);
backface-visibility:hidden;
}

/* BUTTON */
.btn-read{
background:white;
color:#6ec6ff;
padding:8px 18px;
border-radius:20px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.btn-read:hover{
background:#000;
color:#fff;
}

/* FLOAT CARD */
@keyframes floatCard{
0%{transform:translateY(0)}
50%{transform:translateY(-8px)}
100%{transform:translateY(0)}
}

/* ICON FLOAT */
@keyframes iconFloat{
0%{transform:translateY(0)}
50%{transform:translateY(-6px)}
100%{transform:translateY(0)}
}

/* RESPONSIVE */

/* Tablet */
@media (max-width:768px){

.service-title{
font-size:30px;
}

.flip-card{
height:300px;
}

/* disable hover on mobile */


}

/* Mobile */
@media (max-width:576px){

.service-title{
font-size:24px;
}

.flip-card{
height:260px;
}

.cartoon-icon{
width:35px;
height:35px;
font-size:20px;
animation: none;
margin-top: 10px;
}

.service-img img{
width:270px;
height:170px;
}

.flip-front h5{
font-size:16px;
}

}

/* SECTION */
.hero-premium{
padding:80px 0;
background:linear-gradient(135deg,#f6fbff,#fff6f8);
overflow:hidden;
}

/* TITLE */
.hero-title{
font-size:48px;
font-weight:800;
color:#123;
}

.hero-title span{
color:#6ec6ff;
}

/* TEXT */
.hero-text{
margin:20px 0;
color:#555;
font-size:16px;
}

/* FEATURES */
.hero-features{
display:flex;
gap:20px;
flex-wrap:wrap;
margin-bottom:20px;
}

.hero-features div{
background:white;
padding:8px 15px;
border-radius:20px;
font-size:14px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.hero-features i{
color:#6ec6ff;
margin-right:5px;
}

/* BUTTONS */
.hero-buttons{
display:flex;
gap:15px;
}

.btn-primary{
background:linear-gradient(135deg,#6ec6ff,#a18cd1);
color:white;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.btn-primary:hover{
transform:scale(1.05);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.btn-outline{
border:2px solid #6ec6ff;
color:#6ec6ff;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
}

.btn-outline:hover{
background:#6ec6ff;
color:white;
}

/* IMAGE */
.hero-image-box{
position:relative;
}

.hero-image-box img{
width:100%;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,0.2);
}


/* ================= HERO MOBILE (≤576px) ================= */
@media (max-width: 576px) {

    .hero-premium {
        padding: 40px 0;
        text-align: center;
    }

    /* STACK CONTENT */
    .hero-premium .row {
        flex-direction: column-reverse;
        gap: 30px;
    }

    /* TEXT SIDE */
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-title span {
        display: block;
    }

    .hero-text {
        font-size: 0.95rem;
        margin-top: 10px;
        padding: 0 10px;
    }

    /* FEATURES */
    .hero-features {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
        font-size: 0.9rem;
    }

    .hero-features div {
        justify-content: center;
    }

    /* BUTTON */
    .hero-buttons {
        margin-top: 20px;
    }

    .btn-primary {
        width: 100%;
        padding: 12px;
        font-size: 0.95rem;
    }

    /* IMAGE SIDE */
    .hero-image-box {
        position: relative;
        max-width: 100%;
    }

    .hero-image-box img {
        width: 100%;
        border-radius: 18px;
    }

    /* FLOATING CARDS FIX */
    .floating-card {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .card1 {
        top: 10px;
        left: 10px;
    }

    .card2 {
        bottom: 10px;
        right: 10px;
    }
}




/* FLOATING CARDS */
.floating-card{
position:absolute;
background:white;
padding:10px 15px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
font-size:14px;
animation:float 4s ease-in-out infinite;
}

.card1{
top:20px;
left:-20px;
}

.card2{
bottom:20px;
right:-20px;
}

@keyframes float{
0%{transform:translateY(0)}
50%{transform:translateY(-10px)}
100%{transform:translateY(0)}
}

/* SECTION */
.specialist-section {
  padding: 30px 20px;
  background: #F7FAFC;
}

.wrapper {
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.specialist-title {
  text-align: center;
  font-size: 36px;
  color: #0F4C5C;
  margin-bottom: 50px;
  font-weight: 700;
}

/* CARD */
.specialist-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
  flex-wrap: wrap;
}

.specialist-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.specialist-image {
  flex: 1;
  text-align: center;
}

.specialist-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  transition: 0.4s;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.specialist-image img:hover {
  transform: scale(1.05);
}

/* CONTENT */
.specialist-content {
  flex: 1.2;
  min-width: 280px;
}

.doctor-name {
  font-size: 28px;
  color: #0F4C5C;
  font-weight: 700;
}

.doctor-degree {
  color: #FF6B6B;
  margin-bottom: 20px;
  font-weight: 500;
}

/* POINT GRID */
.specialist-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

/* POINT ITEM */
.point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 12px 15px;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-left: 4px solid #FF6B6B;
}

.point-item i {
  color: #FF6B6B;
  font-size: 18px;
}

/* HOVER */
.point-item:hover {
  background: #0F4C5C;
  color: white;
  transform: translateY(-3px);
}

.point-item:hover i {
  color: white;
}

/* BUTTON */
.read-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #FF6B6B;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.read-btn:hover {
  background: #0F4C5C;
}

/* ANIMATION */
.specialist-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .specialist-card {
    flex-direction: column;
    text-align: center;
  }

  .specialist-points {
    grid-template-columns: 1fr;
  }

}

.welcome-section{
  padding-top: 30px;
}

.image-slider{
margin-top:50px;
}

.award-card{
width:300px;
height:320px;
flex-shrink:0;
cursor:pointer;
}

.award-card img{
width:100%;
height:100%;
object-fit:cover;
border-radius:15px;
transition:0.9s;
}

.award-card:hover img{
transform:scale(1.05);
}

/* VIEW ALL BUTTON */

.view-all-awards{
margin-top:40px;
}

.view-all-btn{
display:inline-block;
background:linear-gradient(135deg,#d4af37,#f6d365);
color:#1f2d50;
padding:12px 30px;
border-radius:40px;
font-weight:600;
text-decoration:none;
transition:0.3s;
box-shadow:0 6px 15px rgba(212,175,55,0.35);
}

.view-all-btn:hover{
background:linear-gradient(135deg,#caa22e,#e9c65a);
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(212,175,55,0.45);
}

/* ================= IMAGE POPUP ================= */

.image-popup{
display:none;
position:fixed;
z-index:9999;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;
}

.popup-img{
max-width:90%;
max-height:90%;
border-radius:10px;
}

.close-btn{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}

/* ================= MOBILE ================= */

@media (max-width:576px){

.award-card{
width:180px;
height:140px;
}

}


.awards-section{
padding:60px 0;
background:#f7f9fc;
text-align:center;
overflow:hidden;
}

.awards-title{
font-family:'Playfair Display',serif;
font-size:36px;
font-weight:700;
color:#1f2d50;
margin-bottom:40px;
}

.awards-title i{
color:#d4af37;
margin:0 10px;
}

.awards-slider{
overflow:hidden;
width:100%;
position:relative;
}

.awards-track{
display:flex;
gap:30px;
width:max-content;
animation:scrollAwards 60s linear infinite;
}

.award-item{
display:flex;
align-items:center;
gap:10px;
background:#fff;
padding:14px 22px;
border-radius:40px;
border:1px solid #e5e7eb;
white-space:nowrap;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.award-item i{
color:#d4af37;
font-size:18px;
}

.award-item:hover{
background:#d4af37;
color:#fff;
transform:scale(1.05);
}

.award-item:hover i{
color:#fff;
}

@keyframes scrollAwards{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}

/* MOBILE RESPONSIVE */
@media (max-width:576px){

.awards-title{
font-size:24px;
}

.awards-track{
gap:15px;
animation:scrollAwards 60s linear infinite;
}

.award-item{
padding:10px 16px;
font-size:13px;
}

.award-item i{
font-size:14px;
}

}
