.elementor-611 .elementor-element.elementor-element-3bb5cf8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-611 .elementor-element.elementor-element-8ba33e9{margin:50px 50px calc(var(--kit-widget-spacing, 0px) + 50px) 50px;}.elementor-611 .elementor-element.elementor-element-37a74ea{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-611 .elementor-element.elementor-element-a1d6b26{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-611 .elementor-element.elementor-element-8ba33e9{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}}/* Start custom CSS for html, class: .elementor-element-8ba33e9 *//* ===== LAYOUT ===== */
.dr-hero-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    margin: auto;
    min-height: 100vh;
    flex-wrap: wrap;
    
}

.dr-left-v2 { flex: 1; min-width: 300px; }
.dr-right-v2 { flex: 1; display: flex; justify-content: center; }

/* ===== TITLE ===== */
.dr-title-v2 {
    font-size: clamp(32px,5vw,55px);
    font-weight: 900;
    margin: 20px 0;
    line-height: 1.1;

    background: linear-gradient(120deg,#fff,#00ffa3,#c5a368,#fff);
    background-size: 200% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: drFlow 6s linear infinite;
}

.dr-title-v2 span {
    font-size: 0.6em;
}

@keyframes drFlow {
    to { background-position: 200% center; }
}

/* ===== BADGE ===== */
.dr-badge-v2 {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 20px;
    background: rgba(0,255,163,0.08);
    border: 1px solid rgba(0,255,163,0.3);
}

/* ===== ROLE ===== */
.dr-role-v2 {
    color: #ccc;
}

/* ===== STATS ===== */
.dr-stats-v2 {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.dr-stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 18px;
    border-radius: 14px;
    min-width: 150px;
}

.dr-stat-card strong {
    color: #00ffa3;
    font-size: 26px;
}

/* ===== BUTTONS ===== */
.dr-actions-v2 {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.dr-btn-primary,
.dr-btn-outline {
    height: 48px;
    padding: 0 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
}

/* PRIMARY */
.dr-btn-primary {
    background: linear-gradient(135deg,#00ffa3,#00c97f);
    color: #000;
    position: relative;
    overflow: hidden;
}

.dr-btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, #fff, transparent);
    transform: translateX(-100%);
    animation: drShine 3s infinite;
}

@keyframes drShine {
    to { transform: translateX(100%); }
}

/* OUTLINE */
.dr-btn-outline {
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
}
.dr-badge-floating {
    position: absolute;
    top: 15px;
    right: 15px;

    z-index: 10; /* IMPORTANT */

    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;

    color: black;

    background: rgba(0, 255, 163, 0.08);
    border: 1px solid rgba(0, 255, 163, 0.4);

    border-radius: 25px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
/* ===== IMAGE ===== */
.dr-image-box-v2 {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 30px;
    background: linear-gradient(145deg,#0a2f2b,#021b18);
    padding: 20px;
    overflow: hidden;
}

/* IMAGE CENTER + SIZE FIX */
.dr-image-box-v2 img {
    width: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    position: relative;

}

/* SOFT INNER CIRCLE BG (premium look) */
.dr-image-box-v2::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* OUTER GLOW */
.dr-image-box-v2::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(120deg,transparent,#00ffa3,transparent);
    opacity: 0.15;
    z-index:-1;
}
.dr-hospital-bar {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;

    background: linear-gradient(
        90deg,
        rgba(10,20,20,0.6),
        rgba(10,20,20,0.95)
    );

    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 14px;
    text-align: center;
}

/* TEXT FIX */
.dr-h-name {
    color: #fff;
    font-weight: 700;
}

.dr-h-tag {
    color: #00ffa3;
    font-size: 11px;
}

/* ===== MOBILE ===== */
@media(max-width:991px){
    .dr-hero-v2 {
        flex-direction: column;
        text-align: center;
    }

    .dr-actions-v2,
    .dr-stats-v2 {
        justify-content: center;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bc03ff7 *//* =========================================================
   DR AKHIL DESHMUKH — PREMIUM MEDICAL PROFILE CSS
========================================================= */

:root{
    --primary:#01AB83;
    --primary-light:#02cfa0;
    --gold:#c5a368;

    --dark:#080d12;
    --card-bg:rgba(255,255,255,0.03);

    --text-main:#f1f5f9;
    --text-muted:#94a3b8;

    --border:rgba(255,255,255,0.1);
}

/* ===== BASE ===== */

.dr-elite-profile{
    background:var(--dark);
    color:var(--text-main);
    font-family:'Inter',sans-serif;
    position:relative;
    overflow:hidden;
    padding:80px 20px;
}
h2 {
    color:white;
}
h3{
    color:white;
}

/* GLOW BACKGROUND */
.glow-bg{
    position:absolute;
    top:-10%;
    right:-10%;
    width:600px;
    height:600px;

    background:radial-gradient(
        circle,
        rgba(1,171,131,0.12),
        transparent 70%
    );

    pointer-events:none;
    z-index:0;
}

/* CONTENT WRAP */
.dr-content-blueprint{
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================================================
   ABOUT SECTION
========================================================= */

.about-modern{
    margin-bottom:100px;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1.8fr;
    gap:60px;
    align-items:center;
}

.line-decor{
    width:60px;
    height:5px;
    border-radius:20px;
    background:var(--primary);
    margin-bottom:25px;
}

.about-title h2{
    font-size:3.5rem;
    line-height:1;
    margin:0;
    font-weight:900;
    color:#fff;
}

.about-text p{
    font-size:1.1rem;
    line-height:1.9;
    color:var(--text-muted);
}

/* =========================================================
   EXPERTISE BENTO
========================================================= */

.expertise-bento{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
    margin-bottom:100px;
}

.bento-item{
    background:var(--card-bg);

    border:1px solid var(--border);

    border-radius:28px;

    padding:28px;

    backdrop-filter:blur(10px);

    transition:0.4s ease;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    min-height:180px;
}

.bento-item:hover{
    transform:translateY(-5px);

    border-color:var(--primary);

    box-shadow:0 15px 40px rgba(1,171,131,0.15);
}

.main-bento{
    grid-column:span 2;

    background:linear-gradient(
        135deg,
        rgba(1,171,131,0.14),
        transparent
    );
}

.main-bento h3{
    font-size:1.7rem;
    margin-bottom:10px;
}

.main-bento p{
    color:var(--text-muted);
}

.bento-icon{
    font-size:2rem;
    margin-bottom:15px;
}

.bento-item h4{
    margin:0;
    font-size:1rem;
    color:#fff;
}

/* =========================================================
   QUALIFICATIONS + TIMING
========================================================= */

.qual-chronicle{
    margin-bottom:100px;
}

.blueprint-split{
    display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:40px;
}

.qual-side h2{
    margin-bottom:25px;
    font-size:2.4rem;
}

/* GLASS LIST */
.glass-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.glass-row{
    background:var(--card-bg);

    border-left:4px solid rgba(255,255,255,0.08);

    border-radius:0 18px 18px 0;

    padding:20px 24px;

    display:flex;
    align-items:center;
    gap:20px;

    transition:0.3s ease;
}

.glass-row:hover{
    border-left-color:var(--primary);

    transform:translateX(5px);
}

.glass-row.highlight{
    border-left-color:var(--primary);

    background:rgba(1,171,131,0.08);
}

.qual-abbr{
    color:var(--primary);
    font-weight:900;
    min-width:60px;
    font-size:1.1rem;
}

.qual-desc{
    color:#fff;
}

/* TIMING */
.timing-glass{
    background:rgba(255,255,255,0.02);

    border:1px solid var(--border);

    border-radius:30px;

    padding:45px 30px;

    text-align:center;

    backdrop-filter:blur(10px);
}

.timing-tag{
    color:var(--primary);

    font-size:0.75rem;

    letter-spacing:2px;

    text-transform:uppercase;

    font-weight:700;
}

.timing-glass h3{
    font-size:2.2rem;
    margin:15px 0;
}

.timing-glass p{
    color:var(--text-muted);
}

.timing-divider{
    border:none;
    height:1px;
    background:var(--border);
    margin:25px 0;
}

/* =========================================================
   FINAL CTA
========================================================= */

.final-cta-section{
    margin-bottom:40px;
}

.cta-card{
    background:linear-gradient(
        145deg,
        #101820,
        #080d12
    );

    border:1px solid var(--border);

    border-radius:40px;

    padding:60px 40px;

    display:flex;
    align-items:center;
    gap:40px;

    position:relative;
    overflow:hidden;
}

.cta-content h2{
    font-size:2.8rem;
    margin-bottom:10px;
}

.cta-content h2 span{
    color:var(--primary);
}

.cta-content p{
    color:var(--text-muted);
    font-size:1.05rem;
}

/* BUTTONS */
.cta-btns{
    display:flex;
    gap:15px;
    margin-top:30px;
    flex-wrap:wrap;
}

.btn-pulse-primary,
.btn-whatsapp{
    height:52px;

    padding:0 30px;

    border-radius:12px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-weight:700;

    transition:0.3s ease;
}

/* PRIMARY BUTTON */
.btn-pulse-primary{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:#000;

    box-shadow:0 10px 25px rgba(1,171,131,0.25);

    animation:pulse 2s infinite;
}

.btn-pulse-primary:hover{
    transform:translateY(-3px);
}

/* WHATSAPP BUTTON */
.btn-whatsapp{
    border:1px solid var(--border);
    color:#fff;
    background:rgba(255,255,255,0.02);
}

.btn-whatsapp:hover{
    border-color:var(--primary);
    background:rgba(1,171,131,0.08);
}

/* PULSE */
@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(1,171,131,0.4);
    }

    70%{
        box-shadow:0 0 0 20px rgba(1,171,131,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(1,171,131,0);
    }
}

/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:1024px){

    .about-grid,
    .blueprint-split{
        grid-template-columns:1fr;
    }

    .expertise-bento{
        grid-template-columns:repeat(2,1fr);
    }

    .main-bento{
        grid-column:span 2;
    }

    .cta-card{
        flex-direction:column;
        text-align:center;
    }

    .cta-btns{
        justify-content:center;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:767px){

    .dr-elite-profile{
        padding:50px 15px;
    }

    .about-grid{
        gap:30px;
    }

    .about-title h2{
        font-size:2.4rem;
    }

    .about-text p{
        font-size:1rem;
        line-height:1.8;
    }

    .expertise-bento{
        grid-template-columns:1fr;
    }

    .main-bento{
        grid-column:span 1;
    }

    .bento-item{
        min-height:auto;
        padding:24px;
    }

    .blueprint-split{
        grid-template-columns:1fr;
    }

    .glass-row{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

    .timing-glass{
        padding:35px 20px;
    }

    .cta-card{
        padding:40px 20px;
        border-radius:25px;
    }

    .cta-content h2{
        font-size:2rem;
    }

    .cta-btns{
        flex-direction:column;
    }

    .btn-pulse-primary,
    .btn-whatsapp{
        width:100%;
    }

    html,
    body{
        overflow-x:hidden;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-a1d6b26 */.full-stretch{
  width:100vw !important;
  max-width:100vw !important;
  
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  
  padding-left:0 !important;
  padding-right:0 !important;
}/* End custom CSS */