﻿/*=========================
    GLOBAL PAGE
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:Segoe UI,Arial,sans-serif;

    color:#24364b;

    background:
        linear-gradient(
        180deg,
        #edf6ff 0%,
        #ffffff 45%,
        #f6fbff 100%);

    min-height:100vh;

    overflow-x:hidden;

    position:relative;

}
body::before{

    content:"";

    position:fixed;

    width:520px;
    height:520px;

    top:-180px;
    right:-180px;

    border-radius:50%;

    background:
        radial-gradient(circle,
        rgba(0,102,204,.10),
        transparent 72%);

    z-index:-2;

}
body::after{

    content:"";

    position:fixed;

    width:420px;
    height:420px;

    bottom:-180px;
    left:-160px;

    border-radius:50%;

    background:
        radial-gradient(circle,
        rgba(0,180,255,.08),
        transparent 70%);

    z-index:-2;

}
.page-bg{

    position:fixed;

    inset:0;

    pointer-events:none;

    z-index:-1;

}

.page-bg span{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.55);

    backdrop-filter:blur(6px);

}

.page-bg span:nth-child(1){

    width:18px;
    height:18px;

    top:140px;
    left:12%;

}

.page-bg span:nth-child(2){

    width:12px;
    height:12px;

    top:320px;
    right:14%;

}

.page-bg span:nth-child(3){

    width:24px;
    height:24px;

    bottom:180px;
    left:20%;

}

.page-bg span:nth-child(4){

    width:14px;
    height:14px;

    bottom:120px;
    right:22%;

}
/*==========================
    PROFILE HEADER
==========================*/

.profile-header{

    position:relative;

    overflow:hidden;

    padding:60px 20px;

    text-align:center;

    background:
    linear-gradient(
    135deg,
    #0047ab 0%,
    #006fd6 45%,
    #4ab3ff 100%);

    border-radius:0 0 35px 35px;

    box-shadow:
    0 15px 40px rgba(0,80,180,.18);

}

/* Decorative Circle */

.profile-header::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    top:-220px;

    right:-120px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(255,255,255,.18),
    transparent 70%);

}

/* Decorative Circle */

.profile-header::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    bottom:-180px;

    left:-100px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(255,255,255,.10),
    transparent 70%);

}

.header-content{

    position:relative;

    z-index:2;

}

/* Medical Icon */

.header-icon{

    width:82px;

    height:82px;

    margin:auto;

    margin-bottom:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:42px;

    background:rgba(255,255,255,.16);

    backdrop-filter:blur(12px);

    border:2px solid rgba(255,255,255,.25);

    border-radius:50%;

    box-shadow:
    0 10px 25px rgba(0,0,0,.12);

}

/* Heading */

.profile-header h1{

    margin:0;

    color:#fff;

    font-size:40px;

    font-weight:700;

    letter-spacing:.6px;

    text-shadow:
    0 3px 12px rgba(0,0,0,.18);

}

/* Divider */

.profile-header h1::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    margin:18px auto;

    border-radius:20px;

    background:
    linear-gradient(
    90deg,
    transparent,
    #ffffff,
    transparent);

}

/* Subtitle */

.profile-header p{

    max-width:700px;

    margin:auto;

    color:#eef7ff;

    font-size:18px;

    line-height:1.8;

    letter-spacing:.3px;

}

/* Mobile */

@media (max-width:768px){

    .profile-header{

        padding:45px 20px;

    }

    .profile-header h1{

        font-size:30px;

    }

    .header-icon{

        width:70px;

        height:70px;

        font-size:34px;

    }

    .profile-header p{

        font-size:16px;

    }

}
.header-badge{
    display:inline-block;
    padding:8px 18px;
    margin-bottom:14px;
    background:rgba(255,255,255,.18);
    border:1px solid rgba(255,255,255,.30);
    border-radius:30px;
    color:#fff;
    font-weight:600;
    backdrop-filter:blur(10px);
}

/*=================================
      PROFILE CONTENT AREA
=================================*/

.profile-wrapper{

    max-width:1200px;

    margin:40px auto 60px;

    padding:0 20px;

}

/* Main Content Card */

