@import url('https://fonts.googleapis.com/css2?family=Allerta+Stencil&family=Arizonia&family=Carter+One&family=Caveat:wght@400..700&family=Cinzel:wght@400..900&family=Dancing+Script:wght@700&family=Edu+AU+VIC+WA+NT+Arrows:wght@400..700&family=Libertinus+Serif:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Lora:ital,wght@0,400..700;1,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
/* --- Global Overflow Fix --- */

/* Asli Mouse Hide Karo */
body, a, button, input, textarea {
    cursor: none !important;
}

/* Chota White Dot */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(67, 168, 219, 0.763);
    box-shadow: 0 0 10px rgba(35, 201, 231, 0.8);
}

/* Bahar wala Outline Ring */
.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(32, 127, 216, 0.5);
    transition: transform 0.15s ease-out; /* Is se smoothness aati hai */
}

.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 99999;
    pointer-events: none; /* Taake clicks niche wale buttons par lagain */
}

/* Jab kisi link par mouse jaye (Hover Effect) */
.cursor-active {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(74, 199, 242, 0.3) !important; /* Medical Blue Tint */
    border: none !important;
}
html, body {
    max-width: 100%;
    overflow-x: hidden; /* Horizontal scroll ko khatam kar dega */
    position: relative;

}

* {
    box-sizing: border-box; /* Padding aur border ko width ke andar rakhega */
}

:root {
    --blue: #3d8dae;
    --l-blue: #e0f2fe;
    --dark: #1e3a4c;
    --text: #64748b;
}

/* Fix Overflow & Basic Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }

html, body { 
    width: 100%; 
    overflow-x: hidden; 
    background: #fff;
    scroll-behavior: smooth;
}

/* --- Aesthetic Logo Loader Styles --- */
.dr-loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff; /* Clean white background */
    z-index: 10000; /* Super high priority */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease-out, visibility 0.6s;
    overflow: hidden;
}

/* Base style for hiding loader */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Allows user to interact with site underneath */
}

.loader-content-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Space between logo and line */
    opacity: 0;
    animation: fade-in-up 0.8s ease-out forwards;
}

/* Logo Image Styling */
.loader-logo-img {
    width: 200px; /* Aesthetic width */
    height: auto;
}

.loader-logo-img img {
    max-width: 100%;
    height: auto;
}

/* Mini Line Container */
.mini-line-loader {
    width: 120px; /* Choti aur classy line */
    height: 3px; /* Patli line */
    background: #f0f0f0; /* Faint background line */
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

/* The Blue Fill Animation */
.line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #4ac7f2; /* Your medical theme blue */
    border-radius: 10px;
    animation: fill-line 2.5s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
}

/* --- Keyframe Animations --- */

/* Content entry animation */
@keyframes fade-in-up {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Line filling animation */
@keyframes fill-line {
    0% { width: 0%; }
    50% { width: 70%; } /* Slower middle phase */
    100% { width: 100%; }
}

/* --- Responsive (Mobile Fix) --- */
@media (max-width: 576px) {
    .loader-logo-img { width: 150px; }
    .mini-line-loader { width: 90px; }
}

/* Navbar - Height Fixed */
.dr-nav-main {
    position: fixed; top: 0; left: 0; width: 100%; height: 80px;
    background: #fff; z-index: 3000; display: flex; align-items: center;
              font-family: "Cinzel", serif;

}

.dr-container {
    width: 90%; max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
}

.dr-logo h2 { font-size: 1.5rem; font-weight: 800; color: var(--dark);
          font-family: "Cinzel", serif;
 }
.dr-logo h2 span { color: var(--blue); font-weight: 300; 
          font-family: "Cinzel", serif;
}

.dr-menu { display: flex; list-style: none; gap: 30px; align-items: center;
          font-family: "Cinzel", serif;
 }

/* Links with Underline Hover */
.dr-link {
    text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.9rem;
    position: relative; padding-bottom: 5px;
              font-family: "Cinzel", serif;

}
.dr-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0;
    height: 2px; background: var(--blue); transition: 0.3s;
}
.dr-link:hover::after, .dr-link.active::after { width: 100%; }

