:root {
            --primary: #003a64;
            --secondary: #e79514;
            --light-blue: #f5f9fc;
            --text: #1d1d1d;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            color: var(--text);
            background: #fff;
        }

        a {
            text-decoration: none;
        }

        .text-primary-custom {
            color: var(--primary);
        }

        .text-orange {
            color: var(--secondary);
        }

        .bg-primary-custom {
            background: var(--primary);
        }

        .btn-orange {
            background: var(--secondary);
            color: #fff;
            border: 1px solid var(--secondary);
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 30px;
        }

        .btn-orange:hover {
            background: #cf7e08;
            color: #fff;
        }

        .section-title {
            color: var(--primary);
            font-size: 30px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 45px;
        }

        .section-title span {
            color: #003a64;
        }

        .section-title:after {
            content: "";
            display: block;
            width: 45px;
            height: 3px;
            background: var(--secondary);
            margin: 12px 0 0;
        }

        /* =========================
           HEADER
        ========================= */

        .main-header {
            background: var(--primary);
            position: relative;
            z-index: 10;
        }

        .navbar-brand {
            color: #fff !important;
        }

        .doctor-logo {
            width: 52px;
            height: 52px;
            border: 3px solid var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 26px;
        }

        .doctor-name {
            font-size: 20px;
            font-weight: 700;
            line-height: 1.1;
        }

        .doctor-title {
            font-size: 11px;
            color: #fff;
            opacity: .9;
        }

        .navbar-nav .nav-link {
            color: #fff !important;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            padding: 28px 15px !important;
            position: relative;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--secondary) !important;
        }

        .navbar-nav .nav-link.active:after {
            content: "";
            position: absolute;
            left: 15px;
            right: 15px;
            bottom: 12px;
            height: 3px;
            background: var(--secondary);
        }

        /* =========================
           HERO
        ========================= */

        .hero-section 
        {
            background: url(../img/bg/hero-bg.jpg);
            position: relative;
            background-size:cover;
        }

        .hero-content {
            padding: 80px 0 60px;
            position: relative;
            z-index: 2;
        }

        .hero-heading {
            font-size: 47px;
            line-height: 1.15;
            font-weight: 700;
            color: var(--primary);
        }

        .hero-heading span {
            color: var(--secondary);
        }

        .heartbeat-line {
            width: 300px;
            height: 3px;
            background: var(--secondary);
            margin: 25px 0;
        }

        .hero-doctor-name {
            color: var(--primary);
            font-size: 29px;
            font-weight: 700;
        }

        .hero-speciality {
            border-left: 3px solid var(--secondary);
            padding-left: 15px;
            margin: 15px 0;
            color: var(--primary);
            font-size: 17px;
            line-height: 1.6;
        }

        .hospital-location {
            color: var(--primary);
            font-size: 17px;
            font-weight: 600;
            margin-top: 20px;
        }

        .hero-doctor img {
            width:100%;
        }

        .hero-right-bg {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 35%;
            background: #91c4c1;
            border-radius: 100% 0 0 0;
        }

        .expert-box {
            position: absolute;
            bottom: 55px;
            right: 35px;
            background: #fff;
            padding: 18px 25px;
            border-radius: 20px;
            box-shadow: 0 5px 25px rgba(0,0,0,.15);
            z-index: 4;
        }

        .expert-box i {
            color: var(--secondary);
            font-size: 35px;
        }

        .expert-title {
            color: var(--primary);
            font-weight: 700;
            font-size: 17px;
        }

        .expert-text {
            font-size: 13px;
        }

        /* =========================
           SPECIAL INTEREST
        ========================= */

        .special-section {
            background: var(--primary);
            padding: 30px 0;
            color: #fff;
        }

        .special-title {
            text-align: center;
            color: var(--secondary);
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 25px;
        }

        .special-item {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 10px 25px;
            border-right: 1px solid rgba(255,255,255,.25);
        }

        .special-item:last-child {
            border-right: 0;
        }

        .special-icon {
            width: 65px;
            height: 65px;
            min-width: 65px;
            border: 2px solid var(--secondary);
            color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
        }

        .special-item h5 {
            font-size: 16px;
            margin: 0;
            font-weight: 600;
        }

        /* =========================
           SERVICES
        ========================= */

        .services-section {
            padding: 50px 0;
        }

        .services-section h2.section-title::after
        {
            margin:12px auto 0;
        }

        .service-card {
            border: 1px solid #e7e7e7;
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            height: 100%;
            transition: .3s;
            background: #fff;
        }

        .service-card h3
        {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,.08);
        }

        .service-icon {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 26px;
        }

        .service-card h4 {
            color: var(--primary);
            font-size: 17px;
            font-weight: 700;
        }

        .service-card h4:after {
            content: "";
            display: block;
            width: 35px;
            height: 2px;
            background: var(--secondary);
            margin: 12px auto;
        }

        .service-card p {
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* =========================
           STATS
        ========================= */

        .stats-section {
            padding-bottom: 70px;
        }

        .stats-wrapper {
            background: var(--primary);
            border-radius: 18px;
            padding: 28px 20px;
            color: #fff;
        }

        .stat-box {
            text-align: center;
            border-right: 1px solid rgba(255,255,255,.25);
        }

        .stat-box:last-child {
            border-right: 0;
        }

        .stat-icon {
            color: var(--secondary);
            font-size: 35px;
        }

        .stat-number {
            color: var(--secondary);
            font-size: 28px;
            font-weight: 700;
        }

        .stat-label {
            font-size: 13px;
        }

        /* =========================
           ABOUT
        ========================= */

        .about-section {
            background: var(--light-blue);
            padding: 80px 0 40px;
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }

        .about-image img {
            width: 100%;
            display: block;
        }

        .about-badge {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: var(--secondary);
            color: #fff;
            padding: 12px 20px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 13px;
        }

        .about-content h2 {
            color: var(--primary);
            font-size: 28px;
            font-weight: 700;
        }

        .about-content h2:after {
            content: "";
            display: block;
            width: 45px;
            height: 3px;
            background: var(--secondary);
            margin: 12px 0 15px;
        }

        .about-content p {
            font-size: 15px;
            line-height: 1.8;
        }

        .about-list {
            list-style: none;
            padding: 0;
        }

        .about-list li {
            margin-bottom: 13px;
            font-size: 14px;
        }

        .about-list i {
            color: var(--secondary);
            margin-right: 8px;
        }

        /* =========================
           TESTIMONIALS
        ========================= */

        .testimonials-section {
            padding: 80px 0;
        }

        .testimonial-card {
            border: 1px solid #e5e5e5;
            border-radius: 15px;
            padding: 25px;
            height: 100%;
            position: relative;
            background: #fff;
        }

        .quote-icon {
            color: #dfeaf2;
            font-size: 40px;
            position: absolute;
            top: 10px;
            left: 15px;
        }

        .testimonial-card p {
            position: relative;
            font-size: 13px;
            line-height: 1.7;
            padding-top: 15px;
        }

        .stars {
            color: var(--secondary);
            margin: 12px 0;
        }

        .patient-name {
            color: var(--primary);
            font-weight: 700;
            font-size: 13px;
        }

        .patient-city {
            font-size: 12px;
            color: #777;
        }

        /* =========================
           VIDEOS
        ========================= */

        .videos-section {
            padding: 50px 0;
            background: #fff;
        }

        .video-card {
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 3px 15px rgba(0,0,0,.08);
        }

        .video-thumb {
            height: 180px;
            background: var(--primary);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .play-button {
            position: absolute;
            width: 55px;
            height: 55px;
            background: rgba(255,255,255,.95);
            color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 25px;
        }

        .video-content {
            padding: 15px;
        }

        .video-content h5 {
            color: var(--primary);
            font-size: 14px;
            font-weight: 700;
            margin: 0;
        }

        .video-duration {
            color: #777;
            font-size: 12px;
            margin-top: 8px;
        }

        /* =========================
           PATIENT EDUCATION
        ========================= */

        .education-section {
            padding: 50px 0;
            background:var(--light-blue);
        }

        .education-card {
            border: 1px solid #e5e5e5;
            border-radius: 12px;
            overflow: hidden;
            height: 100%;
            background: #fff;
            transition: .3s;
        }

        .education-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0,0,0,.08);
        }

        .education-image 
        {
        
            background: var(--primary);
            overflow: hidden;
        }

        .education-image img {
            width: 100%;
            
        }

        .education-content {
            padding: 18px;
        }

        .education-content h5 {
            color: var(--primary);
            font-size: 15px;
            line-height: 1.5;
            font-weight: 700;
        }

        .read-more {
            color: var(--secondary);
            font-size: 13px;
            font-weight: 700;
        }

        /* =========================
           HOSPITAL
        ========================= */

        .hospital-section {
            padding: 50px 0 70px;
            background:#eeeeee4f;
        }

        .hospital-image {
            border-radius: 15px;
            overflow: hidden;
            height: 220px;
        }

        .hospital-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hospital-content {
            padding: 20px;
        }

        .hospital-small-title {
            color: var(--primary);
            font-size: 13px;
            font-weight: 700;
        }

        .hospital-name {
            color: var(--primary);
            font-size: 25px;
            font-weight: 700;
            margin: 8px 0 15px;
        }

        .hospital-logo {
            font-size: 30px;
            color: var(--primary);
            font-weight: 700;
        }

        /* =========================
           CTA
        ========================= */

        .cta-section {
            background: var(--primary);
            color: #fff;
            padding: 45px 0;
        }

        .cta-title {
            color: var(--secondary);
            font-size: 20px;
            font-weight: 700;
        }

        .cta-text {
            font-size: 14px;
        }

        .contact-info {
            font-size: 14px;
            margin-bottom: 10px;
        }

        .contact-info i {
            color: var(--secondary);
            margin-right: 10px;
        }

        /* =========================
           FOOTER
        ========================= */

        .footer {
            background: #b97100;
            color: #fff;
            text-align: center;
            padding: 10px;
            font-size: 12px;
        }

        /* =========================
           RESPONSIVE
        ========================= */

        @media (max-width: 991px) {

            .navbar-nav .nav-link {
                padding: 12px 10px !important;
            }

            .navbar-nav .nav-link.active:after {
                display: none;
            }

            .hero-content {
                padding: 50px 0px 20px;
            }

            .hero-heading {
                font-size: 38px;
            }

            .hero-doctor {
                
            }

            .hero-right-bg {
                width: 45%;
            }

            .special-item {
                border-right: 0;
                margin-bottom: 15px;
            }

            .stat-box {
                border-right: 0;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 767px) {

            .doctor-logo {
                width: 42px;
                height: 42px;
                font-size: 20px;
            }

            .doctor-name {
                font-size: 16px;
            }

            .hero-section {
                min-height: auto;
            }

            .hero-heading {
                font-size: 26px;
            }

            .hero-doctor {
                text-align: center;
            }

            .hero-right-bg {
                width: 70%;
            }

            .expert-box {
                right: 10px;
                bottom: 20px;
                padding: 12px;
            }

            .special-item {
                padding: 10px;
            }

            .section-title {
                font-size: 25px;
            }

            .about-section,
            .services-section,
            .testimonials-section,
            .videos-section,
            .education-section {
                padding: 55px 0;
            }
        }

/***** Counter Section ******/



    .counter-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    }

    .counter-icon {
        width: 65px;
        height: 40px;
        margin: 0 auto 10px;
        
        font-size: 36px;
        color: #e79514;
    }

    .counter-item i
    {
        color: #e79514;
    }




    .counter-number {
        
        font-size: 38px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 8px;
    }

    .counter-box p {
        
        color: #ccc;
        font-size: 15px;
        margin: 0;
    }

    @media (max-width: 575px) {
        .counter-box {
            padding: 0px 12px;
        }

        .counter-number {
            font-size: 28px;
        }

        .counter-icon {
            width: 52px;
            height: 35px;
            font-size: 22px;
        }

        .counter-box p {
            font-size: 13px;
        }
    }

    .about-section .card
    {
        background: #003a64;
        border: none;
    }
    .about-section .card h4 a
    {
        font-size:1.3rem;
        color:#fff;
    }

    .about-section .card:hover
    {
        background: #e79514;
    }