#content{

    position:relative;

    overflow:hidden;

    min-height:350px;

    background:#ffffff;

    border:1px solid #dce9ff;

    border-radius:28px;

    padding:35px;

    box-shadow:
        0 15px 45px rgba(0,75,170,.08);

}

/* Decorative Circle */

#content::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    top:-120px;

    right:-120px;

    border-radius:50%;

    background:
        radial-gradient(circle,
        rgba(0,115,255,.08),
        transparent 70%);

}

/* Decorative Circle */

#content::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    bottom:-90px;

    left:-80px;

    border-radius:50%;

    background:
        radial-gradient(circle,
        rgba(0,170,255,.06),
        transparent 70%);

}
/*==============================
        LOADER
==============================*/

.loader{

    min-height:280px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:22px;

    color:#0b5ed7;

    font-size:20px;

    font-weight:600;

}

/* Spinner */

.spinner{

    width:70px;

    height:70px;

    border-radius:50%;

    border:6px solid #d9ebff;

    border-top:6px solid #0b5ed7;

    animation:spin .9s linear infinite;

}

/* Animation */

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}
@media(max-width:768px){

    .profile-wrapper{

        padding:0 12px;

        margin:25px auto 40px;

    }

    #content{

        padding:22px;

        border-radius:20px;

    }

    .loader{

        min-height:220px;

        font-size:18px;

    }

    .spinner{

        width:55px;

        height:55px;

    }

}

    /*=========================
      BACK BUTTON
=========================*/

.back-area{

    max-width:1200px;

    margin:30px auto 0;

    padding:0 20px;

}

.back-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:14px 24px;

    background:linear-gradient(
        135deg,
        #ffffff,
        #edf6ff);

    border:1px solid #cfe3ff;

    border-radius:50px;

    color:#0056b3;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    box-shadow:
        0 8px 25px rgba(0,80,180,.08);

    transition:all .35s ease;

}

.back-btn:hover{

    background:linear-gradient(
        135deg,
        #0b5ed7,
        #4aa8ff);

    color:#ffffff;

    border-color:#0b5ed7;

    transform:translateY(-3px);

    box-shadow:
        0 15px 35px rgba(0,80,180,.20);

}

.back-btn:active{

    transform:translateY(0);

}
@media (max-width:768px){

    .back-area{

        padding:0 15px;

        margin-top:20px;

    }

    .back-btn{

        width:100%;

        justify-content:center;

        font-size:15px;

        padding:14px;

    }

}
/*==============================
      DIRECTORY CTA
==============================*/

.directory-cta{

    position:relative;

    overflow:hidden;

    max-width:1200px;

    margin:50px auto;

    padding:60px 30px;

    text-align:center;

    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    #0047ab 0%,
    #006fd6 45%,
    #3aa0ff 100%);

    box-shadow:
    0 18px 45px rgba(0,75,170,.18);

}
.directory-cta::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    top:-180px;

    right:-120px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(255,255,255,.18),
    transparent 70%);

}

.directory-cta::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    bottom:-130px;

    left:-100px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(255,255,255,.10),
    transparent 70%);

}
.directory-cta h2{

    position:relative;

    z-index:2;

    margin:0;

    color:#ffffff;

    font-size:34px;

    font-weight:700;

    text-shadow:
    0 3px 10px rgba(0,0,0,.18);

}
.directory-cta h2::after{

    content:"";

    display:block;

    width:90px;

    height:4px;

    margin:20px auto;

    border-radius:30px;

    background:
    linear-gradient(
    90deg,
    transparent,
    #ffffff,
    transparent);

}
.directory-cta p{

    position:relative;

    z-index:2;

    max-width:760px;

    margin:0 auto 35px;

    color:#eef7ff;

    font-size:18px;

    line-height:1.8;

}
.directory-btn{

    position:relative;

    z-index:2;

    display:inline-block;

    padding:18px 40px;

    background:#ffffff;

    color:#0056b3;

    text-decoration:none;

    font-size:17px;

    font-weight:700;

    border-radius:50px;

    box-shadow:
    0 12px 30px rgba(0,0,0,.15);

    transition:all .35s ease;

}

