﻿/********** Template CSS **********/
:root {
    --primary: #6244C5;
    --secondary: #FFC448;
    --light: #FAFAFB;
    --dark: #12141D;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.fixed-top {
    display: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}


/*** Header ***/
#home {
    margin-bottom: 6rem;
    /*background: url(../img/bg-header.png) left top no-repeat;*/
}

.typed-cursor {
    font-size: 30px;
    color: var(--dark);
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** About ***/
#about .years .display-1 {
    font-size: 10rem;
    line-height: 9rem;
}

#about .years h5 {
    letter-spacing: 30px;
    margin-right: -30px;
}


/*** Skills ***/
#skill .progress {
    height: 5px;
    border-radius: 5px;
}

#skill .progress .progress-bar {
    width: 0px;
    border-radius: 5px;
    transition: 3s;
}

#skill .nav-pills .nav-link {
    color: var(--dark);
}

#skill .nav-pills .nav-link.active {
    color: #FFFFFF;
}

#skill .tab-content hr {
    width: 30px;
}


/*** Service ***/
.service-item .bg-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/bg-icon.png) center center no-repeat;
    background-size: cover;
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

.portfolio-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 68, 197, .9);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 30px;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    padding-bottom: 30px !important;
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    opacity: .7;
}

.team-item .team-text {
    position: absolute;
    left: 0;
    right: 60px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    right: 30px;
    opacity: 1;
}

.team-item .team-text div {
    transition: .5s;
}

.team-item:hover .team-text div {
    margin-left: 30px;
}


/*** Testimonial ***/
.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px solid var(--secondary);
    border-radius: 70px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}

.testimonial-carousel .testimonial-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid var(--secondary);
    border-radius: 60px;
}

.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border: 2px solid var(--secondary);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 5px;
    left: 5px;
    border-radius: 16px;
    background: var(--secondary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}

