/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #0e6c5f;
	--secondary-color: #f3ad56;
	--text-dark: #333333;
	--text-light: #666666;
	--bg-light: #f5f5f5;
	--white: #ffffff;
	--transition: all 0.3s ease;
}

body {
	font-family: "Arial", sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.btn-warning{
    background-color:var(--secondary-color) !important;
    border-color:var(--secondary-color) !important;
}
.btn-success{
    background-color:var(--primary-color) !important;
    border-color:var(--primary-color) !important;
}
.text-success{
	color:var(--primary-color) !important;
}
/* Header Styles */
.header {
	background: var(--white);
	padding: 20px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
	height: 50px;
	width: auto;
}

.iti {
	width: 100%;
}

.iti--allow-dropdown .iti__flag-container {
	right: 0;
	left: auto;
}

.iti__selected-flag {
	direction: ltr;
	/* keep flag and code left-to-right */
}

input[type="tel"] {
	text-align: right;
	padding-right: 60px;
	/* space for flag dropdown */
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 30px;
	align-items: center;
}

.nav-menu a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	transition: var(--transition);
	position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
	color: var(--primary-color);
}

.nav-menu a.active::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--primary-color);
}

.dropdown-menu.show {
	background: #ecf3f2;
	box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
	width: auto;
}

.nav-link {
	font-size: 18px !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
	color: rgb(26 107 126) !important;
	font-weight: 700;
	border-bottom: 3px solid #1a6b7e;
}

.navbar.scrolled {
	background-color: #ffffff !important;
	/* solid color after scroll */
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
}

.logo {
	height: 50px;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: var(--primary-color);
	transition: var(--transition);
}

/* Hero Section */
.hero {
	background: var(--bg-light);
	padding-top: 50px;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	margin-bottom: 20px;
}

.hero-text h1 {
	font-size: 36px;
	color: var(--primary-color);
	margin-bottom: 22px;
	line-height: 1.2;
    font-weight: 700;
}

.hero-text h2 {
	font-size: 26px;
	line-height: 1.5;
	font-weight: normal;
    font-weight: bold;
}
.hero-text p{
    font-size: 20px;
}
.hero-image img {
	width: 100%;
	height: auto;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 15px 35px;
	text-decoration: none;
	font-weight: 600;
	border-radius: 5px;
	transition: var(--transition);
	border: none;
	cursor: pointer;
	font-size: 14px;
	letter-spacing: 0.5px;
}

.service-card .btn,
.about-preview .btn,
.contact-form .btn,
.hero-text .btn,
.book_appointment {
	margin-top: auto !important;
	background: #f3ad56 !important;
	border-color: #f3ad56 !important;
	color: #fff !important;
	padding: 10px 0;
}

.btn-primary {
	background: var(--secondary-color);
	color: var(--white);
}

.btn-primary:hover {
	background: #e09515;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

.btn-link {
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.5px;
	transition: var(--transition);
}

.btn-link:hover {
	opacity: 0.8;
}

/* Stats Grid */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.stat-card {
	background: var(--primary-color);
	color: var(--white);
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	transition: var(--transition);
}

.stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(26, 107, 107, 0.3);
}

.stat-card h2 {
	font-size: 24px;
	margin: 10px;
    font-weight: 900;
}

.stat-card p {
	font-size: 20px;
	opacity: 0.9;
}

.stat-card img {
	width: 64px;
}

/* About Preview Section */
.about-preview {
	padding: 60px 0;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
	font-size: 36px;
	color: var(--primary-color);
	margin-bottom: 20px;
	font-weight: 700;

}

.about-text p {
	color: var(--text-light);
	margin-bottom: 30px;
	line-height: 1.8;
}

/* Vision & Mission Section */
.vision-mission {
	background: #f5f5f5;
	color: var(--white);
	padding: 80px 0;
}

.vision-mission .vm-div {
	background: var(--primary-color);
	padding: 20px;
	border-radius: 8px;
	min-height: 170px;
}

.vm-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.vm-text h2 {
	font-size: 42px;
	margin-bottom: 40px;
}

.vm-item {
	margin-bottom: 30px;
}

.vm-item h3 {
	font-size: 18px;
	margin-bottom: 10px;
	letter-spacing: 1px;
}

.vm-item p {
	opacity: 0.9;
	line-height: 1.8;
}

.vm-image img {
	width: 100%;
	height: auto;
}

/* Services Section */
.services {
	padding: 20px 0;
	background: var(--bg-light);
}