.directory-btn:hover{

    transform:translateY(-4px);

    background:#edf6ff;

    color:#004494;

    box-shadow:
    0 18px 35px rgba(0,0,0,.22);

}
@media(max-width:768px){

    .directory-cta{

        margin:35px 15px;

        padding:45px 20px;

    }

    .directory-cta h2{

        font-size:26px;

    }

    .directory-cta p{

        font-size:16px;

    }

    .directory-btn{

        width:100%;

        padding:16px;

    }

}







    


/*=============================
    COMPANY SECTION
=============================*/

.company-box{

    position:relative;

    overflow:hidden;

    margin-top:60px;

    padding:70px 20px;

    background:
    linear-gradient(180deg,#ffffff,#f5faff);

    border-top:1px solid #d9e7ff;

}

/* Decorative Background */

.company-box::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    top:-170px;

    right:-120px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,102,204,.10),
    transparent 70%);

}

.company-box::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    bottom:-120px;

    left:-100px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,170,255,.08),
    transparent 70%);

}

.company-content{

    max-width:1100px;

    margin:auto;

    text-align:center;

    position:relative;

    z-index:2;

}

/* Logo */

.company-logo{

    width:95px;

    margin-bottom:20px;

    filter:
    drop-shadow(0 10px 20px rgba(0,0,0,.15));

}

/* Heading */

.company-box h3{

    margin:0;

    font-size:34px;

    color:#0b5ed7;

    font-weight:700;

}

/* Tagline */

.company-tagline{

    max-width:760px;

    margin:20px auto;

    color:#56687d;

    font-size:17px;

    line-height:1.9;

}

.company-tagline strong{

    color:#0056b3;

}

/* Divider */

.company-divider{

    width:90px;

    height:4px;

    margin:30px auto;

    border-radius:20px;

    background:
    linear-gradient(
    90deg,
    transparent,
    #0b5ed7,
    transparent);

}

/* Info Grid */

.company-info{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

    margin-top:40px;

}

/* Cards */

.info-block{

    background:#ffffff;

    border:1px solid #dce9ff;

    border-radius:20px;

    padding:30px;

    box-shadow:
    0 10px 30px rgba(0,70,170,.08);

    transition:.35s;

}

.info-block:hover{

    transform:translateY(-8px);

    box-shadow:
    0 18px 40px rgba(0,70,170,.15);

}

/* Icons */

.info-icon{

    width:60px;

    height:60px;

    margin:auto;

    margin-bottom:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    background:#edf6ff;

    border-radius:50%;

}

/* Title */

.info-title{

    display:inline-block;

    padding:8px 18px;

    background:#edf6ff;

    border:1px solid #cfe2ff;

    color:#0056b3;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

}

/* Text */

.info-block p{

    margin-top:18px;

    color:#556577;

    line-height:1.8;

}

.info-block strong{

    color:#0b5ed7;

}

/* Links */

.info-block a{

    color:#0b5ed7;

    font-weight:600;

    text-decoration:none;

}

.info-block a:hover{

    color:#004494;

}
/*===================================
        DOCTOR PROFILE
===================================*/

.doctor-profile{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fbff 55%,
    #eef7ff 100%);

    border:1px solid #d9e8ff;

    border-radius:30px;

    padding:40px;

    box-shadow:
    0 18px 45px rgba(0,75,170,.10);

}

/* Decorative Background */

.doctor-profile::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    top:-170px;

    right:-130px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,102,204,.10),
    transparent 70%);

}

.doctor-profile::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    bottom:-120px;

    left:-100px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,170,255,.08),
    transparent 70%);

}
.doctor-top{

    position:relative;

    z-index:2;

    display:flex;

    gap:45px;

    align-items:center;

    margin-bottom:40px;

}
.doctor-photo{

    position:relative;

    flex-shrink:0;

    text-align:center;

}

.doctor-photo img{

    width:220px;

    height:220px;

    object-fit:cover;

    border-radius:50%;

    border:8px solid #ffffff;

    outline:5px solid #8ec9ff;

    box-shadow:
    0 15px 40px rgba(0,0,0,.18);

    transition:.35s;

}

