.service-card {
    background: #0000;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    /* background: linear-gradient(135deg, #00ADB5 0%, #42464e 100%); */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-top: 15px;
}
.service-icon i {
    font-size: 2rem;
    color: #00ADB5;
}
.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: black;
}

.service-desc {
    color: #42464e;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #00ADB5;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #393E46;
}

.gradient-text {
    background: linear-gradient(135deg, #00ADB5 0%, #393E46 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}
i{
    font-size: 1.5rem;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #00ADB5 0%, #393E46 100%);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    font-weight: 600;
    padding-left: 5px;

}

.contact-banner {
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: white;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, transparent 60%);
    animation: rotate-bg 10s linear infinite;
    z-index: 0;
}

.contact-banner .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.contact-item i {
    font-size: 1.5rem;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Animation */
@keyframes rotate-bg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Banner Styling */
.clinic-banner {
    background: linear-gradient(135deg, #36d1dc, #5b86e5);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

/* Rotating Background Effect */
.clinic-banner::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    /* background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 20%, transparent 80%); */
    animation: rotate-bg 15s linear infinite;
    z-index: 0;
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Content Styling */
.clinic-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.clinic-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.clinic-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #f8f9fa;
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #36d1dc;
    background: white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: #f8f9fa;
    color: #5b86e5;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Background Rotation Animation */
@keyframes rotate-bg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.glass-effect:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-card {
    text-align: center;
    margin-bottom: 30px;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background-color: #fff;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.btn-contact {
    background: rgba(255, 255, 255, 0.9);
    color: #36d1dc;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: white;
    transform: translateX(-5px);
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .clinic-title {
        font-size: 2rem;
    }
    
    .clinic-subtitle {
        font-size: 1.2rem;
    }
}
	
.booking-section {
    direction: rtl;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.booking-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0,173,181,0.95), rgba(57,62,70,0.95));
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    animation: formSlideUp 0.6s ease-out;
}

.form-floating {
    margin-bottom: 1rem;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #00ADB5;
    box-shadow: 0 0 0 0.25rem rgba(0,173,181,0.25);
}

.form-floating label {
    padding: 1rem;
    color: #6c757d;
}

.form-floating label i {
    margin-left: 8px;
    color: #00ADB5;
}

.submit-btn {
    background: linear-gradient(45deg, #00ADB5, #393E46);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@keyframes formSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 20px;
    }
}
.counter-section {
    direction: rtl;
    padding: 80px 0;
    background-color: #fff;
}

.stat-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    color: #00ADB5;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #393E46;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.stat-title {
    color: #6c757d;
    margin-top: 10px;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-card {
        margin-bottom: 20px;
    }
}

/* New styles for enhanced layout */
.featured-card .large-image {
    height: 400px;
}

.compact-card .workspace-image {
    height: 200px;
}

.featured-card {
    height: 100%;
}

.featured-card .workspace-content {
    padding: 30px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}


.gallery-item:hover img {
    transform: scale(1.1);
}

.section-subtitle {
    color: #00ADB5;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #00ADB5;
    border-radius: 2px;
}

@media (max-width: 991px) {
    .featured-card .large-image {
        height: 300px;
    }
}
.gallery-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
padding: 20px;
transform: translateY(100%);
transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
transform: translateY(0);
}

.gallery-overlay h4 {
color: white;
font-size: 1.1rem;
margin: 0;
}

.large-gallery {
height: 400px;
}

.large-gallery img {
height: 100%;
}
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background-color: #fff;
    color: #008891;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #00ADB5;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateX(-5px);
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .contact-card {
        padding: 30px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

.footer {
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('../../assets/img/bg/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.footer-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,173,181,0.9), rgba(57,62,70,0.9));
    pointer-events: none;
}

.widget-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 50px;
    height: 2px;
    background: #00ADB5;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff80;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00ADB5;
    padding-right: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00ADB5;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 60px;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: #ffffff80;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright {
        text-align: center;
    }
}
.footer {
background-image: 
url('assets/img/patterns/pattern-dots.png'),
url('assets/img/patterns/pattern-lines.png'),
url('assets/img/bg/footer-bg.jpg');
background-blend-mode: soft-light;
background-size: 30px, cover, cover;
position: relative;
color: white;
overflow: hidden;
}

.footer-pattern {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.1) 1px, transparent 0);
background-size: 40px 40px;
opacity: 0.3;
pointer-events: none;
}

.footer-waves {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100px;
background: url('assets/img/shapes/waves.svg') repeat-x;
background-size: 1000px 100px;
transform: rotate(180deg);
opacity: 0.1;
}

