*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI;
}
.modal-box.special {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    animation: popup 0.3s ease;
}

.modal-box.special h2 {
    margin-bottom: 10px;
    font-size: 22px;
}

.modal-box.special p {
    color: #555;
    margin-bottom: 20px;
}

@keyframes popup {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.custom-dropdown {
  position: relative;
  width: 200px;
  user-select: none;
  cursor: pointer;
}
select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}
.custom-dropdown .options {
  display: none; /* hide initially */
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ccc;
  width: 100%;
  z-index: 100;
}

.custom-dropdown.active .options {
  display: block;
}

.custom-dropdown .option {
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
  position: relative;
}

/* Hover effect for Others */
.option.others {
  background: #f9f9f9;
}

/* Grid hidden by default */
.states-grid {
  display: none;
  position: absolute;
  top: 0; /* align to top of Others */
  left: 100%; /* show right side */
  width: 250px;
  padding: 10px;
  background: #fff;
  border: 1px solid #ccc;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.option.others:hover .states-grid {
  display: grid; /* show grid only on hover */
}

.states-grid div {
  padding: 5px;
  border: 1px solid #ddd;
  text-align: center;
  cursor: pointer;
}

.states-grid div:hover {
  background: #eee;
}
body{
background:#f5f7fb;
}

/* NAVBAR */











.navbar{
background:white;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
padding:12px 5%;
position:sticky;
top:0;
z-index:999;
}

.nav-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
}

/* LOGO */

.logo h2{
color:#ff6a00;
font-weight:700;
  font-size: 1.5rem; /* desktop default */
}

.logo span{
 font-size: 0.8rem;
color:gray;
}

@media(max-width:768px) {
    .logo h2 { font-size: 1.3rem; }
    .logo span { font-size: 0.7rem; }
}
/* LOCATION */

.location{
display:flex;
align-items:center;
gap:6px;
color:#444;
}

.location select{
border:none;
outline:none;
background:none;
font-weight:500;
}

/* SEARCH */

.search-bar{
flex:1;
display:flex;
max-width:500px;
border:1px solid #ddd;
border-radius:40px;
overflow:hidden;
background:#fafafa;
}
@media(max-width:1024px){ /* tablet */
    .search-bar {
        max-width: 350px;
    }
}
@media(max-width:768px){ /* small tablets / big phones */
    .search-bar {
        max-width: 250px;
    }
}
.search-bar input{
flex:1;
padding:10px 15px;
border:none;
outline:none;
background:none;
}

.search-bar button{
border:none;
background:#ff6a00;
color:white;
padding:0 18px;
cursor:pointer;
}

/* NAV LINKS */

.nav-links{
display:flex;
list-style:none;
gap:25px;
}

.nav-links a{
text-decoration:none;
color:#333;
font-weight:500;
transition:0.3s;
}
@media(max-width:900px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        background: white;
        display: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .nav-links.active {
        display: flex;
    }
}
.nav-links a:hover{
color:#ff6a00;
}

/* RIGHT */

.nav-right{
display:flex;
align-items:center;
gap:15px;
   flex-wrap: wrap; 
}

@media(max-width:768px){
    .nav-right {
        gap: 5px;
    }
}

.post-btn{
background:#ff6a00;
color:white;
border:none;
padding:10px 18px;
border-radius:30px;
cursor:pointer;
font-weight:500;
}

/* LOGIN BUTTON */

.login-btn{
background:transparent;
border:1.5px solid #ff6a00;
color:#ff6a00;
padding:8px 18px;
border-radius:30px;
cursor:pointer;
font-weight:500;
transition:all 0.35s ease;
}

.login-btn:hover{
background:#ff6a00;
color:white;
transform:translateY(-2px) scale(1.03);
box-shadow:0 8px 18px rgba(255,106,0,0.35);
}


/* SIGNUP BUTTON */

.signup-btn{
background:#ff6a00;
color:white;
border:none;
padding:8px 20px;
border-radius:30px;
cursor:pointer;
font-weight:500;
transition:all 0.35s ease;
}