.doctor-photo img:hover{

    transform:scale(1.03);

}
.doctor-photo .doctor-category{

    position:absolute;

    left:50%;

    bottom:-18px;

    transform:translateX(-50%);

    background:
    linear-gradient(
    135deg,
    #0056b3,
    #1d8fff);

    color:white;

    padding:10px 24px;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

    white-space:nowrap;

    box-shadow:
    0 8px 22px rgba(0,90,220,.25);

}
.doctor-summary{

    flex:1;

}
.doctor-summary h1{

    font-size:38px;

    color:#183153;

    margin:0;

}
.doctor-summary .doctor-degree{

    margin-top:12px;

    font-size:22px;

    color:#5b6778;

}
.appointment-badge{

    display:inline-block;

    margin-top:18px;

    padding:12px 22px;

    background:#edf6ff;

    color:#0056b3;

    border:1px solid #cde2ff;

    border-radius:30px;

    font-weight:700;

}
.doctor-location{

    margin-top:18px;

    font-size:18px;

    color:#35516d;

}
.doctor-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

    margin-top:30px;

}
/* Common Section */
.profile-section{
    margin-top:40px;
}

.profile-section h2{
    color:#0b5ed7;
    margin-bottom:18px;
    font-size:28px;
}

/* Specialities */
.speciality-list{
    background:#f4f9ff;
    border-left:5px solid #0b5ed7;
    padding:25px;
    border-radius:18px;
    line-height:2;
    color:#42566b;
}

/* Experience */
.experience-list{
    background:#f4f9ff;
    border-left:5px solid #1e5eff;
    padding:25px;
    border-radius:18px;
    line-height:2;
    color:#42566b;
}
/* Awards & Recognition */
.awards-list{
    background:#f4f9ff;
    border-left:5px solid #2563eb;
    padding:25px;
    border-radius:18px;
    line-height:2;
    color:#42566b;
}
/* Facilities in Clinic */
.facilities-list{
    background:#f5fbff;
    border-left:5px solid #3b82f6;
    padding:25px;
    border-radius:18px;
    line-height:2;
    color:#42566b;
}
.profile-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:25px;

    margin-top:40px;

}
.info-card{

    background:white;

    border:1px solid #dbe9ff;

    border-radius:20px;

    padding:28px;

    box-shadow:
    0 10px 25px rgba(0,75,170,.08);

    transition:.35s;

}

.info-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 18px 35px rgba(0,75,170,.15);

}
.info-card h3{

    color:#0b5ed7;

    margin-bottom:15px;

    font-size:22px;

}
.info-card p{

    color:#556577;

    line-height:1.9;

}
@media(max-width:768px){

    .doctor-profile{

        padding:25px;

    }

    .doctor-top{

        flex-direction:column;

        text-align:center;

    }

    .doctor-photo img{

        width:170px;

        height:170px;

    }

    .doctor-summary h1{

        font-size:30px;

    }

    .doctor-summary .doctor-degree{

        font-size:18px;

    }

    .doctor-buttons{

        justify-content:center;

    }

}
/* share whast */


.btn-share{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 28px;

    border-radius:50px;

    background:linear-gradient(135deg,#25D366,#128C7E);

    color:#fff;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(37,211,102,.28);

}

.btn-share:hover{

    transform:translateY(-3px);

    background:linear-gradient(135deg,#2AE06B,#0F7B6C);

    box-shadow:
    0 16px 35px rgba(37,211,102,.38);

}

.btn-share i{

    font-size:20px;

}
/* SHARE */

/* SHARE */

.share{
    margin-top:30px;
    text-align:center;
    padding:20px;
    background:#fafafa;
    border-radius:12px;
}

.share a{
    display:inline-block;
    margin:5px;
    padding:10px 14px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    color:#fff;
    transition:0.3s;
}

.share a:hover{
    transform:translateY(-2px);
    opacity:0.9;
}

.share a:first-of-type{
    background:#1877f2;   /* Facebook */
}

.share .wa{
    background:#25D366;   /* WhatsApp */
}

.share .tw{
    background:#000000;   /* X (Twitter) */
}

.share .tg{
    background:#229ED9;   /* Telegram */
}

.share .li{
    background:#0A66C2;   /* LinkedIn */
}