* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #008CF3;
    --secondary-color: #007bff;
    --tertiary-color: #000;
    --gray-color:#0a2e32;
    --green-color: #edf9fc;
    --gray-color-2: #0fea93;
    --dark-blue: #0a2e32;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    overflow-x: hidden;
    direction: rtl;
}

a {
    text-decoration: none;
    color: #fff;
}

/* top header */

.header
{
	 position:absolute;    
	 z-index: 9;
     width: 100%;
}
header .top-header {
    width: 100%;
	background-color:#008CF34D;
    color: #fff;
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
	position:relative;
}

/* social media */
header .top-header .container .social-media {
    display: flex;
    gap: 20px;
}

header .top-header .container .social-media a {
    color: #fff;
    text-decoration: none;
}

/* contact info */
header .top-header .container .contact-info {
    display: flex;
    gap: 20px;
}

header .top-header .container .contact-info a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
}

/* language and currency */
header .top-header .container .language-currency {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

header .top-header .container .language-currency .selected-lang,
header .top-header .container .language-currency .selected-currency {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
}

header .top-header .container .language-currency .selected-lang i,
header .top-header .container .language-currency .selected-lang span,
header .top-header .container .language-currency .selected-currency i,
header .top-header .container .language-currency .selected-currency span {
    font-size: 12px;
}

header .top-header .container .custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0; 
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    min-width: 105px;
    height: 0;
    z-index: 1000;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: all 0.3s ease;
    transform: translateY(5px);
    transform-origin: top;
    border-radius: 5px;
    overflow: hidden;
}

header .top-header .container .custom-dropdown-item {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
}

header .top-header .container .custom-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    border-radius: 5px;
    height: auto;
}

header .top-header .container .custom-dropdown-item:hover {
    background-color: #f0f0f0;
    cursor: pointer;
    color: #000;
}

header .top-header .container .language,
header .top-header .container .currency {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

header .top-header .container .flag-icon,
header .top-header .container .currency-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

header .bottom-header .container .language-currency {
    display: block;
}

header .bottom-header .container .language-currency {
    display: block;
    align-items: center;
    gap: 30px;
}

header .bottom-header .container .custom-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0; 
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    width: 100px;
    padding: 5px 0;
}

header .bottom-header .container .custom-dropdown-item {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
}

header .bottom-header .container .custom-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    border-radius: 5px;
    height: auto;
}

header .bottom-header .container .custom-dropdown-item:hover {
    background-color: #f0f0f0;
    cursor: pointer;
    color: #000;
}