/*---------------------------------------------------------------------
custom css 
-----------------------------------------------------------------------*/
@charset "utf-8";
/* CSS Document */
@font-face {
    font-family: 'BYekan';
    src: url('../fonts/BYekan-webfont.eot') format('eot'), url('../fonts/BYekan-webfont.woff') format('woff'), url('../fonts/BYekan-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.byekan {
    font-family: 'BYekan' !important;
}

.dir-rtl {
    direction: rtl !important;
}

.dir-ltr {
    direction: ltr !important;
}

.font-Poppins {
    font-family: 'Poppins', sans-serif;
}

.font-size-l {
    font-size: large;
}

.font-family-Questrial {
    font-family: 'Questrial', sans-serif;
}

.font-for-code {
    font-family: Calibri;
    direction: ltr;
}
/*////////////////new style//////////////////////////*/
:root {
    --primary-color: #FF6B6B;
    --primary-light: #FFE3E3;
    --primary-dark: #E74C4C;
    --secondary-color: #4ECDC4;
    --secondary-light: #E0F7F4;
    --accent-color: #FFB347;
    --accent-light: #FFF0D9;
    --purple-color: #A06AB4;
    --purple-light: #F3E5F5;
    --dark-color: #2C3E50;
    --gray-color: #F8F9FA;
    --text-color: #4A5568;
    --text-light: #718096;
    --white: #FFFFFF;
    --shadow: 0 10px 40px rgba(255, 107, 107, 0.15);
    --shadow-hover: 0 20px 60px rgba(255, 107, 107, 0.25);
    --border-radius: 30px;
    --border-radius-sm: 15px;
    --gradient-primary: linear-gradient(135deg, #FF6B6B, #E74C4C);
    --gradient-secondary: linear-gradient(135deg, #4ECDC4, #45B7AA);
    --gradient-accent: linear-gradient(135deg, #FFB347, #FF8C00);
    --gradient-purple: linear-gradient(135deg, #A06AB4, #8E4AA7);
    --gradient-mixed: linear-gradient(135deg, #FF6B6B, #4ECDC4, #FFB347);
}

body {
    font-family: 'BYekan';
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
    background: linear-gradient(135deg, #FFF9F9 0%, #F0F9FF 100%);
}

/* Loader Styles */
.medical-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient-mixed);
    background-size: 300% 300%;
    animation: gradientShift 5s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.loader-content {
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.logo-circle {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 60px;
    animation: pulse 2s infinite, rotate 10s linear infinite;
    border: 3px solid rgba(255,255,255,0.3);
}

.clinic-name {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 10px;
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.3s;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.doctor-name {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 30px;
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.5s;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #FFF, #FFE5E5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loader-bar {
    width: 300px;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    margin: 0 auto 20px;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--white);
    animation: progress 3s linear forwards;
    box-shadow: 0 0 20px rgba(255,255,255,0.8);
}

.loader-text {
    font-size: 18px;
    opacity: 0.8;
    animation: fadeIn 1s ease 1s forwards;
    opacity: 0;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFF5F5 0%, #E6F7F7 50%, #FFF0E0 100%);
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(255,107,107,0.1) 0%, rgba(78,205,196,0.1) 100%);
        border-radius: 50%;
        /*animation: float 20s ease-in-out infinite;*/
    }

.hero-badge {
    margin-bottom: 20px;
}

.bg-soft-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.text-gradient {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.stat-item-la {
    display: flex;
    flex-direction: column;
    position: relative;
}

    .stat-item-la::after {
        content: '';
        position: absolute;
        left: -8px;
        top: 50%;
        transform: translateY(-50%);
        width: 2px;
        height: 40px;
        background: var(--gradient-primary);
    }

    .stat-item-la:last-child::after {
        display: none;
    }

.stat-number {
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-primary-la {
    background: var(--gradient-primary);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255,107,107,0.3);
}

    .btn-primary-la:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255,107,107,0.4);
        color: var(--white);
    }

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 13px 33px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-outline-primary:hover {
        background: var(--gradient-primary);
        border-color: transparent;
        color: var(--white);
        transform: translateY(-3px);
    }

.btn-play-video {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-weight: 600;
}

    .btn-play-video i {
        font-size: 50px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        transition: all 0.3s ease;
    }

    .btn-play-video:hover i {
        transform: scale(1.1);
    }

.hero-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

    .floating-card::before {
        content: '';
        position: absolute;
        top: -2px;
        right: -2px;
        bottom: -2px;
        left: -2px;
        background: var(--gradient-primary);
        border-radius: 50px;
        z-index: -1;
        opacity: 0.5;
    }

    .floating-card i {
        font-size: 24px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.card-1 {
    top: 20%;
    right: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: 0;
    animation-delay: 1.5s;
}

.hero-image {
    position: relative;
    z-index: 2;
}

    .hero-image img {
        filter: drop-shadow(0 20px 40px rgba(255,107,107,0.3));
        animation: floatImage 6s ease-in-out infinite;
    }

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,107,0.2) 0%, rgba(78,205,196,0.2) 100%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

    .hero-wave svg path {
        fill: url(#gradient);
    }

/* Sections Common */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 0;
        width: 80px;
        height: 4px;
        background: var(--gradient-primary);
        border-radius: 4px;
    }

.section-description {
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 18px;
}

/* Specialty Cards */
.specialty-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

    .specialty-card::before {
        content: '';
        position: absolute;
        top: -2px;
        right: -2px;
        bottom: -2px;
        left: -2px;
        background: var(--gradient-primary);
        border-radius: var(--border-radius);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

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

    .specialty-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 30px 60px rgba(255,107,107,0.3);
    }

.card-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(255,107,107,0.3);
}

.specialty-card:hover .card-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 20px 40px rgba(255,107,107,0.4);
}

.specialty-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.specialty-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.8;
}

.card-link {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

    .card-link:hover {
        gap: 10px;
    }

/* About Section */
.about-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #FFF5F5 100%);
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

    .about-image img {
        border-radius: var(--border-radius);
        transition: transform 0.5s ease;
        box-shadow: var(--shadow);
    }

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

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    display: flex;
    flex-direction: column;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(255,107,107,0.3);
}

    .experience-badge .years {
        font-size: 48px;
        font-weight: 900;
        line-height: 1;
    }

.about-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-text {
    margin-bottom: 30px;
}

    .about-text p {
        margin-bottom: 15px;
        color: var(--text-light);
        font-size: 16px;
    }

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

    .feature-item i {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 22px;
    }

/* Services Section */
.services-section {
    background: var(--white);
}

.service-card {
    background: linear-gradient(135deg, #FFF, #FFF9F9);
    padding: 50px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-primary);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }

    .service-card:hover::before {
        transform: translateX(0);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(255,107,107,0.2);
        border-color: rgba(255,107,107,0.1);
    }

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(255,107,107,0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.8;
}

.service-hover {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: bottom 0.3s ease;
    font-weight: 600;
}

.service-card:hover .service-hover {
    bottom: 0;
}

/* Media Section */
.media-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

    .media-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(255,107,107,0.25);
    }

.media-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

    .media-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.media-card:hover .media-image img {
    transform: scale(1.1);
}

.media-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

    .media-category.podcast {
        background: var(--gradient-accent);
    }

.media-content {
    padding: 30px;
}

.media-date {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
}

    .media-date i {
        margin-left: 5px;
        color: var(--primary-color);
    }

.media-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
    line-height: 1.5;
}