.footer-bg-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(
135deg,
rgba(0,0,0,0.97) 0%,
rgba(0,0,0,0.95) 40%,
rgba(0,0,0,0.9) 100%
);
backdrop-filter: blur(5px);
}

/* Add these animations */
@keyframes wave {
0% {
background-position-x: 0;
}
100% {
background-position-x: 1000px;
}
}

.footer-waves {
animation: wave 20s linear infinite;
}

@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}

.footer-pattern {
animation: float 15s ease-in-out infinite;
}
.slider-section {
    position: relative;
    width: 100%;
    height: auto; /* الارتفاع يعتمد على المحتوى */
    overflow: hidden; /* لتجنب ظهور أجزاء خارج السلايدر */
    padding: 20px 0; /* إضافة مسافات علوية وسفلية إن لزم الأمر */
}

.single-slider {
    position: relative;
    width: 100%;
    height: auto; /* اجعل ارتفاع كل شريحة تلقائي */
    display: flex;
    align-items: center; /* لتمركز المحتوى عموديًا */
    justify-content: center;
    background-size: cover; /* لضبط صورة الخلفية */
    background-position: center; /* لمحاذاة الخلفية في المنتصف */
    padding: 60px 0; /* لتوفير مسافة داخل السلايدر */
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
}

.slider-content {

    color: white;
    position: relative;
    z-index: 1;
}

.subtitle {
    display: inline-block;
    font-size: 1.2rem;
    background: rgba(0,173,181,0.2);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    color: #00ADB5;
}

.slider-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slider-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slider-buttons {
    display: flex;
    gap: 20px;
}

.primary-btn {
    background: #00ADB5;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.outline-btn {
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .single-slider {
        min-height: 600px;
    }

    .slider-content h1 {
        font-size: 2.5rem;
    }
}
.navbar {
    padding: 15px 0;
    background: white;
}

.logo {
    height: 60px;
    width: auto;
}

.nav-link {
    color: #333;
    font-weight: 600;
    padding: 10px 15px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.nav-link:hover, .nav-link.active {
    color: #00ADB5;
}

.btn-primary {
    border: none;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #008891;
    transform: translateY(-2px);
    color: white;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #333;
    display: block;
    margin: 6px 0;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-top: 15px;
    }
}
.-subtle {
    color: #ac11cb;
}
.expert-doctors {
    background: #f8f9fa;
    overflow: hidden;
}

.doctor-image {
    position: relative;
    padding: 20px;
}

.doctor-image img {
    transform: scale(1.05);
    transition: all 0.5s ease;
}

.doctor-image:hover img {
    transform: scale(1);
}

.experience-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    background: #00ADB5;
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.features-list i {
    margin-left: 10px;
}

@media (max-width: 991px) {
    .doctor-content {
        padding-top: 40px;
        text-align: center;
    }

    .features-list {
        display: inline-block;
        text-align: right;
    }
}
.workspace-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.workspace-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.workspace-card:hover {
    transform: translateY(-10px);
}

.workspace-image {
    position: relative;
    overflow: hidden;
}

.workspace-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.workspace-card:hover .workspace-image img {
    transform: scale(1.1);
}

.workspace-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.workspace-card:hover .workspace-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    text-align: right;
}

.icon-feature {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #00ADB5;
}

.featured-card .large-image {
    height: 500px;
}

.hover-card .workspace-image {
    height: 240px;
}

.workspace-features {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.workspace-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6c757d;
}

@media (max-width: 991px) {
    .featured-card .large-image {
        height: 400px;
    }
}
.facility-gallery {
position: relative;
}

.gallery-item {
border-radius: 15px;
overflow: hidden;
position: relative;

}

.featured-gallery {
height: 620px;
}

.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;

}

.gallery-item:hover img {
transform: scale(1.1);
}

.gallery-overlay {
background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
padding: 30px;
}

.gallery-overlay .overlay-content {
position: absolute;
bottom: 30px;
right: 30px;
left: 30px;
}

@media (max-width: 768px) {
.featured-gallery {
    height: 400px;
}

.gallery-item {
    height: 250px;
}
}
.exclusive-services {
    background: #f8f9fa;
}

.subtitle {
    color: #00ADB5;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.premium-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-10px);
}

.card-image {
    position: relative;
    height: 250px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exclusive-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #00ADB5;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.features-list li {
    margin-bottom: 10px;
    color: #555;
}

.features-list i {
    color: #00ADB5;
    margin-left: 10px;
}

.card-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.whatsapp-btn, .call-btn {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;

}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.call-btn {
    background: #393E46;
    color: white;
}

.whatsapp-btn:hover, .call-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
    color: #0000;
}