header .bottom-header .container .language,
header .bottom-header .container .currency {
    display: inline-block;
    align-items: center;
    gap: 3px;
    font-size: 14px;
	color:#fff;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
header .bottom-header .container .language .selected-lang,
header .bottom-header .container .currency .selected-currency {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
header .bottom-header .container .flag-icon,
header .bottom-header .container .currency-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Media Queries for Top Header version 1*/
/* @media screen and (max-width: 1024px) {
    header .top-header .container .language-currency {
        gap: 15px;
    }
}

@media screen and (max-width: 768px) {
    header .top-header .container {
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 10px;
    }

    header .top-header .container .contact-info {
        justify-content: center;
        flex-wrap: wrap;
    }
    header .top-header .container .contact-info a span {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    header .top-header {
        padding: 10px 0;
    }
    header .top-header .container .language-currency {
        gap: 15px;
    }
    header .top-header .container .social-media , header .top-header .container .contact-info {
        gap: 15px;
    }
} */

/* Media Queries for Top Header version 2*/
@media screen and (max-width: 1024px) {
    header .top-header .container {
        padding: 0 15px;
    }

    header .top-header .container .contact-info {
        gap: 15px;
    }

    header .top-header .container .language-currency {
        gap: 20px;
    }
    header .top-header .container .language-currency {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    header .top-header {
        justify-content: center;
    }
    header .top-header .container {
        justify-content: center;
        gap: 10px;
    }
.header {
    position: absolute;
    z-index: 9;
    width: 100%;
    padding: 0 15px;
}
    header .top-header .container .contact-info {
        order: 3;
        justify-content: center;
        flex-wrap: wrap;
    }

    header .top-header .container .social-media {
        order: 1;
    }

    header .top-header .container .contact-info a span {
        display: none;
    }
    header .top-header .container .social-media {
        gap: 40px;
        align-items: center;
        margin-inline-start: 20px; 
        font-size: 18px;
    }
    header .top-header .container .contact-info {
        gap: 40px;
        align-items: center;
    }
    header .top-header .container .contact-info a {
        font-size: 18px;
    }
}

@media screen and (max-width: 576px) {
    header .top-header {
        padding: 15px 0;
    }
    header .top-header .container .social-media {
        gap: 25px;
        align-items: center;
        margin-inline-end: 5px;
    }
    header .top-header .container .contact-info {
        gap: 25px;
        align-items: center;
    }

    header .top-header .container .language-currency {
        gap: 15px;
    }
}

/* bottom header */
header .bottom-header {
     background-color:#ffffffb8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 100px;
	padding:20px;    
	margin-top:15px;
	border: 1px rgb(255 255 255 / 33%) solid;
}
header .bottom-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header .bottom-header .container .logo img {
    height: 60px;
    width: auto;
}

header .bottom-header .container .nav-menu .nav-list {
    display: flex;
    gap: 20px;
    list-style: none;
    padding-right: 0; 
    padding-inline-end: 0; 
    margin-bottom: 0;
}

header .bottom-header .container .nav-menu .nav-item {
    position: relative;
}

header .bottom-header .container .nav-menu .nav-item a {
    color: #1b274d;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.3s ease;
}

header .bottom-header .container .nav-menu .nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%; 
    width: 120%;
    height: 4px;
    background-color: var(--bs-white);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform: translate(50%, 0); 
}

header .bottom-header .container .nav-menu .nav-item a:hover {
    color: var(--primary-color);
}

header .bottom-header .container .btn-book-appointment {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

header .bottom-header .container .nav-list .btn-book-appointment {
    display: none;
}

header .bottom-header .container .btn-book-appointment:hover {
    background-color: #0a2e32;
    color: #fff;
}

header .bottom-header .container .menu-toggle,
header .bottom-header .container .close-menu {
    display: none;
    font-size: 24px;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
}
/* Dropdown styles */
.has-dropdown {
    position: relative;
}

header .bottom-header .container .nav-menu .nav-item.has-dropdown.active::after{
    display: none;
}
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.dropdown-toggle::after {
    display: none;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0; 
    background: #008cf3;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
    padding-right: 0; 
}
.dropdown-item.active, .dropdown-item:active {
    background: transparent;
}
.dropdown-menu li {
    text-align: center;
    padding: 5px;
}

.has-submenu {
    position: relative;
}

.submenu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submenu {
    display: none;
    position: absolute;
    right: 100%; 
    top: 0;
    background:#008cf3;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-width: 200px;
    padding-right: 0; 
    padding: 10px;
    list-style: none;
    border-radius: 10px;
}
.submenu-toggle i {
    transform: rotate(90deg); 
}

/* Mobile styles */
@media (max-width: 992px) {
    .dropdown-menu, .submenu {
        display: flex;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        transition: all 0.3s ease;
        padding: 0;

    }

    .dropdown-menu,
    .submenu {
        position: static;
        box-shadow: none;
    }

    .submenu-toggle i {
        transform: rotate(0deg);
    }

    /* Show dropdown when active */
    .has-dropdown.active {
        width: 100%;
    }
    .has-dropdown.active>.dropdown-menu,
    .has-submenu.active>.submenu {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 5px;
    }

    .has-submenu.active>.submenu , .has-dropdown.active>.dropdown-menu{
        opacity: 1;
        visibility: visible;
        max-height: 100%;
        padding: 10px;
        max-width: fit-content;
    }
}

/* Desktop hover styles */
@media (min-width: 993px) {
    .has-dropdown:hover > .dropdown-menu {
        display: block;
    }

    .has-submenu:hover > .submenu {
        display: block;
    }
}

/* Bottom Header Media Queries */
@media screen and (max-width: 1024px) {
    header .bottom-header .container {
        padding: 0 15px;
    }

    header .bottom-header .container .nav-menu .nav-list {
        gap: 20px;
    }
}

@media screen and (max-width: 992px) {
    header .bottom-header {
        padding: 10px 0;
    }

    header .bottom-header .container .menu-toggle,
    header .bottom-header .container .close-menu,
    header .bottom-header .container .nav-list .btn-book-appointment {
        display: block;
    }

    header .bottom-header .container .nav-menu {
        position: fixed;
        top: 0;
        left: -100%; 
        width: 270px;
        height: 100vh;
        background-color: #008cf3;
        padding: 60px 20px;
        transition: opacity 0.4s ease, visibility 0.4s ease, left 0.3s ease; 
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1); 
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
    }

    header .bottom-header .container .nav-menu.active {
        left: 0; 
        opacity: 1;
        visibility: visible;
        z-index: 1001;
    }

    header .bottom-header .container .nav-menu .nav-list {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        justify-content: center;
    }

    header .bottom-header .container .nav-menu .nav-item.active::after {
        width: 170%;
        right: 50%; 
        transform: translate(50%, 0); 
    }

    header .bottom-header .container .nav-menu .close-menu {
        position: absolute;
        top: 20px;
        left: 20px; 
        font-size: 24px;
        color: #333;
        background: none;
        border: none;
        cursor: pointer;
    }

    header .bottom-header .container .btn-book-appointment {
        display: none;
    }
    header .bottom-header .container .language-currency {
        display: flex;
    }
}

@media screen and (max-width: 576px) {
    header .bottom-header .container {
        padding: 0 15px;
    }

    header .bottom-header .container .logo img {
        height: 50px;
    }
}
.carousel-2
{
    height: 600px;
    overflow: hidden;
}
/* Main Hero Section */
main .container {
    display: block;
    justify-content: center;
    gap: 0;
    max-width: 100%;
    margin: 0 0 0 auto;
    padding: 0 0 0 0px;
}

main .container .left-side {
    flex: 1;
    margin-top: 0px;
    position: relative;
	background-color:#008CF31A;
	z-index:0;
	border-bottom:1px #e0e0e0 solid;

}

main .container .left-side .logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

main .container .left-side .small-logo-image {
    width: 40px;
    height: auto;
}

main .container .left-side .logo-title {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

main .container .left-side .hero-title {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1e293b;
}

main .container .left-side .hero-title span {
    color: var(--primary-color);
}

main .container .left-side .description {
    font-size: 18px;
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 520px;
}

main .container .left-side .payment-container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: fit-content;
}

main .container .left-side .payment-item h3 {
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 5px;
}

main .container .left-side .payment-item:first-child {
    background: #1e9ef432;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

main .container .left-side .payment-item .payment-item-image img {
    width: 20px;
    height: 20px;
}

main .container .left-side .payment-item-description {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

main .container .left-side .payment-item-description span {
    color: #64748b;
    font-size: 14px;
}

main .container .left-side .payment-item-description img {
    height: 20px;
    width: auto;
}

main .container .right-side {
    max-width: 100%;
    width: 100%;
    height: 600px;
	position: relative;
}

#myVideo {
    position: static;
    left: 0;
    top: 0;
	bottom: 0;
    width: 100%;
}
main .container .right-side img {
    height: 600px;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}

.carousel-indicators {
    bottom: 30px;
    margin-left: 0; 
}

.carousel-indicators [data-bs-target] {
    width: 40px !important;
    height: 5px !important;
    border-radius: 50px !important;
    background-color: white !important;
    border: 0;
}

.carousel-indicators [data-bs-target].active {
    width: 60px !important;
    height: 5px !important;
    border-radius: 50px !important;
    background-color: #E41E26 !important;
}

/* booking container */
main .container .left-side .booking-container {
    position: relative;
    bottom: 0px;
    min-width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    border-radius: 0px;
    box-shadow: -5px -3px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

main .container .left-side .booking-container .promo-banner {
    background-color: #00C978;
    color: white;
    text-align: center;
    padding: 12px;
    max-width: 390px;
    margin-right: auto; 
    border-radius: 10px 0px 45px 0px; 
}

main .container .left-side .booking-container .booking-section {
    padding: 0px 18% 50px 18%;
	
}

main .container .left-side .booking-container .booking-section .booking-header {
    margin-bottom: 24px;
}

main .container .left-side .booking-container .booking-section .icon-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

main .container .left-side .booking-container .booking-section .icon-title img {
    width: 40px;
    height: 40px;
}

main .container .left-side .booking-container .booking-section .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 20px;
    margin-bottom: 24px;
}

main .container .left-side .booking-container .booking-section .form-input-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    border: 1px solid #dddddd;
    border-radius: 40px;
    width: 100%;
    padding: 5px 5px;
    background: #ffffff;
    /*width: 310px;*/
	width:100%;
}

main .container .left-side .booking-container .booking-section .form-input-group i {
    font-size: 20px;
    color: #1772C4;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E2EDFB;
    border-radius: 50%;
}

main .container .left-side .booking-container .booking-section .form-input-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-color);
}