.media-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.podcast-player {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.play-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

    .play-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 10px 25px rgba(255,107,107,0.4);
    }

.podcast-duration {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.media-link {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

    .media-link:hover {
        gap: 10px;
    }

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #FFF5F5 100%);
}

.testimonial-item {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 20px;
}

.testimonial-content {
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, #FFF9F9, #F0F9FF);
    border-radius: var(--border-radius-sm);
    margin-bottom: 30px;
}

    .testimonial-content i {
        position: absolute;
        top: -15px;
        right: 20px;
        font-size: 40px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        opacity: 0.3;
    }

    .testimonial-content p {
        font-size: 16px;
        line-height: 1.8;
        color: var(--text-color);
        margin: 0;
        font-style: italic;
    }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .testimonial-author img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--primary-color);
    }

    .testimonial-author h4 {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        color: var(--dark-color);
    }

    .testimonial-author span {
        font-size: 14px;
        color: var(--text-light);
    }

/* Appointment Section */
.appointment-section {
    background: var(--gradient-mixed);
    background-size: 300% 300%;
    animation: gradientShift 10s ease infinite;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

    .appointment-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        border-radius: 50%;
        /*animation: float 20s ease-in-out infinite;*/
    }

    .appointment-section .section-badge {
        background: rgba(255,255,255,0.2);
        color: var(--white);
        backdrop-filter: blur(10px);
    }

.appointment-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-info {
    margin-top: 50px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

    .info-item i {
        font-size: 35px;
        color: var(--white);
        background: rgba(255,255,255,0.1);
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255,255,255,0.2);
    }

    .info-item h4 {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
    }

    .info-item span {
        font-size: 14px;
        opacity: 0.8;
        display: block;
        margin-bottom: 5px;
    }