.services h1 {
	font-size: 38px;
	font-weight: 700;
	font-stretch: normal;
	font-style: normal;
	line-height: 0.84;
	letter-spacing: normal;
	text-align: right;
	color: #0e6c5f;
}

.section-title {
	text-align: center;
	font-size: 24px;
	color: #000000;
	margin: 30px 0px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.service-card {
	color: #000;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	border-top: 12px solid #0e6c5f;
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(26, 107, 107, 0.3);
}

.service-card .btn,
.about-preview .btn {
	margin-top: auto;
	background: #f3ad56;
	border-color: #f3ad56;
	color: #fff;
	padding: 10px 0;
    font-weight: 800;
}

.service_img {
	width: 100%;
}

.service_name {
	font-size: 24px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.33;
	letter-spacing: normal;
	color: #0e6c5f;
}

.serviceBtn {
	margin-top: auto !important;
	background: #f3ad56 !important;
	border-color: #f3ad56 !important;
	color: #fff !important;
	padding: 10px 0 !important;
	font-weight: 800 !important;
	font-size: 18px !important;

}

.service-icon {
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.service-icon img {
	width: 68px;
	margin-top: 10px;
}

.service-icon i {
	font-size: 60px;
	margin-top: 10px;
	color: #0e6c5f;
}

.service-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
}

.service-card p {
	opacity: 0.9;
	margin-bottom: 20px;
	line-height: 1.6;
}

/* service details */
.service_details {
	background: var(--primary-color);
	padding: 50px 0;
	color: var(--white);
}
.services .filter-box{
    width: 40%;
}
.filter-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-box label {
    font-size: 1rem;
    color: #333;
    white-space: nowrap;
}

.nationality-filter {
    min-width: 180px;
    border-radius: 50px !important;
    border: 1px solid #ccc !important;
    padding: 8px 16px !important;
    background-color: #fff !important;
    color: #333 !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
}

.nationality-filter:hover,
.nationality-filter:focus {
    border-color: #0e6c5f !important;
    box-shadow: 0 0 5px rgb(14 108 95) !important;
    outline: none;
}

html[dir="rtl"] .filter-box {
    flex-direction: row-reverse;
}

html[dir="rtl"] .filter-box label {
    margin-left: 8px;
    margin-right: 0;
}

.doctor-image-circle{

    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}
.doctor_online_data label{
    font-weight: bold;
    font-size: 14px;
}
.doctor_online_data .key_value{
    font-size: 16px;
    font-weight: 600;
    color: #0e6c5f;
}
.online-doctor-name{
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #0e6c5f;
}
a.online-book-btn{
    margin: 10px 0 !important;
}
.doctor-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.doctor-header {
    background-color: #0c5c4c;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.doctor-photo img {
    object-fit: cover;
    height: 150px;
}

.doctor-body {
    flex-grow: 1;
}
.doctor-card .book_appointment {
    border-radius: 6px;
    font-weight: 600;
}

.doctorImg {
	border-top-right-radius: 6px;
	height: -webkit-fill-available !important;
	width: 100%;
	object-fit: cover;
}

.service_provider .doctor-data {
	color: #fff;
	background: #0e6c5f;
	align-content: center;
	margin: 24px 0;
}

.service_provider .imgContainer {
	height: 150px;
}
.booking_doctor_data .name{
    font-family: Almarai;
    font-size: 24px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: #0e6c5f;
}
.booking_doctor_data .speciality{
        font-family: Almarai;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: normal;
    text-align: right;
    color: #0e6c5f;
}
/* consultaion */
/* Container */
.calendar-container {
        display: flex;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;

}

/* Calendar Box */
.calendar {
    border-right: 1px dashed #0e6c5f;
    /* width: 60%;
    padding: 20px;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); */
}

/* Slots Box */
#selectedDayHeader{
    font-size: 18px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.55;
  letter-spacing: normal;
  text-align: center;
  color: #0e6c5f;
}
.slots {
    height: 400px;
    overflow: auto;
    text-align: center;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

/* Header */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
h3#selectedDateSlot {
        font-size: 18px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.56;
        letter-spacing: normal;
        text-align: right;
        color: #000;
}
.changeDate{
    color: #0e6c5f;
    font-weight: bold;
}
.calendar-header button {
    border: none;
    background: #f1f1f1;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.calendar-header button:hover {
    background: #127c20;
    color: #fff;
}


#monthYear {
    font-size: 20px;
    font-weight: bold;
}

/* Weekday Row */
.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    color: #888;
}

.weekdays div {
    padding: 5px 0;
}

/* Days Grid */
.day-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 7px;
}