main .container .left-side .booking-container .booking-section .form-input-group input,
main .container .left-side .booking-container .booking-section .form-input-group select {
    padding: 3px 0px 3px 10px; 
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 16px;
    border: none;
    background: transparent;
    direction: rtl;
}

main .container .left-side .booking-container .booking-section .form-input-group input:focus,
main .container .left-side .booking-container .booking-section .form-input-group select:focus {
    outline: none;
}

main .container .left-side .booking-container .booking-section .form-input-group.country-code-input {
    padding: 0;
}

main .container .left-side .booking-container .booking-section .phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    overflow: hidden;
}

main .container .left-side .booking-container .booking-section .country-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background-color: var(--light-gray);
    border-left: 1px solid #ddd; 
}

main .container .left-side .booking-container .dropdown-container {
    position: relative;
    height: 100%;
}

main .container .left-side .booking-container .dropdown-container .selected-country-code {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F4F4F4;
    height: 100%;
    padding: 5px 10px 5px 5px;
    cursor: pointer;    
	border-radius: 0px 40px 40px 0px;
}

main .container .left-side .booking-container .custom-dropdown-menu {
    position: absolute;
    top: 100%;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    min-width: 105px;
    height: 0;
    z-index: 1000;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: all 0.3s ease;
    transform: translateY(5px);
    transform-origin: top;
    border-radius: 5px;
    overflow: hidden;
}