.appointment-form {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.form-control, .form-select {
    padding: 15px 20px;
    border: 2px solid #E2E8F0;
    border-radius: var(--border-radius-sm);
    font-size: 15px;
    transition: all 0.3s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
    }

/* Footer */
.footer {
    background: linear-gradient(135deg, #1A2A3A, #2C3E50);
    color: var(--white);
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

    .footer::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255,107,107,0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
}

    .footer-logo i {
        font-size: 40px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.footer h4 {
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

    .footer h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 3px;
        background: var(--gradient-primary);
        border-radius: 3px;
    }

.footer ul {
    list-style: none;
    padding: 0;
}

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

        .footer ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

            .footer ul li a:hover {
                color: var(--primary-color);
                transform: translateX(-5px);
            }

.working-hours li {
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 15px;
}

    .social-links a {
        width: 45px;
        height: 45px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 20px;
        backdrop-filter: blur(10px);
        border: 2px solid transparent;
    }

        .social-links a:hover {
            background: var(--gradient-primary);
            transform: translateY(-5px);
            border-color: rgba(255,255,255,0.3);
        }

.footer-bottom {
    text-align: center;
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

    .footer-bottom p {
        color: rgba(255,255,255,0.6);
        font-size: 15px;
    }

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes progress {
    0% {
        width: 0%;
    }

    20% {
        width: 20%;
    }

    40% {
        width: 40%;
    }

    60% {
        width: 60%;
    }

    80% {
        width: 80%;
    }

    100% {
        width: 100%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .floating-card {
        display: none;
    }

    section {
        padding: 80px 0;
    }

    .appointment-form {
        padding: 30px;
    }
}

/* Additional Colorful Elements */
.bg-gradient-1 {
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
}

.bg-gradient-2 {
    background: linear-gradient(135deg, #A06AB4, #FFB347);
}

.text-shine {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

/* Card Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

    .hover-lift:hover {
        transform: translateY(-10px);
    }

/* Gradient Borders */
.gradient-border {
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

    .gradient-border::before {
        content: '';
        position: absolute;
        top: -2px;
        right: -2px;
        bottom: -2px;
        left: -2px;
        background: var(--gradient-primary);
        border-radius: inherit;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gradient-border:hover::before {
        opacity: 1;
    }
/* Testimonials Section Enhanced */
.testimonials-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #FFF5F5 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .testimonials-section::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255,107,107,0.05) 0%, transparent 70%);
        border-radius: 50%;
        /*animation: float 20s ease-in-out infinite;*/
    }

    .testimonials-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(78,205,196,0.05) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 25s ease-in-out infinite reverse;
    }

.testimonials-carousel {
    padding: 20px 0 40px;
    margin: 0 -15px;
}

.testimonial-card {
    padding: 15px;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .testimonial-card:hover {
        transform: translateY(-10px);
    }

.testimonial-card-inner {
    background: var(--white);
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,107,107,0.1);
}

    .testimonial-card-inner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }

.testimonial-card:hover .testimonial-card-inner::before {
    transform: translateX(0);
}

.testimonial-card:hover .testimonial-card-inner {
    box-shadow: 0 30px 60px rgba(255,107,107,0.15);
}

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

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFF5F5, #FFE5E5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .quote-icon i {
        font-size: 30px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.rating {
    display: flex;
    gap: 5px;
}

    .rating i {
        color: #FFB800;
        font-size: 18px;
        filter: drop-shadow(0 2px 4px rgba(255,184,0,0.2));
    }

.testimonial-body {
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
    font-style: italic;
    position: relative;
    padding-right: 20px;
    border-right: 3px solid var(--primary-color);
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px dashed rgba(0,0,0,0.05);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar-la {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) border-box;
    box-shadow: 0 10px 20px rgba(255,107,107,0.2);
    position: relative;
}

    .author-avatar-la::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 50%;
        padding: 3px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        transition: transform 0.3s ease;
    }

.testimonial-card:hover .author-avatar img {
    transform: scale(1.1);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 5px 0;
}

.author-title {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 3px;
}

.treatment-date {
    font-size: 12px;
    color: var(--text-light);
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #2E7D32;
}

    .verified-badge i {
        font-size: 16px;
        color: #2E7D32;
    }

/* Testimonials Navigation */
.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--primary-color);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

    .testimonial-prev::before,
    .testimonial-next::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-primary);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 0;
    }

    .testimonial-prev i,
    .testimonial-next i {
        position: relative;
        z-index: 1;
    }

    .testimonial-prev:hover,
    .testimonial-next:hover {
        transform: scale(1.1);
        box-shadow: 0 15px 30px rgba(255,107,107,0.3);
    }

        .testimonial-prev:hover::before,
        .testimonial-next:hover::before {
            opacity: 1;
        }

        .testimonial-prev:hover i,
        .testimonial-next:hover i {
            color: var(--white);
        }

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    padding: 30px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    border-radius: 80px;
    border: 1px solid rgba(255,255,255,0.8);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-color);
    font-weight: 500;
}

    .trust-item i {
        font-size: 24px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* Owl Carousel Custom Styles */
.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.owl-carousel .owl-item {
    opacity: 0.3;
    transition: all 0.3s ease;
}

    .owl-carousel .owl-item.active {
        opacity: 1;
    }

.owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,107,107,0.2);
    border: none;
    transition: all 0.3s ease;
}

    .owl-dot.active {
        width: 30px;
        background: var(--gradient-primary);
        border-radius: 10px;
    }

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card-inner {
        padding: 25px;
    }

    .author-avatar-la {
        width: 60px;
        height: 60px;
    }

    .author-name {
        font-size: 16px;
    }

    .verified-badge {
        padding: 5px 10px;
        font-size: 12px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
        border-radius: 30px;
        padding: 20px;
    }

    .testimonials-nav {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .author-info {
        width: 100%;
    }
}