.signup-btn:hover{
transform:translateY(-2px) scale(1.05);
box-shadow:0 10px 22px rgba(255,106,0,0.45);
background:#ff7d1a;
}

/* MENU */

.menu-toggle{
display:none;
font-size:22px;
cursor:pointer;
}
@media(max-width:900px){
    .menu-toggle {
        display: block;
    }
}
/* MOBILE */

@media(max-width:900px){

.search-bar{
display:none;
}

.nav-links{
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
flex-direction:column;
align-items:center;
padding:20px;
display:none;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.nav-links.active{
display:flex;
}

.menu-toggle{
display:block;
}

.post-btn{
display:none;
}

}

/* MODAL */

.modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  justify-content:center;
  align-items:center;
  z-index:9999; /* 🔥 increase */
}

.modal-box{
  background:white;
  padding:30px;
  border-radius:10px;
  width:350px;
  text-align:center;
  position:relative;
  z-index:10000; /* 🔥 VERY IMPORTANT */
  pointer-events:auto; /* 🔥 allow clicks */
}

.modal * {
  pointer-events: auto;
}

.modal-box h2{
margin-bottom:20px;
}

.modal-box input{
width:100%;
padding:10px;
margin:10px 0;
border:1px solid #ddd;
border-radius:6px;
}

.modal-btn{
width:100%;
background:#ff6a00;
border:none;
color:white;
padding:10px;
margin-top:10px;
border-radius:6px;
cursor:pointer;
}

.close{
position:absolute;
right:15px;
top:10px;
font-size:22px;
cursor:pointer;
}

.location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

@media(max-width:768px){
    .location { font-size: 0.8rem; }
    .custom-dropdown { width: 120px; }
    .states-grid div { font-size: 0.8rem; }
}
.modal-box {
    width: 350px; /* desktop default */
}

@media(max-width:768px){
    .modal-box { width: 90%; padding: 20px; }
}

@media(max-width:480px){
    .modal-box { width: 95%; padding: 15px; }
}















.services-section{
padding: 0px 2%;
background:#f5f7fb;
}

.services-title{
font-size:30px;
margin-bottom:30px;
color:#333;
}

/* CAROUSEL */

.services-carousel{
position:relative;
display:flex;
align-items:center;
}

.services-track{
display:flex;
gap:20px;
overflow:hidden;
scroll-behavior:smooth;
}

/* CARD */