main .container .left-side .booking-container .booking-section .custom-dropdown-item {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
}

main .container .left-side .booking-container .booking-section .custom-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    border-radius: 5px;
    height: auto;
}

main .container .left-side .booking-container .booking-section .custom-dropdown-item:hover {
    background-color: #f0f0f0;
    cursor: pointer;
    color: #000;
}

main .container .left-side .booking-container .booking-section .country-code img {
    width: 20px;
    height: 15px;
}

main .container .left-side .booking-container .booking-section .phone-input input {
    border: none;
    flex: 1;
}

main .container .left-side .booking-container .booking-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

main .container .left-side .booking-container .booking-section .service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
}

main .container .left-side .booking-container .booking-section .service-item i {
    color: var(--primary-color);
}

main .container .left-side .booking-container .booking-section .offer-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 34px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
	width:100%;
}

main .container .left-side .booking-container .booking-section .offer-btn:hover {
    background-color: #0a2e32;
    color: #fff;
}

main .container .left-side .booking-container .booking-section .icon-title {
    margin-top: 10px;
}

main .container .left-side .booking-container .booking-section .icon-title .booking-title {
    font-size: 20px;
    font-weight: 600;
}

main .container .left-side .booking-container .booking-section .dropdown-container .selected-department {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    width: 100%;
}

main .container .left-side .booking-container .booking-section .dropdown-container .selected-department i,
main .container .left-side .booking-container .booking-section .dropdown-container .selected-country-code i {
    color: #000;
    width: 20px;
    height: 20px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    margin-right: auto; 
}

main .container .left-side .booking-container .booking-section .form-input-group.department-input {
    flex-direction: column;
    align-items: flex-start;
}

main .container .left-side .booking-container .booking-section .form-input-group.department-input .dropdown-container {
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}

main .container .left-side .booking-container .booking-section .dropdown-container .selected-department i.fa-border-all {
    font-size: 20px;
    color: #1772C4;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E2EDFB;
    border-radius: 50%;
    margin-right: 0; 
}

main .container .left-side .booking-container .booking-section .form-input-group.department-input .department-title label {
    font-weight: 400;
    margin-bottom: 5px;
}

main .container .left-side .booking-container .booking-section .form-input-group.department-input .dropdown-container .custom-dropdown-menu {
    width: 200px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .booking-section {
        padding: 16px;
    }

    main .container .left-side .booking-container .booking-section .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    main .container .left-side .booking-container .booking-section .form-row {
        grid-template-columns: 1fr;
    }
}