/* Day Cell */
.day {
      padding: 10px 0;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    background: #0e6c5f3b;
    transition: 0.2s;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #0e6c5f;
}

.day:hover {
    background: #47c172;
}

/* Selected Day */
.day.selected {
    background: #0e6c5f;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* Disabled Day */
.day.disabled {
    background: none;
    color: #bbb;
    cursor: not-allowed;
}

/* Today Highlight */
.day.today {
    border: 2px solid #007bff;
}

/* Slot Buttons */
.slot-btn {
    display: inline-block;
    margin: 8px;
    padding: 10px 16px;
    border: 2px solid #0e6c5f;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s;
    color: #0e6c5f;
}

.slot-btn:hover {
    background: #e6ffe6;
}

.slot-btn.selected {
    background: #0e6c5f;
    color: #fff;
}
#bookingForm .card-header, .calendarCard .card-header{
        background: #0e6c5f;
    color: #fff;
    text-align: center;
}
#formOverlay{
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    text-align: center;
    color: #fff;
    font-size: 24px;
    padding-top: 20%;
    align-content: center;
}
#formOverlay img{
    width: 95px;
}
/* Page Header */
.page-header {
	background: var(--primary-color);
	color: var(--white);
	padding: 50px 0;
	text-align: center;
    padding-bottom: 20px;
}

.page-header h1 {
	font-size: 48px;
	margin-bottom: 10px;
}

.page-header p {
	font-size: 20px;
}

/* About Full Page */
.counters {
	background: var(--bg-light);
}

.about-full {
	padding: 80px 0;
}

.about-intro {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 60px;
}

.about-intro h2 {
	font-size: 36px;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.about-intro p {
	color: var(--text-light);
	line-height: 1.8;
}

.timeline-section {
	text-align: center;
	padding: 20px 0;
	background: #fff;
}

.timeline-title {
	font-family: Almarai;
	font-size: 28px;
	font-weight: 800;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.78;
	letter-spacing: normal;
	color: #0e6c5f;
}

.timeline-subtitle {
	color: #444;
	max-width: 700px;
	margin: 10px auto 40px;
	line-height: 1.8;
	font-size: 15px;
}

.timeline {
	position: relative;
	max-width: 900px;
	margin: auto;
}

.timeline::after {
	content: '';
	position: absolute;
	width: 3px;
	background-color: #f5a623;
	/* orange line */
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.timeline-item {
	position: relative;
	width: 50%;
	padding: 15px 30px;
	box-sizing: border-box;
}

.timeline-item::before {
	content: '';
	position: absolute;
	top: 18px;
	width: 16px;
	height: 16px;
	background-color: #fff;
	border: 3px solid #f5a623;
	border-radius: 50%;
	z-index: 1;
}

.timeline-item.right::before {
	right: 100%;
	transform: translateX(50%);
}

.timeline-item.left::before {
	left: 100%;
	transform: translateX(-50%);
}

.timeline-item.right {
	left: 50%;
	text-align: left;
}

.timeline-item.left {
	left: 0;
	text-align: right;
}

.timeline-content {
	background-color: #0b6d57;
	color: #fff;
	padding: 8px;
	border-radius: 6px;
	position: relative;
	display: inline-block;
	max-width: 100%;
	width: 100%;
}

.timeline-content .year {
	color: #f5a623;
	font-weight: bold;
	display: block;
	margin-bottom: 8px;
}

.timeline-item.left .year {
	left: 106%;
	position: absolute;
	color: #f5a623;
	font-weight: bold;
	display: block;
	margin-bottom: 8px;
}

.timeline-item.right .year {
	right: 106%;
	position: absolute;
	color: #f5a623;
	font-weight: bold;
	display: block;
	margin-bottom: 8px;
}

/* Home care */
.category-card{
	color: #0e6c5f;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.category-card a{
    background: #0e6c5f;
    font-weight: 800;
    font-size: 18px
}
.category-card img{
    width:120px;
    height: 120px;
    border-radius:50%;
    align-self: anchor-center;
}
.category-card h2{
     font-family: Almarai;
  font-size: 24px;
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  color: #0e6c5f;
}
.category-card h4{
     font-family: Almarai;
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  color: #0e6c5f;
}
.homeCareServiceCard{
    text-align: left !important;
}
.homeCareServiceCard h3{
     font-size: 24px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #0e6c5f;
}
#homecareForm {
	/* background-color: #f5f5f5; */
    padding-top: 40px;
}

#homecareForm h2 {
	font-size: 36px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.1;
	letter-spacing: normal;
	text-align: center;
	color: #0e6c5f;
	margin-bottom: 40px;
}
.booked_service{
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: #0e6c5f;
}
.bookingData .card-header{
    background-color: #0e6c5f;
    text-align: center;
    color:  #fff;

}
/* Responsive */
@media (max-width: 768px) {
	.timeline::after {
		left: 8px;
	}

	.timeline-item {
		width: 100%;
		padding-left: 40px;
	}

	.timeline-item.left,
	.timeline-item.right {
		left: 0;
		text-align: left;
	}

	.timeline-item::before,
	.timeline-item.left::before {
		left: 0;
		transform: none;
	}

	.timeline-content {
		max-width: 100%;
	}

	.timeline-item.left .year,
	.timeline-item.right .year {
		position: relative;
		left: 0;
		right: 0;
	}

	.contact-form-wrapper {
		padding: 10px;
		border-radius: 10px;
	}
}