/* Buttons Aesthetic Hover */
.dr-contact-btn, .dr-book-btn {
    text-decoration: none; font-weight: 700; border-radius: 50px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
              font-family: "Cinzel", serif;

}
#p-1{
              font-family: "Cinzel", serif;

}
.dr-contact-btn { background: var(--l-blue); color: var(--blue); padding: 10px 25px; font-size: 0.85rem; }
.dr-book-btn { background: var(--blue); color: #fff; padding: 16px 35px; display: inline-flex; align-items: center; gap: 10px; }

.dr-contact-btn:hover, .dr-book-btn:hover {
    background: var(--dark); color: #fff; transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* HERO SECTION - Height Adjusted to stop "Half View" */
.dr-hero {
    min-height: 100vh;
    padding: 100px 0 50px; /* Added top padding to clear navbar */
    display: flex; align-items: center; justify-content: center;

}

.dr-hero-wrapper {
    width: 90%; max-width: 1200px; display: flex; align-items: center; gap: 50px;
}

.dr-hero-left { flex: 1; }
.dr-hero-left h1 { 
    font-size: clamp(2.2rem, 5vw, 4rem); 
    color: var(--dark); line-height: 1.1; margin-bottom: 20px; 
}
.dr-hero-left h1 span { color: var(--blue); }

.dr-badge {
    background: var(--blue); color: #fff; padding: 6px 15px;
    border-radius: 50px; font-size: 0.8rem; margin-bottom: 15px; display: inline-block;
}

.dr-hero-left p { color: var(--text); font-size: 1rem; line-height: 1.6; margin-bottom: 30px; max-width: 480px; }

.dr-action-row { display: flex; flex-direction: column; gap: 25px; align-items: flex-start; }

/* DOTS */
.dr-dots { display: flex; gap: 8px; }
.dr-dot { width: 10px; height: 10px; background: #ddd; border-radius: 50%; cursor: pointer; transition: 0.4s; }
.dr-dot.active { background: var(--blue); width: 30px; border-radius: 10px; }

/* SQUARE IMAGE */
.dr-hero-right { flex: 1; display: flex; justify-content: flex-end; }
.dr-square-frame {
    width: min(100%, 450px); aspect-ratio: 1/1;
    border: 4px dotted var(--blue); padding: 15px; border-radius: 30px; position: relative;
}
.dr-img-box { width: 100%; height: 100%; border-radius: 20px; overflow: hidden; }
.dr-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

.dr-promo {
    position: absolute; left: -40px; top: 50%; transform: translateY(-50%);
    background: var(--blue); color: #fff; width: 120px; height: 120px;
    border-radius: 50%; border: 4px solid #fff; display: flex; flex-direction: column;
    justify-content: center; text-align: center;
}
.dr-promo h3 { font-size: 1.8rem; font-weight: 800; }
.dr-promo span { font-size: 0.6rem; text-transform: uppercase; }

/* HAMBURGER */
.dr-hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 4000; }
.dr-hamburger span { width: 28px; height: 3px; background: var(--dark); border-radius: 5px; transition: 0.4s; }

/* RESPONSIVE FIXES */
@media (max-width: 900px) {
    .dr-hamburger { display: flex; }
    .dr-menu {
        position: fixed; top: 0; right: -100%; width: 260px; height: 100vh;
        background: #fff; flex-direction: column; justify-content: center;
        gap: 30px; transition: 0.5s ease-in-out; box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    }
    .dr-menu.active { right: 0; }
    
    /* Animation to X */
    .dr-hamburger.is-active .l1 { transform: translateY(9px) rotate(45deg); }
    .dr-hamburger.is-active .l2 { opacity: 0; }
    .dr-hamburger.is-active .l3 { transform: translateY(-9px) rotate(-45deg); }

    .dr-hero-wrapper { flex-direction: column; text-align: center; gap: 30px; }
    .dr-action-row { align-items: center; }
    .dr-hero-left p { margin: 0 auto 20px; }
    .dr-square-frame { width: 300px; height: 300px; }
    .dr-promo { width: 100px; height: 100px; left: -10px; }
    .dr-promo { 
        display: none !important; /* Ye discount box ko mobile par gayab kar dega */
    }
}
/* --- PREMIUM ABOUT SECTION --- */
.premium-about {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.lux-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Image Side Logic */
.about-image-side {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.main-image-frame {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/5;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.client-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-image-frame:hover .client-img {
    transform: scale(1.1);
}

.img-bg-shape {
    position: absolute;
    width: 110%;
    height: 110%;
    background: var(--l-blue);
    top: -5%;
    left: -5%;
    z-index: 1;
    border-radius: 50px;
    transform: rotate(-3deg);
    transition: 0.6s ease;
}

.about-image-side:hover .img-bg-shape {
    transform: rotate(0deg) scale(1.05);
    background: #d1e9f7;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--blue);
    color: #fff;
    padding: 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(61, 141, 174, 0.3);
    z-index: 3;
    transition: 0.4s ease;
}

.about-image-side:hover .experience-badge {
    transform: translateY(-10px) scale(1.05);
}

/* Text Side */
.about-text-side { flex: 1.2; }

.lux-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-top: 15px;
    line-height: 1.2;
    font-weight: 800;
}

.lux-title span { color: var(--blue); }

.main-bio {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 25px 0 40px;
              font-family: "Cinzel", serif;

}

/* JOURNEY CARDS HOVER (Foundation & Specialization) */
.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.journey-item {
    background: #f8fafc;
    padding: 25px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Smooth Hover for Cards */
.journey-item:hover {
    background: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(61, 141, 174, 0.12);
    border-color: var(--blue);
}

.j-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.journey-item:hover .j-icon {
    background: var(--blue);
    color: #fff;
    transform: rotateY(180deg);
}

.j-info h4 { color: var(--dark); font-size: 1.1rem; margin-bottom: 5px; transition: 0.3s; }
.journey-item:hover h4 { color: var(--blue); }
.journey-date { color: var(--blue); font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; }
.j-info p { color: var(--text); font-size: 0.9rem; line-height: 1.5;
          font-family: "Cinzel", serif;
 }

/* FUTURE GOAL HOVER (Vision Box) */
.vision-box {
    background: linear-gradient(135deg, var(--dark) 0%, #2c4e63 100%);
    padding: 35px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(30, 58, 76, 0.2);
}

.vision-box:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(30, 58, 76, 0.4);
}

/* Shine Effect on Hover */
.vision-box::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: 0.5s;
}

.vision-box:hover::before {
    left: 100%;
}

.vision-box i { font-size: 3rem; opacity: 0.2; transition: 0.5s; }
.vision-box:hover i { opacity: 0.8; transform: rotate(20deg) scale(1.2); color: #ffd700; }

.vision-content h4 { font-size: 1.3rem; margin-bottom: 8px; }
.vision-content p { font-size: 0.95rem; opacity: 0.8; line-height: 1.6;
          font-family: "Cinzel", serif;
 }

/* --- 100% RESPONSIVE --- */
@media (max-width: 992px) {
    .about-wrapper { flex-direction: column; gap: 60px; text-align: center; }
    .about-image-side { order: 1; width: 100%; }
    .about-text-side { order: 2; width: 100%; }
    .journey-grid { grid-template-columns: 1fr; }
    .dr-badge { margin: 0 auto; }
    .journey-item { align-items: center; }
    .vision-box { flex-direction: column; gap: 20px; text-align: center; }
    .img-bg-shape { width: 100%; height: 100%; left: 0; top: 0; }
    .experience-badge { right: 50%; transform: translateX(50%); bottom: -20px; }
}


/* en section */
/* --- LUXURY SERVICES SECTION --- */
.btn-readmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-readmore:hover i {
    transform: translateY(3px); /* Icon thoda niche move hoga click karne ke liye */
}
.dr-services {
    padding: 120px 0;
    background: #fbfcfd; /* Very subtle light grey for contrast */
}

/* Header Spacing Fix */
.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-desc {
    color: var(--text);
    margin-top: 15px;
    font-size: 1.1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

/* Luxury Grid Logic */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Advanced Service Card (Glassmorphism) */
.service-card {
    flex-basis: calc(33.333% - 20px); /* 3 cards on desktop */
    min-width: 320px;
    position: relative;
    border-radius: 30px;
    padding: 30px;
    background: #fff;
    cursor: pointer;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    overflow: hidden;

}

/* Subtle Gradient Glow behind card on hover */
.service-card .card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(61,141,174,0.1) 0%, rgba(224,242,254,0.3) 100%);
    border-radius: 30px;
    opacity: 0;
    transition: 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(61,141,174,0.2);
    box-shadow: 0 30px 60px rgba(61, 141, 174, 0.1);
}
#psl{
                  font-family: "Cinzel", serif;

}
.service-card:hover .card-glow { opacity: 1; }

/* Icon Logic with Hover Animation */
.service-card .icon-frame {
    width: 80px; height: 80px;
    background: var(--l-blue);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px;
    transition: 0.4s;
    position: relative;
    z-index: 2;
}

.service-card .icon-frame img {
    width: 60%; height: 60%;
    object-fit: contain;
    transition: 0.4s ease-in-out;
}

.service-card:hover .icon-frame img {
    transform: scale(1.15) rotate(5deg);
}

.service-card h4 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Section Footer Button */
.services-footer {
    text-align: center;
    margin-top: 60px;
}

.explore-btn {
    border: 2px solid var(--blue);
    background: transparent;
    color: var(--blue);
}

.explore-btn:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

/* --- 100% RESPONSIVE LOGIC --- */
@media (max-width: 1050px) {
    .service-card { flex-basis: calc(50% - 15px); } /* 2 cards on tablet */
}

@media (max-width: 768px) {
    .dr-services { padding: 80px 0; }
    .services-grid { gap: 20px; }
    .service-card {
        flex-basis: 100%; /* 1 card on mobile */
        min-width: unset;
        width: 100%;
        padding: 25px;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .icon-frame { margin: 0 auto 20px; }
    .lux-title { font-size: 2rem; }
}
/* ========================================
   PHYSIOART 4-COLUMN LOCKED LAYOUT
======================================== */

:root {
    --blue: #4ac7f2;
    --dark: #1a1a1a;
    --text: #777777;
    --white: #ffffff;
}

/* --- Container --- */
.container {
    width: 95%;
    max-width: 1300px; /* Thoda wide taake 4 cards fit aayein */
    margin: 0 auto;
    padding: 80px 0;
}

/* --- Services Header --- */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: 800;
}

/* --- Services Grid (THE MAGIC LINE) --- */
.services-grid {
    display: grid;
    /* Ye line lock karti hai ke 1 line mein sirf 4 cards honge */
    grid-template-columns: repeat(4, 1fr); 
    gap: 5px; /* Halka sa gap jaisa aap ne manga */
    justify-content: center;
}

/* --- Service Card --- */
.service-card {
    background: var(--white);
    padding: 40px 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #f1f1f1;
}

/* Hover State */
.service-card:hover {
    z-index: 10;
    background: #fbfdff;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(74, 199, 242, 0.15);
    border-color: var(--blue);
}

/* --- Icon Frame & Animation --- */
.icon-frame {
    width: 70px;
    height: 70px;
    background: #f0faff;
    color: var(--blue);
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: 0.4s ease;
}

.service-card:hover .icon-frame {
    background: var(--blue);
    color: var(--white);
    transform: rotateY(180deg);
}

/* --- Text Styling --- */
.service-card h3 {
    color: var(--dark);
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Footer Button --- */
.services-footer {
    text-align: center;
    margin-top: 50px;
}

.btn-readmore {
    display: inline-block;
    background-color: var(--blue);
    color: var(--white);
    padding: 14px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-readmore:hover {
    background-color: var(--dark);
    transform: translateY(-3px);
}

/* --- Responsive (Mobile Friendly) --- */

/* Tablet: 2 cards per line */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 card per line */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* end section */

/* --- Experience Section --- */
.experience-section {
    background-color: #f7f7f7;
    padding: 80px 0; /* Mobile friendly padding */
    overflow: hidden; /* Extra safety for overflow */
}

/* --- Responsive Heading --- */
.experience-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 15px;
}

.main-heading {
    font-family: 'Georgia', serif;
    font-size: clamp(1.8rem, 8vw, 3.5rem); /* Dynamic resizing */
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.header-line {
    width: 60px;
    height: 4px;
    background: #4ac7f2;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* --- Accurate Timeline Structure --- */
.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 40px; /* Reduced for better mobile fit */
    padding-right: 15px; 
}

/* The Vertical Line */
.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 15px; /* Fixed position for the line */
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ccc;
}

.timeline-entry {
    position: relative;
    margin-bottom: 40px;
    width: 100%; /* Ensure full width on mobile */
}

/* The Dot on the Line */
.entry-dot {
    position: absolute;
    left: -32px; /* Perfectly aligned with the line (40px padding - 8px half-width) */
    top: 30px;
    width: 16px;
    height: 16px;
    background: #000;
    border-radius: 50%;
    z-index: 5;
    border: 3px solid #f7f7f7;
}

/* --- Accurate Card Styling --- */
.entry-card {
    background: #fff;
    padding: 30px; /* Balanced padding */
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    border-left: 4px solid #eee; /* Thicker left border for style */
    width: 100%;
    box-sizing: border-box; /* Padding inclusion */
}

.entry-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(74, 199, 242, 0.15);
    border-left-color: #4ac7f2;
}

.entry-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4ac7f2;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.entry-card h3 {
    font-family: 'Georgia', serif;
    font-size: clamp(1.2rem, 4vw, 1.6rem); /* Responsive card title */
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.3;
}

.entry-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* --- FINAL ACCURATE MOBILE ADJUSTMENTS --- */
@media (max-width: 576px) {
    .experience-section {
        padding: 60px 0;
    }

    .timeline-wrapper {
        padding-left: 35px; /* Minimum space for mobile */
        padding-right: 10px;
    }

    .timeline-wrapper::before {
        left: 10px; /* Line moves closer to edge */
    }

    .entry-dot {
        left: -31px; /* Realignment for the line */
        width: 14px;
        height: 14px;
        top: 25px;
    }

    .entry-card {
        padding: 20px; /* Compact padding for small screens */
    }
    
    .entry-card:hover {
        transform: none; /* Mobile par hover ki zarorat nahi hoti */
    }
}



/* --- Pricing Section --- */
.pricing-section { padding: 100px 0; background: #fff; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: #fbfdff;
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: center;
    transition: 0.4s;
    position: relative;
}

.pricing-card.featured {
    background: #fff;
    border: 2px solid #4ac7f2;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(74, 199, 242, 0.1);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #4ac7f2;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
}

.plan-type { font-weight: 800; font-size: 1.2rem; color: #1a1a1a; margin-bottom: 20px; }
.price { font-size: 3rem; font-weight: 900; color: #000; margin-bottom: 30px; }
.price span { font-size: 1.5rem; vertical-align: top; margin-right: 5px; color: #4ac7f2; }

.plan-features { list-style: none; margin-bottom: 40px; text-align: left; }
.plan-features li { margin-bottom: 15px; color: #666; font-size: 0.95rem;
                  font-family: "Cinzel", serif;

 }
.plan-features i { margin-right: 10px; }
.fa-check { color: #4ac7f2; }
.fa-times { color: #ccc; }

.btn-plan {
    display: block;
    padding: 15px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.pricing-card:hover { transform: translateY(-10px); }
.featured .btn-plan { background: #4ac7f2; }

/* --- Testimonial Section --- */
.testimonial-section { padding: 100px 0; background: #f8fbff; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testi-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px 30px 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    transition: 0.4s;
}

.quote-icon {
    font-size: 2rem;
    color: #4ac7f2;
    opacity: 0.2;
    margin-bottom: 20px;
}

.testi-card p { font-style: italic; color: #555; line-height: 1.8; margin-bottom: 25px; }

.testi-user { display: flex; align-items: center; gap: 15px; }
.testi-user img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.testi-user h4 { font-size: 1.1rem; color: #1a1a1a; }
.testi-user span { color: #4ac7f2; font-size: 0.8rem; font-weight: 700; }

.testi-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(74, 199, 242, 0.15); }

/* --- Responsive --- */
@media (max-width: 992px) {
    .pricing-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
}

/* --- New Contact Section --- */
.contact-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-line {
    width: 60px;
    height: 4px;
    background: #4ac7f2;
    margin: 15px auto;
    border-radius: 10px;
}

/* --- Contact Grid Setup --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Form thoda bada, Info thodi choti */
    gap: 50px;
    align-items: start;
}

/* --- Form Card Styling --- */
.contact-form-card {
    background: #fbfdff;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #f0f5f9;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    background: #fff;
    font-size: 1rem;
    transition: 0.3s;
}

.input-group textarea {
    height: 120px;
    resize: none;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: #4ac7f2;
    box-shadow: 0 5px 15px rgba(74, 199, 242, 0.1);
    outline: none;
}

/* --- Premium Submit Button --- */
.submit-btn {
    width: 100%;
    padding: 18px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.4s;
}

.submit-btn:hover {
    background: #4ac7f2;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 199, 242, 0.3);
}

/* --- Info Column Styling --- */
.info-box-modern {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f1f1f1;
    margin-bottom: 30px;
}

.info-box-modern h3, .timings-card h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: #f0faff;
    color: #4ac7f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.item-text span {
    display: block;
    color: #888;
    font-size: 0.8rem;
    font-weight: 600;
}

.item-text p {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1rem;
}

/* --- Timings Card --- */
.timings-card {
    background: #1a1a1a;
    padding: 35px;
    border-radius: 20px;
    color: #fff;
}

.time-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.time-row.closed span {
    color: #ff4d4d;
}

.emergency-tag {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #4ac7f2;
    font-weight: 700;
    text-align: center;
}

/* --- Responsive (Mobile Fix) --- */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 30px 20px;
    }
}


/* --- Final Mini Footer --- */
.final-footer {
    background: #ffffff;
    padding: 30px 0;
    border-top: 1px solid #f1f1f1; /* Halka sa border separating section */
    text-align: center;
}

.footer-bottom-content p {
    color: #888888;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
                  font-family: "Cinzel", serif;

}

/* Farhan Baber Highlight */
.footer-bottom-content p span {
    color: #4ac7f2; /* Tumhara theme blue */
    font-weight: 800;
    text-transform: uppercase;
    margin-left: 5px;
                  font-family: "Cinzel", serif;

}

/* Small accent line under name */
.footer-line-small {
    width: 30px;
    height: 2px;
    background: #4ac7f2;
    margin: 10px auto 0;
    border-radius: 10px;
    opacity: 0.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-bottom-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* ========================================
   RIGHT SIDEBAR SOCIALS - CSS
======================================== */

.dr-right-socials-wrapper {
    position: fixed;
    right: 40px; /* Ab ye RIGHT par hai */
    bottom: 0;   
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    z-index: 9998;
    opacity: 0;
    animation: fade-in-up 1s ease-out forwards 1.5s;
}

.dr-s-link {
    font-size: 1.4rem;
    color: #333;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

/* Hover effect with your Blue Theme */
.dr-s-link:hover {
    color: #4ac7f2;
    transform: translateY(-8px) scale(1.1);
}

/* Vertical Line */
.dr-sidebar-line {
    width: 2px;
    height: 100px;
    background: #4ac7f2; /* Medical Blue Line */
    margin-top: 15px;
    border-radius: 10px;
    opacity: 0.6;
}

/* Entrance Animation */
@keyframes fade-in-up {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ========================================
   RESPONSIVE (Mobile & Tablet)
======================================== */

/* ========================================
   RESPONSIVE (Mobile & Tablet) - FIX
======================================== */

/* Tablets par thoda side gap kam */
@media (max-width: 1024px) {
    .dr-right-socials-wrapper {
        right: 15px;
    }
}

/* Mobile par bhi Fixed aur Decent alignment */
@media (max-width: 768px) {
    .dr-right-socials-wrapper {
        position: fixed; /* Relative se wapis Fixed kar diya */
        right: 10px;    /* Bilkul edge ke paas */
        bottom: 20px;   /* Niche se thoda oopar */
        left: auto;     
        width: auto;
        background: transparent; /* White box hata diya */
        gap: 15px;      /* Mobile par icons thode close honge */
    }

    .dr-sidebar-line {
        display: block; /* Line ko wapis le aaye aesthetic ke liye */
        height: 40px;   /* Choti line mobile ke liye */
        margin-top: 5px;
    }

    .dr-s-link {
        font-size: 1.2rem; /* Thode chote icons taake screen na gherain */
    }
}




/* animation */


/* --- Ultra Hit Animations --- */

/* 1. Initial State (Chupa hua) */
.dr-hero-left > *, 
.dr-hero-right {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 2. Right Frame Special State */
.dr-hero-right {
    transform: scale(0.8) rotate(2deg);
}

/* 3. Reveal Class (Triggered by JS) */
.reveal-hit .dr-hero-left > * {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.reveal-hit .dr-hero-right {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) rotate(0);
}

/* 4. Staggered Delays (Sequence) */
.reveal-hit .dr-badge { transition-delay: 0.2s; }
.reveal-hit h1 { transition-delay: 0.4s; }
.reveal-hit #p-1 { transition-delay: 0.6s; }
.reveal-hit .dr-action-row { transition-delay: 0.8s; }
.reveal-hit .dr-hero-right { transition-delay: 1s; }

/* 5. Floating Animation for Promo (Always Moving) */
.dr-promo {
    animation: floaty 3s ease-in-out infinite;
}

@keyframes floaty {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -15px); }
}

.dr-hero h1 span {
    color: #4ac7f2; /* Tumhara Professional Blue */
    position: relative;
    display: inline-block;
}

/* "Alive" ke niche choti aesthetic line */
.dr-hero h1 span:last-child::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(74, 199, 242, 0.2);
    z-index: -1;
}

/* --- Global Scroll Fade-Up --- */

/* Initial State: Chupa hua aur thoda niche */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
}

/* Active State: Jab scroll karke samne aye */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}





/* Mobile aur Tablet par Custom Cursor Gayab */
@media (max-width: 900px) {
    .cursor-dot, 
    .cursor-outline {
        display: none !important;
    }
    
    /* Asli mouse wapis le aao mobile touch ke liye */
    body, a, button, input, textarea {
        cursor: auto !important;
    }
}


/* Back to Top Button Styling */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Tumhare kehne par LEFT par rakha hai */
    width: 45px;
    height: 45px;
    background-color: #4ac7f2; /* Medical Blue */
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0; /* Shuru mein chupa hoga */
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Hover Effect */
.back-to-top:hover {
    background-color: #333; /* Dark Grey on Hover */
    transform: translateY(-5px);
}

/* Jab Scroll karne par active ho */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile par thoda adjust */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
    }
}