/* Media Queries */
@media (max-width: 1200px) {
    main .container .right-side {
        max-width: 500px;
    }

    main .container .right-side img {
        width: 100%;
        height: 600px;
        max-width: 500px;
    }

    main .container .left-side .booking-container {
        bottom: 50px;
    }

    main .container .left-side .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 1024px) {
    main .container .left-side .hero-title {
        font-size: 40px;
    }

    main .container .left-side .description {
        max-width: 90%;
    }

.carousel-2 {
    height: 300px;
    overflow: hidden;
}
    main .container .right-side {
        max-width: 100%;
        height: 300px;
        width: 100%;
    }

    main .container .right-side img {

        max-width: 100%;
    }
    main .container .left-side .booking-container {
        bottom: -200px;
        position: relative;
        bottom: 0;
        margin-top: 20px;
        padding: 0px 0 10px 0;
        max-width: 980px;
    }
    main .container .left-side .booking-container .booking-section .form-input-group{
        /*max-width: 290px;*/
    }
}

@media (max-width: 992px) {
    main .container {
        padding: 0 15px;
    }

    main .container .left-side .hero-title {
        max-width: 550px;
        font-size: 35px;
    }

    main .container .left-side .description {
        max-width: 550px;
        text-align: start;
        font-size: 16px;
    }

    main .container .right-side {
        /*display: none;*/
    }

    main .container .left-side .booking-container {
        position: relative;
        bottom: 0;
        margin-top: 20px;

    }

    main .container .left-side .booking-container .booking-section .form-row {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

}

@media (max-width: 768px) {


    main .container .left-side {
        margin-top: 40px;
    }

    main .container {
        flex-direction: column;
    }

    main .container .left-side .logo-container {
        justify-content: flex-start;
    }

    main .container .left-side .hero-title {
        font-size: 30px;
        text-align: start
    }
}

@media (max-width: 576px) {

    main .container .left-side .payment-item-description {
        flex-wrap: wrap;
    }

    main .container .left-side .hero-title {
        font-size: 28px;
    }

    main .container .left-side .description {
        font-size: 16px;
    }

    main .container {
        padding: 0 10px;
    }

    main .container .left-side .booking-container .promo-banner {
        font-size: 12px;
    }

    main .container .left-side .booking-container .booking-section .form-input-group input,
    main .container .left-side .booking-container .booking-section .form-input-group select {
        width: 100%;
        max-width: 250px;
    }

    main .container .left-side .booking-container .promo-banner {
        padding: 12px;
        max-width: 300px;

    }

    main .container .left-side .booking-container .booking-section .booking-header {
        margin-bottom: 10px;
    }
}


/* About Us Section */
.about-us {
    padding: 100px 0;
    background-color: #fff;
}

.about-us .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-us .left-side {
    flex: 1;
}

.about-us .left-side .about-image {
    position: relative;
    max-width: 600px;
}

.about-us .left-side .about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.about-us .right-side {
    flex: 1;
    max-width: 600px;
}

.about-us .section-label {
    color: black;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
    display: block;
    position: relative;
    margin-inline-start: 5rem;
}

.about-us .section-title {
    font-size: 40px;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 20px;
}

.about-us .section-label::before {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--primary-color);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(110%, -50%);
    border-radius: 20px;
}