.vm-section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-top: 60px;
}

.vm-box {
	background: var(--primary-color);
	color: var(--white);
	padding: 40px;
	border-radius: 10px;
}

.vm-box h3 {
	font-size: 24px;
	margin-bottom: 15px;
}

.vm-box p {
	opacity: 0.9;
	line-height: 1.8;
}

/* Services Full Page */
.services-full {
	padding: 80px 0;
}

/* Contact Section */
.contact-section {
	padding: 80px 0;
}

.contact-section .card {
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
	background-color: #fff;
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.contact-info {
	padding: 20px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 4px;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-item h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

/* Contact Form */
.contact-form-wrapper {
	padding: 40px;
	border-radius: 10px;
}

.contact-form h2 {
	font-size: 28px;
	color: var(--primary-color);
	margin-bottom: 30px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: var(--text-dark);
	font-weight: 500;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-family: inherit;
	font-size: 14px;
	transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
}

.form-group textarea {
	resize: vertical;
}

.captcha-box {
	/* display: flex; */
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

/* intltelinput libarary start*/
.iti__country-list {
left:  0;
}
.iti {
	width: 100%;
	display: block !important;
	direction: rtl !important;
}

.iti--separate-dial-code .iti__selected-flag {
	background: none !important;
}

.iti .iti__selected-flag .down-arrow {
	left: 20px !important;
}

.iti .iti__selected-flag {
	padding: 6px !important;
}

.iti .iti__selected-flag .iti__flag {
	left: 0;
	right: 0;
}

.iti .iti__selected-flag .iti__arrow {
	margin-left: 6px;
	margin-right: 0px;
}

.iti.iti--allow-dropdown .iti__flag-container {
    height: 46px;
	left: 0px;
	right: auto;
	border-left: none !important;
	border-right: 1px solid #979797 !important;
}

.iti .iti__selected-flag {
	border-right: solid 0.5px #979797;
	border-left: none !important;
}

.iti .iti__selected-flag:focus {
	outline: none;
}

.iti.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
	background-color: #ffffff;
}

.iti input {
	text-align: left !important;
	padding-left: 100px !important;
}

.iti__country-name,
.iti__flag-box {
	float: left;
	margin-left: 6px;
	margin-left: 0px !important;
}

/* intltelinput libarary end */

.captcha-text {
	color: #000;
	padding: 8px 14px;
	letter-spacing: 4px;
	text-decoration: line-through;
	border-radius: 8px;
	user-select: none;
}

#reloadBtn {
	padding: 0px 16px;
	border: none;
	background: none;
	color: #0e6c5f;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 900;
	font-size: 22px !important;
}

#captchaInput {
	border: none;
	border-bottom: 1px solid gray;
	border-radius: 0;
	width: 100px;
	font-size: 14px;
}

/* Payment Section */
.payment-section {
	padding: 80px 0;
	background: #f5f5f5;
}

.payment-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
}

.payment-intro h2 {
	font-size: 36px;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.payment-intro p {
	color: var(--text-light);
	line-height: 1.8;
}

.payment-methods {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 60px;
}

.payment-card {
	background: var(--bg-light);
	padding: 40px;
	border-radius: 10px;
	text-align: center;
}

.payment-card h3 {
	color: var(--primary-color);
	font-size: 24px;
	margin-bottom: 15px;
}

.payment-card p {
	color: var(--text-light);
	line-height: 1.6;
}

.payment-info {
	background: var(--primary-color);
	color: var(--white);
	padding: 40px;
	border-radius: 10px;
}

.payment-info h3 {
	font-size: 24px;
	margin-bottom: 20px;
}

.payment-info ul {
	list-style-position: inside;
	line-height: 2;
}

.bank-data {
	border-radius: 8px;
	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.16);
	background-color: #fff;
	border-top: 10px solid #0e6c5f !important;
	text-align: left;
}