/**** Custom Tabs ****/

    .about-section .tabs-wrapper 
        {
            max-width: 1100px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
        }

        /* =========================
           HORIZONTAL TABS
        ========================== */

    .about-section .custom-tabs 
        {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            overflow-y: hidden;
            border-bottom: 1px solid #ddd;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
            justify-content: center;
        }

    .about-section .custom-tabs::-webkit-scrollbar 
        {
            display: none;
        }

    .about-section .custom-tab 
        {
            flex: 0 0 auto;
            padding: 16px 28px;
            border: none;
            background: transparent;
            color: #555;
            font-size: 16px;
            font-weight: 600;
            white-space: nowrap;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }

    .about-section .custom-tab:hover 
        {
            color: #0d6efd;
            background: #f8f9fa;
        }

    .about-section .custom-tab.active 
        {
            color: #003a64;
        }

    .about-section .custom-tab.active::after 
        {
            content: "";
            position: absolute;
            left: 15px;
            right: 15px;
            bottom: -1px;
            height: 3px;
            background: #003a64;
            border-radius: 3px 3px 0 0;
        }


        /* =========================
           TAB CONTENT
        ========================== */

    .about-section .tab-content-area 
        {
            padding: 15px;
        }

    .about-section .tab-pane-custom 
        {
            display: none;
            animation: fadeIn 0.4s ease;
        }

    .about-section .tab-pane-custom.active {
            display: block;
        }

    .about-section .tab-title {
            font-size: 26px;
            font-weight: 700;
            color: #222;
            margin-bottom: 20px;
        }

        /* Bootstrap List Group Customization */

    .about-section .custom-list .list-group-item {
            padding: 10px 0;
            border-left: 0;
            border-right: 0;
            color: #555;
            line-height: 1.7;
        }
    .about-section .custom-list .list-group-item
    {
        background:none;
    }

    .about-section .custom-list .list-group-item:first-child {
            border-top: 0;
        }

    .about-section .custom-list .list-group-item:last-child {
            border-bottom: 0;
        }


        /* =========================
           ANIMATION
        ========================== */

        @keyframes fadeIn {

            from {
                opacity: 0;
                transform: translateY(8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }

        }


        /* =========================
           MOBILE
        ========================== */

        @media (max-width: 767px) {

            .about-section .tabs-wrapper {
                margin: 20px 10px;
                border-radius: 8px;
            }

            .about-section .custom-tab {
                padding: 14px 20px;
                font-size: 14px;
            }

            .about-section .tab-content-area {
                padding: 25px 20px;
            }

            .about-section .tab-title {
                font-size: 22px;
            }

            .about-section .custom-list .list-group-item {
                font-size: 14px;
                padding: 13px 0;
            }

        }

/******* Testimonials *******/

.testimonial-card 
    {
        background: #fff;
        border: 1px solid #e1e1e1;
        border-radius: 12px;
        padding: 22px;
        min-height: 250px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

.testimonial-card:hover 
    {
        box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
        transform: translateY(-3px);
    }

.google-avatar 
    {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #4285f4;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 600;
        flex-shrink: 0;
    }

.google-stars 
    {
        color: #fbbc04;
        font-size: 17px;
        letter-spacing: 1px;
    }

.testimonial-text 
    {
        color: #444;
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

.testimonial-carousel .owl-stage 
    {
        display: flex;
    }

.testimonial-carousel .owl-item 
    {
        display: flex;
    }

.testimonial-carousel .item 
    {
        width: 100%;
        padding: 10px;
    }

.testimonial-carousel .owl-nav 
    {
        margin-top: 15px;
        text-align: center;
    }

.testimonial-carousel .owl-nav button {
        width: 38px;
        height: 38px;
        border-radius: 50% !important;
        background: #fff !important;
        border: 1px solid #ddd !important;
        margin: 0 5px !important;
        color: #333 !important;
    }

.testimonial-carousel .owl-dots {
        margin-top: 10px;
    }

.testimonial-carousel .owl-dot span {
        width: 8px !important;
        height: 8px !important;
    }


/**** Premium Button Style *****/


.premium-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 24px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #093c61, #754a07);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2px;
    text-decoration: none;
    box-shadow: 
        0 8px 20px rgba(37, 99, 235, .25),
        inset 0 1px 0 rgba(255,255,255,.2);
    transition: all .3s ease;
    overflow: hidden;
}

.premium-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );
    transform: skewX(-20deg);
    transition: left .6s ease;
}

.premium-btn:hover::before {
    left: 140%;
}

.premium-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow:
        0 14px 30px rgba(37, 99, 235, .35),
        inset 0 1px 0 rgba(255,255,255,.25);
}

.premium-btn:active {
    transform: translateY(-1px) scale(.98);
}

.premium-btn i {
    font-size: 17px;
    transition: transform .3s ease;
}

.premium-btn:hover i {
    transform: translateX(4px);
}


@media (max-width: 767px) 
{
    .hero-doctor-name
    {
        font-size:22px;
    }

    .hero-speciality
    {
        font-size:14px;
    }

    .heartbeat-line
    {
        margin:15px 0;
    }

    .about-content h2
    {
        font-size:26px;
        margin-top:20px;
    }

    .about-section .tab-content-area
    {
        padding:5px 0px;
    }
}