.about-us .section-description {
    color: var(--gray-color);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.about-us .features-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.about-us .feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.about-us .feature-icon {

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us .feature-icon i {
    color: #1772C4;
    font-size: 20px;
}

.about-us .feature-content h3 {
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.about-us .feature-content p {
    color: var(--gray-color);
    font-size: 14px;
    line-height: 1.5;
}

.about-us .btn-book-appointment {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-us .btn-book-appointment:hover {
    background-color: #0a2e32;
    color: #fff;
}

/* About Us Responsive Styles */
@media (max-width: 1200px) {
    .about-us .section-title {
        font-size: 35px;
    }

    .about-us .features-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .about-us .container {
        flex-direction: column;
        gap: 40px;
    }

    .about-us .left-side,
    .about-us .right-side {
        max-width: 100%;
    }

    .about-us .left-side .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 60px 0;
    }

    .about-us .section-title {
        font-size: 30px;
    }

    .about-us .section-description {
        font-size: 16px;
    }

    .about-us .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .about-us {
        padding: 40px 0;
    }

    .about-us .container {
        padding: 0 15px;
    }

    .about-us .section-title {
        font-size: 26px;
    }

    .about-us .feature-icon {
        width: 40px;
        height: 40px;
    }

    .about-us .feature-icon i {
        font-size: 16px;
    }

    .about-us .feature-content h3 {
        font-size: 16px;
    }
}

/* Appointments Steps Section */
.appointments-steps {
    padding: 0px 0 80px;
    background: linear-gradient(90deg, #002147 0%, #0066CC 100%);
    color: #fff;
}

.appointments-steps .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.appointments-steps .container .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 0 0 20px 20px;
    padding: 15px;
    background-color: #fff;
    max-width: 300px;
    margin-inline: auto;
}

.appointments-steps .container .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.appointments-steps .container .section-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.appointments-steps .container .section-header .section-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.appointments-steps .container .section-header .btn-book-appointment {
    display: inline-block;
    padding: 12px 30px;
    background-color: #fff;
    color: #0066CC;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.appointments-steps .container .section-header .btn-book-appointment:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    color: white;
}

.appointments-steps .container .steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.appointments-steps .container .step-card {

    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #fff;
    color: black;
    max-width: 300px;
}

.appointments-steps .container .step-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
}

.appointments-steps .container .step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointments-steps .container .step-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.appointments-steps .container .step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}
.appointments-steps .container .step-card h3 span {
    font-size: 15px;
    font-weight: 500;
    display: block;
    color: #008cf3;
    margin-top: 10px;
}
.appointments-steps .container .step-card p {
    font-size: 0.95rem;
    opacity: 1;
	height: 120px;
	overflow: hidden;
    line-height: 1.6;
    color: #666666;
    transition: color 0.3s ease;
}
.appointments-steps .container .step-card:hover p {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .appointments-steps .container .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .appointments-steps .container .section-header .section-title {
        font-size: 2rem;
    }

    .appointments-steps {
        padding: 0px 0 50px;
    }
}

@media (max-width: 576px) {
    .appointments-steps .container .steps-grid {
        grid-template-columns: 1fr;
    }

    .appointments-steps .container .section-header .section-title {
        font-size: 1.75rem;
    }

    .appointments-steps .container .step-card {
        padding: 20px;
    }
}

/* Departments Section */
.departments {
    padding: 80px 0;
    background-color: #fff;
}

.departments .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.departments .section-header .section-label {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;

}


.departments .section-header .section-title {
    font-size: 2.5rem;
    color: #333;
    margin: 0;
    position: relative;
}

.departments .section-header .red-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.departments .section-header .red-line-content {
    display: block;
    max-width: 90px;
    width: 100%;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 20px;
}

.departments .container .departments-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.departments .container .department-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 300px;
    width: 100%;
}

.department-card:hover {
    transform: translateY(-5px);
}

.department-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.department-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.department-content {
    padding: 10px;
    text-align: right;
    position: relative;
    z-index: 1;
    width: calc(100% - 20px);
    top: -30px;
    background-color: #fff;
    border-radius: 10px;
    margin-inline: auto;
}

.department-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.department-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.department-content .department-title {
    color: var(--primary-color);
    font-size: 0.95rem;
    background-color: #F6F6F6;
    padding: 4px 10px;
    border-radius: 7px;

}

.department-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {

    .departments .section-header .section-title {
        font-size: 2rem;
    }



    .departments .section-header .red-line-content {

        max-width: 60px;

        height: 6px;


    }
}

@media (max-width: 576px) {

    .departments .section-header .section-title {
        font-size: 1.5rem;
    }

    .departments {
        padding: 40px 0;
    }

    .departments .section-title {
        font-size: 2rem;
    }
}


/* Reviews Section */
.reviews {
    padding: 60px 0;
    background-color: #fff;
}

.reviews .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews .section-header .section-label {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;

}


.reviews .section-header .section-title {
    font-size: 2.5rem;
    color: #333;
    margin: 0;
    position: relative;
}

.reviews .section-header .red-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.reviews .section-header .red-line-content {
    display: block;
    max-width: 90px;
    width: 100%;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 20px;
}
.reviews .reviews-grid {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.reviews .review-card {
    background: url("../images/koma.png");
    background-size: 50%;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 390px;
    border-bottom: 2px solid #0FEA93;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;

}
.reviews .review-text-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}
.reviews .review-text-container .client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
}