.service-card{
min-width:220px;
height:300px;
border-radius:16px;
padding:20px;
position:relative;
overflow:hidden;
color:white;
cursor:pointer;
transition:0.4s;
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* BRIGHT GRADIENT COLORS */

.service-card:nth-child(1){
background:linear-gradient(135deg,#ff6a00,#ffb347);
}

.service-card:nth-child(2){
background:linear-gradient(135deg,#11998e,#38ef7d);
}

.service-card:nth-child(3){
background:linear-gradient(135deg,#4776E6,#8E54E9);
}

.service-card:nth-child(4){
background:linear-gradient(135deg,#ff416c,#ff4b2b);
}

.service-card:nth-child(5){
background:linear-gradient(135deg,#00c6ff,#0072ff);
}

.service-card:nth-child(6){
background:linear-gradient(135deg,#f7971e,#ffd200);
}

.service-card:nth-child(7){
background:linear-gradient(135deg,#ff6a00,#ffb347);
}

.service-card:nth-child(8){
background:linear-gradient(135deg,#11998e,#38ef7d);
}

.service-card:nth-child(9){
background:linear-gradient(135deg,#4776E6,#8E54E9);
}

.service-card:nth-child(10){
background:linear-gradient(135deg,#ff416c,#ff4b2b);
}
/* IMAGE */

.service-card img{
position:absolute;
bottom:0;
right:10px;
height:190px;
transition:0.4s;
}

/* TEXT */

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

.card-content h3{
font-size:22px;
margin-bottom:10px;
}

.card-content p{
font-size:14px;
margin-bottom:18px;
opacity:0.9;
}

/* BUTTON */

.card-content button{
border:none;
background:white;
color:#333;
padding:8px 16px;
border-radius:20px;
cursor:pointer;
font-weight:600;
transition:0.3s;
}

.card-content button:hover{
transform:scale(1.05);
}

/* HOVER */

.service-card:hover{
transform:translateY(-12px);
box-shadow:0 25px 55px rgba(0,0,0,0.25);
}

.service-card:hover img{
transform:scale(1.08) translateY(-10px);
}

/* SHINE EFFECT */

.service-card::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.4),
transparent
);
transition:0.6s;
}

.service-card:hover::before{
left:100%;
}

/* NAV BUTTONS */

.nav{
background:white;
border:none;
font-size:28px;
cursor:pointer;
padding:10px 14px;
border-radius:50%;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
position:absolute;
z-index:3;
}

.prev{
left:-20px;
}

.next{
right:-20px;
}
@media (max-width:1024px){

.service-card{
min-width:200px;
}

}

@media (max-width:768px){

.service-card{
min-width:170px;
height:260px;
}

.card-content h3{
font-size:18px;
}

}

@media (max-width:500px){

.services-track{
gap:12px;
}

.service-card{
min-width:150px;
}

}

/* ===== HERO TEXT SECTION ===== */

.hero-text{
padding:80px 20px 50px;
text-align:center;
background:linear-gradient(180deg,#ffffff,#f5f7fb);
}

.hero-text h1{
font-size:46px;
font-weight:700;
color:#333;
}

.typing-text{
color:#ff6a00;
border-right:3px solid #ff6a00;
padding-right:6px;
margin-left:5px;
animation:blink 0.7s infinite;
}

/* blinking cursor */

@keyframes blink{

0%{border-color:transparent;}
50%{border-color:#ff6a00;}
100%{border-color:transparent;}

}

.hero-text p{
margin-top:15px;
font-size:18px;
color:#666;
}

.categories{
padding:60px 6%;
background:white;
}

.section-title{
font-size:28px;
margin-bottom:30px;
color:#333;
}

.category-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
gap:20px;
}

.category-card{
background:#f5f7fb;
border-radius:12px;
padding:25px 15px;
text-align:center;
cursor:pointer;
transition:.3s;
border:1px solid #eee;
}

.category-card img{
width:100px;
margin-bottom:12px;
  height:80px;
}

.category-card p{
font-size:14px;
font-weight:600;
color:#333;
}

.category-card:hover{
transform:translateY(-6px);
background:#fff;
box-shadow:0 15px 30px rgba(0,0,0,0.12);
border-color:#ff6a00;
}
.home-services{
padding:60px 6%;
background:#f5f7fb;
}

.service-row{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.service-box{
flex:1;
min-width:220px;
background:white;
padding:25px;
border-radius:12px;
border-left:4px solid #ff6a00;
transition:.3s;
cursor:pointer;
}

.service-box h3{
margin-bottom:8px;
color:#333;
}

.service-box p{
font-size:14px;
color:#666;
}

.service-box:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}
.trending{
padding:60px 6%;
background:white;
}

.trending-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.trend-card{
background:#fff;
border-radius:12px;
overflow:hidden;
cursor:pointer;
transition:.3s;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.trend-card img{
width:100%;
height:150px;
object-fit:cover;
}

.trend-card h4{
padding:15px;
font-size:16px;
}

.trend-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.footer{
background:linear-gradient(135deg,#0b1d3a,#102a54,#183a75);
color:white;
padding:70px 8% 20px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.footer-logo{
font-size:26px;
color:#ff6a00;
}

.footer-logo span{
color:white;
}

/* text */

.footer-col p{
font-size:14px;
line-height:1.6;
color:#ddd;
}

/* headings */

.footer-col h3{
margin-bottom:15px;
font-size:18px;
}

/* links */

.footer-col ul{
list-style:none;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
text-decoration:none;
color:#ddd;
font-size:14px;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#ff6a00;
padding-left:5px;
}

/* social icons */

.social-icons{
margin-top:18px;
}

.social-icons a{
display:inline-block;
width:38px;
height:38px;
line-height:38px;
text-align:center;
border-radius:50%;
background:rgba(255,255,255,0.1);
color:white;
margin-right:8px;
transition:.3s;
}

.social-icons a:hover{
background:#ff6a00;
transform:translateY(-4px);
}

/* contact icons */

.footer-col i{
color:#ff6a00;
margin-right:8px;
}

/* whatsapp button */

.whatsapp-btn{
display:inline-block;
margin-top:12px;
padding:10px 18px;
background:#25D366;
color:white;
text-decoration:none;
border-radius:25px;
font-weight:600;
transition:.3s;
}

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

/* bottom */

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.2);
margin-top:40px;
padding-top:15px;
text-align:center;
font-size:14px;
color:#ccc;
}

footer-bottom p a{
 text-decoration:none;
  color:#fff;
}

.travel-hub{
padding:80px 6%;
background:#f5f7fb;
}

.travel-heading{
text-align:center;
font-size:32px;
margin-bottom:40px;
color:#333;
}

/* layout */

.travel-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

/* box */

.travel-box{
background:white;
padding:25px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
transition:.3s;
position:relative;
overflow:hidden;
}

/* gradient top line */

.travel-box::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:linear-gradient(90deg,#ff6a00,#ffb347);
}

/* hover */

.travel-box:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.travel-box h3{
margin-bottom:15px;
}

/* flights */

.flight-route{
display:flex;
align-items:center;
justify-content:space-between;
margin-bottom:10px;
font-size:14px;
}

.flight-route i{
color:#ff6a00;
}

/* packages */

.package-card{
display:flex;
align-items:center;
gap:10px;
margin-bottom:12px;
}

.package-card img{
width:45px;
height:45px;
border-radius:8px;
object-fit:cover;
}

.package-card span{
margin-left:auto;
font-weight:600;
color:#ff6a00;
}

/* places */

.place-list p{
margin-bottom:8px;
font-size:14px;
}

/* button */

.travel-btn{
margin-top:12px;
background:#ff6a00;
border:none;
color:white;
padding:8px 16px;
border-radius:20px;
cursor:pointer;
font-weight:600;
transition:.3s;
}

.travel-btn:hover{
background:#ff7d1a;
}

.hot-deal-section{
padding:70px 6%;
background:#ffdec7;
border-top:4px solid #ff6a00;
}

.deal-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:35px;
}

.deal-header h2{
color:#ff6a00;
font-size:28px;
}

.deal-timer{
background:#ff6a00;
color:white;
padding:6px 14px;
border-radius:20px;
font-size:13px;
animation:pulse 1.5s infinite;
}

/* pulse animation */

@keyframes pulse{
0%{transform:scale(1)}
50%{transform:scale(1.08)}
100%{transform:scale(1)}
}

/* layout */

.hot-deal-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
}

/* card */

.hot-deal-card{
background:white;
padding:25px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
position:relative;
transition:.3s;
border:1px solid #ffe1e1;
}

.hot-deal-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.18);
}

/* deal label */

.deal-label{
position:absolute;
top:5px;
left:15px;
background:#ff2d2d;
color:white;
font-size:12px;
padding:4px 10px;
border-radius:20px;
animation:blink 1s infinite;
}

/* blink animation */

@keyframes blink{
0%,100%{opacity:1}
50%{opacity:.4}
}

/* price */

.deal-price{
margin:12px 0;
}

.old-price{
text-decoration:line-through;
color:#888;
margin-right:10px;
}

.new-price{
color:#ff2d2d;
font-weight:700;
font-size:18px;
}

/* button */

.hot-deal-card button{
background:#ff6a00;
border:none;
color:white;
padding:8px 18px;
border-radius:20px;
cursor:pointer;
font-weight:600;
transition:.3s;
}

.hot-deal-card button:hover{
background:#e60000;
transform:scale(1.05);
}

.recent-section{
padding:80px 6%;
background:#f5f7fb;
}

.recent-title{
text-align:center;
font-size:32px;
margin-bottom:45px;
color:#333;
}

.recent-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

/* card */

.recent-card{
background:white;
border-radius:16px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:.35s;
}

.recent-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

/* image */

.recent-card img{
width:100%;
height:160px;
object-fit:cover;
}

/* content */

.recent-content{
padding:18px;
}

.recent-content h3{
margin-bottom:6px;
color:#333;
}

.rating{
font-size:14px;
margin-bottom:6px;
color:#ff9800;
}

.location{
font-size:13px;
color:#777;
margin-bottom:12px;
}

/* buttons */

.recent-buttons{
display:flex;
gap:10px;
}

.call-btn{
flex:1;
background:#ff6a00;
border:none;
color:white;
padding:8px;
border-radius:8px;
cursor:pointer;
font-weight:600;
}

.view-btn{
flex:1;
background:white;
border:1px solid #ff6a00;
color:#ff6a00;
padding:8px;
border-radius:8px;
cursor:pointer;
font-weight:600;
}

.view-btn:hover{
background:#ff6a00;
color:white;
}

.how-findpro{
    padding:100px 8%;
    background:#f7f9fc;
    text-align:center;
}

.section-title{
    font-size:42px;
    margin-bottom:70px;
    font-weight:700;
    color:#111;
}

.section-title span{
    color:#e60023;
}

.steps-container{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
}

.step{
    width:220px;
    padding:30px 20px;
    background:white;
    border-radius:12px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.step:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(230,0,35,0.2);
}

.circle{
    width:50px;
    height:50px;
    background:#e60023;
    color:white;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:auto;
    margin-bottom:15px;
    font-size:18px;
}

.step h3{
    margin-bottom:10px;
}

.step p{
    font-size:14px;
    color:#666;
}

.connector{
    width:80px;
    height:3px;
    background:#e60023;
    position:relative;
}

.connector::after{
    content:"";
    position:absolute;
    width:15px;
    height:15px;
    background:#e60023;
    border-radius:50%;
    top:-6px;
    right:-5px;
}

/* mobile */

@media(max-width:900px){

.steps-container{
    flex-direction:column;
}

.connector{
    width:3px;
    height:50px;
}
}

.reviews-section{
padding:100px 8%;
background:#f6f9fc;
text-align:center;
overflow:hidden;
}

.reviews-title{
font-size:38px;
margin-bottom:60px;
font-weight:700;
}

.review-wrapper{
display:flex;
align-items:center;
justify-content:center;
position:relative;
}

.reviews-container{
display:flex;
gap:25px;
overflow:hidden;
scroll-behavior:smooth;
}

.review-card{
min-width:300px;
background:white;
padding:25px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:center;
transition:.3s;
}

.review-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.review-card img{
width:60px;
height:60px;
border-radius:50%;
margin-bottom:10px;
}

.review-card h4{
margin:5px 0;
}

.review-card span{
font-size:13px;
color:#777;
}

.stars{
color:#ffb400;
margin:8px 0;
}

.review-card p{
font-size:14px;
color:#555;
}

.nav-btn2{
background:#e60023;
color:white;
border:none;
font-size:28px;
width:100px;
height:45px;
border-radius:50%;
cursor:pointer;
margin:0 10px;
transition:.3s;
}

.nav-btn2:hover{
background:#c4001d;
}

/* responsive */

@media(max-width:900px){

.review-card{
min-width:250px;
}

.nav-btn2{
display:none;
}

}

.white{
color:#fff;
  text-decoration:none;
  background-color:#9090a3;
}

footer{
margin:0;
  padding:0;
}

/* HERO */
/* GLOBAL */


/* HERO */
.heros {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  position: relative;
  overflow: hidden;
}

.heros h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.heros p {
  opacity: 0.9;
}

/* glowing animation */
.heros::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.2);
  filter: blur(100px);
  top: -50px;
  left: -50px;
}

/* SEARCH */
.search-box {
  margin-top: 25px;
}

.search-box input {
  padding: 14px;
  width: 280px;
  border-radius: 30px;
  border: none;
  outline: none;
}

.search-box button {
  padding: 14px 25px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #ff7a18, #ff3d00);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.search-box button:hover {
  transform: scale(1.1);
}

/* CATEGORIES */
.categoriess {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  flex-wrap: wrap;
}

.cat-card {
  padding: 25px 25px;
  border-radius: 30px;
  background: linear-gradient(135deg, #43cea2, #185a9d);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cat-card:hover {
  transform: translateY(-10px) scale(1.05);
}

.hover-card-decoration {
  position: relative;       /* important for absolute dropdown positioning */
  width: 220px;
  padding: 25px;
  border-radius: 30px;
  background: linear-gradient(135deg, #43cea2, #185a9d);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  text-align: center;
  z-index: 1;               /* base layer */
}

.hover-card-decoration:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Dropdown container */
.hover-dropdown {
  list-style: none;
  padding: 0;
  margin: 5px 0 0 0;          /* small gap below card */
  background: linear-gradient(135deg, #43cea2, #185a9d);
  border-radius: 12px;
  position: absolute;
  top: 100%;                  /* just below the card */
  left: 0;
  width: 100%;
  opacity: 0;                 /* hidden initially */
  visibility: hidden;         /* hidden initially */
  transition: all 0.3s ease;
  z-index: 1000;              /* higher than parent */
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
  pointer-events: auto;       /* ensures clickable */
}

/* Show dropdown on hover */
.hover-card-decoration:hover .hover-dropdown {
  opacity: 1;
  visibility: visible;
}

/* Dropdown items */
.hover-dropdown li {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.hover-dropdown li:last-child {
  border-bottom: none;
}

.hover-dropdown li a {
  display: block;
  padding: 12px 15px;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hover-dropdown li a:hover {
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
}

/* SYMPTOMS */
.symptom-card {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  padding: 15px 25px;
  border-radius: 15px;
  color: #333;
  font-weight: bold;
  transition: 0.3s;
}

.symptom-card:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #ff758c, #ff7eb3);
  color: white;
}
.listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}
/* DOCTOR CARD (GLASS EFFECT 🔥) */
.doctor-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.7);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.4s;
  align-items: center;
}

.doctor-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #667eea;
}

.doctor-card:hover {
  transform: translateY(-10px) scale(1.02);
}

@media (max-width: 600px) {
  .listings {
    grid-template-columns: 1fr;
  }

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

/* BUTTON */
.info button {
  margin-top: 10px;
  padding: 10px 18px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(135deg, #00c853, #64dd17);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.info button:hover {
  transform: scale(1.1);
}

/* TOP DOCTORS */
.top-card {
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
  color: white;
  transition: 0.3s;
}

.top-card:hover {
  transform: translateY(-10px) scale(1.05);
}

/* CLINICS */
.clinic-card {
  background: linear-gradient(135deg, #f7971e, #ffd200);
  color: #333;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
}

.clinic-card:hover {
  transform: scale(1.08);
}

/* HEADINGS */
.head {
  font-size: 28px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #667eea, #ff7a18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* MAIN CONTAINER */
.containers {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* SYMPTOMS GRID FIX */
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.symptom-card {
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  transition: 0.3s;
  cursor: pointer;
}

.symptom-card:hover {
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(135deg, #ff758c, #ff7eb3);
  color: white;
}

/* CLINIC GRID FIX */
.clinic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.clinic-card {
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f7971e, #ffd200);
  transition: 0.3s;
}

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

/* HEADINGS FIX */
.head {
  margin-bottom: 20px;
  font-size: 26px;
}

/* SECTION SPACING */


.top-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.sect{
margin-bottom:50px;
}

.decoration{
text-decoration:none;
}
.colo{
color:black;
}

.nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 40px;
}

/* Common button style */
.nav-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Back button */
.back-btn {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: white;
}

/* Next button */
.next-btn {
  background: linear-gradient(135deg, #43cea2, #185a9d);
  color: white;
}

/* Hover Animation */
.nav-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Shine effect */
.nav-btn::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: -50%;
  background: rgba(255,255,255,0.3);
  transform: skewX(25deg);
  transition: 0.5s;
}

.nav-btn:hover::before {
  width: 200%;
}

/* Icon animation */
.nav-btn i {
  transition: transform 0.3s ease;
}

.next-btn:hover i {
  transform: translateX(5px);
}

.back-btn:hover i {
  transform: translateX(-5px);
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}










.jd-banner img { width: 100%; height: 240px; object-fit: cover; border-radius: 8px; }


.pro-wrapper {
  padding: 30px;
}

/* TOP CARD */
.pro-top-card {
  display: flex;
  gap: 25px;
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.pro-top-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* IMAGE */
.pro-img img {
  width: 180px;
  height: 180px;
  border-radius: 14px;
  object-fit: cover;
  transition: 0.4s;
}

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

/* INFO */
.pro-info h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

/* BADGES */
.pro-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.badge {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.verified { background: #e6f7ee; color: #0a8f5c; }
.exp { background: #eef2ff; color: #3b5bdb; }
.spec { background: #fff4e6; color: #d97706; }

/* RATING */
.pro-rating {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 600;
}

/* BUTTONS */
.pro-actions {
  display: flex;
  gap: 10px;
}

.btn {
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.call { background: #16a34a; color: #fff; }
.whatsapp { background: #25D366; color: #fff; }
.enquiry { background: #2563eb; color: #fff; }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* GRID */
.pro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

/* CARDS */
.pro-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.pro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(37,99,235,0.1), transparent);
  opacity: 0;
  transition: 0.4s;
}

.pro-card:hover::before {
  opacity: 1;
}

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

/* ABOUT */
.pro-about {
  margin-top: 25px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pro-top-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pro-actions {
    justify-content: center;
  }
}
/* Wrapper */
















/* Gallery Section */
.jd-gallery {
  margin-top: 40px;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

/* Header */
.jd-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.jd-gallery-header h2 {
  font-size: 18px;
}

/* Tabs */
.jd-tabs {
  display: flex;
  gap: 10px;
}

.tab-btn {
  padding: 8px 14px;
  border: none;
  background: #f1f5f9;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}

.tab-btn.active {
  background: #2563eb;
  color: #fff;
}

/* Grid */
.jd-gallery-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.jd-gallery-grid.active {
  display: grid;
}

/* Image Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Hover Effect */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Overlay */
.gallery-item::after {
  content: "View";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 12px;
  text-align: center;
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .jd-gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Reviews Section */
.jd-reviews {
  margin-top: 40px;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

/* Header */
.jd-review-header h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Layout */
.jd-review-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 25px;
}

/* LEFT SUMMARY */
.jd-review-summary {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: #f8fafc;
}

.jd-review-summary h1 {
  font-size: 40px;
  margin-bottom: 5px;
}

.stars {
  color: #facc15;
  font-size: 18px;
}

.rating-bars {
  margin-top: 15px;
}

.bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}

.bar span {
  width: 25px;
  font-size: 13px;
}

.line {
  flex: 1;
  height: 6px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.line div {
  height: 100%;
  background: #facc15;
  transition: width 0.8s ease;
}

/* RIGHT REVIEWS */
.jd-review-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Review Card */
.review-card {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover effect */
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* Top */
.review-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.review-stars {
  color: #facc15;
}

/* Actions */
.review-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  color: #777;
}

/* Hover animation for helpful */
.review-actions span:first-child:hover {
  color: #2563eb;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .jd-review-container {
    grid-template-columns: 1fr;
  }
}


/* Modal Background */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Show */
.modal.active {
  display: flex;
}

/* Modal Box */
.modal-content {
   position: relative; /* ADD THIS */
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 320px;
  text-align: center;
  animation: scaleUp 0.3s ease;
}

/* Animation */
@keyframes scaleUp {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Close button */
.close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 22px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 6px;
  transition: 0.2s;
}

.close:hover {
  background: #f1f5f9;
}
/* Call */
.phone {
  font-size: 18px;
  margin: 15px 0;
}

.call-btn {
  display: inline-block;
  background: #16a34a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
}

/* Form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-form input,
.modal-form select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.modal-form button {
  background: #2563eb;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  border: none;
}