.bank-data h3,
.payment_head {
	font-family: Almarai;
	font-size: 32px;
	font-weight: 600;
	font-stretch: normal;
	font-style: normal;
	line-height: 1;
	letter-spacing: normal;
	color: #0e6c5f;
}

/* Privacy Section */
.privacy-section {
	padding: 80px 0;
}

.privacy-content {
	margin: 0 auto;
}

.privacy-content h2 {
	font-size: 36px;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.privacy-content h3,
.privacy-content h4 {
	font-size: 24px;
	color: var(--primary-color);
	margin-top: 40px;
	margin-bottom: 15px;
	font-weight: bold;
}

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

.privacy-content ul {
	color: var(--text-light);
	margin-left: 20px;
	margin-bottom: 20px;
	line-height: 1.8;
}

.last-updated {
	margin-top: 40px;
	font-style: italic;
	color: var(--text-light);
}

.privacy-section {
	background-color: #fafafa;
	color: #333;
	line-height: 1.7;
}

.privacy-section h1 {
	color: #0d6efd;
	text-transform: capitalize;
}

.privacy-section h3,
.privacy-section h4 {
	margin-top: 2rem;
	color: #198754;
}

.privacy-content p {
	text-align: justify;
	margin-top: 0.5rem;
}

/* Footer */
.footer {
	color: #000;
	box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.16);
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h4 {
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.17;
	letter-spacing: normal;
	text-align: left;
	color: #0e6c5f;

}

.footer-section p {
	opacity: 0.9;
	line-height: 1.8;
	margin-bottom: 10px;
}

.footer-section p i {
	margin-right: 4px;
	color: #1a6b7e;
}

.footer-section ul {
	list-style: none;
}

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

.footer-section ul li a {
	color: #000;
	text-decoration: none;
	opacity: 0.9;
	transition: var(--transition);
}

.footer-section ul li a:hover {
	opacity: 1;
	padding-left: 5px;
}

.footer-logo {
	height: 50px;
	width: auto;
	margin-bottom: 20px;
}

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

.footer-bottom p {
	opacity: 0.8;
}

.social a i {
	color: #1a6b7e;
	font-size: 22px;
	border: 2px solid #1a6b7e;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	padding-top: 8px;
}

.whatsapp-float {
	position: fixed;
	bottom: 25px;
	z-index: 9999;
	background-color: #25D366;
	color: white;
	border-radius: 50%;
	text-align: center;
	font-size: 28px;
	width: 55px;
	height: 55px;
	line-height: 55px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	transition: 0.3s ease;
}

.whatsapp-float:hover {
	background-color: #20b858;
	transform: scale(1.1);
}

.whatsapp-float.right {
	right: 25px;
}

.whatsapp-float.left {
	left: 25px;
}

/* Responsive Design */
@media (max-width: 968px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 90px;
		flex-direction: column;
		background: var(--white);
		width: 100%;
		text-align: center;
		transition: var(--transition);
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 20px 0;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-link {
		font-size: 18px;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.hero-content {
		grid-template-columns: 1fr;
	}

	.hero-text h1 {
		font-size: 36px;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.about-content {
		grid-template-columns: 1fr;
	}

	.vm-content {
		grid-template-columns: 1fr;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.contact-wrapper {
		grid-template-columns: 1fr;
	}

	.payment-methods {
		grid-template-columns: 1fr;
	}

	.vm-section {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-form-wrapper {
		padding: 10px;
		border-radius: 10px;
	}

	#homecareForm {
		padding-top: 20px;
	}

	#homecareForm h2 {
		font-size: 20px;
	}

	.payment_img {
		width: 50% !important;
	}
    .nationality-filter {
        width: 100% !important;
    }
    .services .filter-box{
    width: 80%;
}

.slots {
    height: 400px;
    overflow: auto;
    text-align: center;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-top: 20px;
}
.weekdays{
    font-weight: normal !important;
    font-size: 12px !important ;
}
}

@media (max-width: 480px) {
	.hero-text h1 {
		font-size: 28px;
	}

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

	.page-header h1 {
		font-size: 32px;
	}

	.footer-content {
		grid-template-columns: 1fr;
	}
    .calendar {
    border-bottom: 1px dashed #0e6c5f;
    border-right:none;
    padding: 10px 0px;
}
h3#selectedDateSlot{
    font-size: 14px !important;
    text-align: left !important;
}
}