.reviews .rating {
    margin-bottom: 1rem;
}

.reviews .rating i {
    color: #0FEA93;
    margin-right: 0.25rem;
}

.reviews .review-text {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}


.reviews .client-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.reviews .client-details h4 {
    color: #333;
    margin: 0;
    font-size: 0.9rem;
}

.reviews .client-details p {
    color: #666;
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reviews  .reviews-grid {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .reviews  .review-card {
        width: 100%;
        max-width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .reviews .section-header .section-title {
        font-size: 2rem;
    }



    .reviews .section-header .red-line-content {

        max-width: 60px;

        height: 6px;


    }
}

@media (max-width: 576px) {
    .reviews {
        padding: 40px 0;
    }
    .reviews .section-header .section-title {
        font-size: 1.2rem;
    }
    .reviews .section-header .section-label {
  
        font-size: 0.8rem;
   
    
    }
    

  
    .reviews .section-header .red-line {
      flex-direction: column-reverse;
    }
}

/* Blog Section */ 
.blog {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.blog .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog .section-header .section-label {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
}       
.blog .section-header .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.blog .blog-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.blog .blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 400px;
    width: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog .blog-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog .blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog .blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.blog-meta .author,
.blog-meta .date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta .author i,
.blog-meta .date i {
    color: var(--primary-color);
}

.blog-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}
.read-more i {
    transform: rotate(180deg);
}
/* Responsive Styles */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog {
        padding: 60px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-image {
        height: 200px;
    }

    .blog-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .blog {
        padding: 40px 0;
    }

    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }

    .blog-image {
        height: 180px;
    }
}
/* Media Queries for Blog Section Header */
@media (max-width: 768px) {
            .blog .section-header .section-label {
        font-size: 0.9rem;
    }
    
    .blog .section-header .section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .blog .section-header .section-label {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .blog .section-header .section-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
}

/* Footer Section */
.footer {
    background-color: var(--dark-blue);
    color: white;
    padding: 60px 0 30px;
}

.footer  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.footer .footer-brand {
    max-width: 300px;
}

.footer .footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer .footer-description {
    color: #fff;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}
.footer .footer-content .footer-links-grid{
    display: flex;
    gap: 3rem;
    padding: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}
.footer .social-links {
    display: flex;
    gap: 15px;
}

.footer .social-link {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer .social-link:hover {
    color: var(--primary-color);
}

.footer .footer-links h3,
.footer .footer-contact h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
}

.footer .footer-links h3::after,
.footer     .footer-contact h3::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}
.footer .footer-links h3::before,
.footer     .footer-contact h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 200px;
    height: 2px;
    background-color: #343D67;
}
.footer .footer-links ul {
    list-style: none;
    padding: 0;
}

.footer .footer-links ul li {
    margin-bottom: 12px;
}

.footer .footer-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer .footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer .contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer .contact-info i {
    color: var(--primary-color);
}

.footer .payment-methods {
    padding: 20px;
    text-align: center;
    max-width: 1400px;
    margin: 1rem auto 0;
  
    background: #052759ae;
    border-radius: 5px;
}

.footer .payment-methods p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer .payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer .payment-icons img {
    height: 30px;
}

/* Media Queries */
@media (max-width: 992px) {
    .footer .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer .footer-brand {
        text-align: center;
        margin: 0 auto;
    }

    .footer .social-links {
        justify-content: center;
    }

    .footer .footer-links h3,
    .footer .footer-contact h3 {
        text-align: center;
    }

    .footer .footer-links h3::after,
    .footer .footer-contact h3::after {
        left: 20px;
        transform: translateX(-50%);
    }

    .footer .footer-links ul {
        text-align: center;
    }

    .footer .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer .footer-content {
        gap: 30px;
        justify-content: center;
    }

    .footer .footer-logo {
        max-width: 150px;
    }

    .footer .payment-icons img {
        height: 25px;
    }
    .footer .payment-methods {
        margin: 1rem 10px 0;
    }
}

section.departments {
    display: none !important;
}


.payment-methods {
    display: none;
}

img.logo-image {
    width: 100%;
}