:root {
    --main-color: #2f3638;
    --sec-color: #e9539c;
    --white-color: #fff;
    --main-transition: 0.4s;
}
* {
    margin: 0;
    padding: 0;
    font-family: "Amiri Quran", "serif";

    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    direction: rtl;
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-weight: 400;
    font-family: "Amiri Quran", "serif" !important;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
a,
input,
label {
    font-weight: bold !important;
}

.toast-success {
    background-color: #51a351 !important;
}

.toast-error {
    background-color: #bd362f !important;
}
ul {
    list-style: none;
}
a {
    text-decoration: none !important;
    color: var(--main-color);
    transition: 0.5s;
}
a:hover,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
}
#header {
    height: 70px;
    transition: all 0.5s;
    z-index: 997;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}
#header .logo img {
    max-width: 60%;
    margin: 0 0 0 -118px;
}
#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-direction: row-reverse;
}
.main-nav,
.main-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.main-nav > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
}
.main-nav a {
    display: block;
    position: relative;
    color: var(--sec-color);
    padding: 10px 15px;
    transition: 0.3s;
    font-size: 18px;
    font-weight: 600;
}
.main-nav .drop-down {
    z-index: 1050;
}
.main-nav .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% - 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--main-color);
    border-radius: 8px;
    transition: ease all 0.3s;
}
.main-nav .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    overflow: hidden;
    visibility: visible;
}
.main-nav .drop-down li:hover a {
    color: var(--sec-color);
}
.main-nav .drop-down li {
    min-width: 180px;
    position: relative;
}
.main-nav .drop-down ul a {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
    color: #fff;
}
.main-nav .drop-down > a:after {
    content: "\f107";
    font-family: FontAwesome;
    padding-left: 10px;
}
.main-nav .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}
.main-nav .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}
.main-nav .drop-down .drop-down > a {
    padding-right: 35px;
}
.main-nav .drop-down .drop-down > a:after {
    content: "\f105";
    position: absolute;
    right: 15px;
}
.dropdown-menu {
    background-color: var(--main-color);
    color: #fff !important;
    transition: 0.3s ease-in;
    border-radius: 8px;
    overflow: hidden;
    text-align: right;
}
.dropdown-menu a:hover {
    background-color: #fff;
}
.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: rgba(40, 38, 70, 0.8);
    transition: 0.4s;
}
.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mobile-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
}
.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
    color: var(--sec-color);
    text-decoration: none;
}
.mobile-nav .drop-down > a:after {
    content: "\f078";
    font-family: FontAwesome;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}
.mobile-nav .active.drop-down > a:after {
    content: "\f077";
}
.mobile-nav .drop-down > a {
    padding-right: 35px;
}
.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}
.mobile-nav .drop-down li {
    padding-left: 20px;
}
.mobile-nav-toggle {
    position: fixed;
    left: 0 !;
    top: 0;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: left;
    right: 24px;
}
.mobile-nav-toggle i {
    margin: 24px 0 24px 0;
    color: var(--sec-color);
}
.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(40, 38, 70, 0.8);
    overflow: hidden;
    display: none;
}
.mobile-nav-active {
    overflow: hidden;
}
.mobile-nav-active .mobile-nav {
    left: 0;
}
.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}
/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: rgba(40, 38, 70, 0.8);
    transition: 0.4s;
}
.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mobile-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
}
.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
    color: #8dc2fa;
    text-decoration: none;
}
.mobile-nav .drop-down > a:after {
    content: "\f078";
    font-family: FontAwesome;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}
.mobile-nav .active.drop-down > a:after {
    content: "\f077";
}
.mobile-nav .drop-down > a {
    padding-right: 35px;
}
.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}
.mobile-nav .drop-down li {
    padding-left: 20px;
}
.mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
    right: 24px;
}
.mobile-nav-toggle i {
    margin: 24px 24px 0 0;
    color: var(--sec-color);
}
.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(40, 38, 70, 0.8);
    overflow: hidden;
    display: none;
}
.mobile-nav-active {
    overflow: hidden;
}
.mobile-nav-active .mobile-nav {
    left: 0;
}
.mobile-nav-active .mobile-nav-toggle i {
    color: var(--sec-color);
}
*/
/* Slider  */
.swiper.slider {
    width: 100%;
    height: 100vh;
    direction: rtl;
}
.slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
.slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}
.slider .swiper-slide .content {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 2rem;
}
.slider .swiper-button-next,
.slider .swiper-button-prev {
    color: #fff;
}
.slider .swiper-pagination-bullet {
    background: #fff;
}
.slider .main-btn {
    color: #fff !important;
    font-size: 22px;
    font-weight: 500;
    margin: 0 15px !important;
}
.main-btn.two {
    background-color: transparent;
}
.main-btn.two:hover {
    background-color: var(--sec-color);
}
/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff4d94;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}
.section-title::before {
    content: "✨";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #ff99c8;
}

.lines {
    margin-bottom: 45px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.line {
    height: 4px;
    background: #ff4d94;
    border-radius: 2px;
}

.line:nth-child(1) {
    width: 300px;
}

.line:nth-child(2) {
    width: 200px;
}

.line:nth-child(3) {
    width: 100px;
}
/* Artist */
.artists {
    padding: 120px 0 20px !important;
}
.artist {
    padding: 60px 0 20px;
    background-color: #fff;
    position: relative;
}
.artist::before {
    position: absolute;
    bottom: 0;
    right: 38px;
    content: "";
    background: url(../img/dots.png);
    background-repeat: no-repeat;
    width: 420px;
    height: 100%;
}
@media (max-width: 991px) {
    .artist::before {
        bottom: 0;
        right: 10px;
        width: 220px;
    }
}
.artist .card:hover {
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}
.artist .card {
    border-radius: 12px;
    border: none;
    overflow: hidden;
    padding: 0 !important;
    background-color: #fff;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.artist .card-body .city {
    background-color: #e9539c;
    color: #fff;
    padding: 3px 12px;
    border-radius: 8px;
    position: absolute;
    bottom: 24px;
    right: 24px;
}
.artist .card-body .city span {
    font-size: 1rem;
    font-weight: 600;
}
.artist .card-body .brand {
    position: absolute;
    top: 24px;
    left: 24px;
}
.artist .card-body .brand {
    max-width: 80px;
}
.artist .card-body .city i {
    margin-left: 10px;
    color: #fff;
}
.artist .card-body {
    padding: 0;
    position: relative;
}
.artist .card-body img {
    width: 100%;
    object-fit: cover;
    max-height: 250px;
    object-position: center;
}
.artist .card .card-footer {
    text-align: right;
    padding-bottom: 20px;
}
.artist .card .card-footer h3 {
    color: var(--sec-color);
    font-size: 1.8rem;
    font-weight: 900;
}
.artist .card .card-footer p {
    color: var(--main-color);
    font-size: 1.1rem;
    font-weight: 500;
}
.main-btn {
    border: var(--sec-color) 1px solid;
    background-color: var(--sec-color);
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--main-color) !important;
    transition: 0.3s ease-in-out;
}
.main-btn:hover {
    background-color: transparent;
}
.singleArtist {
    text-align: right;
    padding: 100px 0 20px 0 !important;
}
.singleArtist .tembnail {
    border-radius: 12px;
    max-width: 100%;
}
.singleArtist .raleatedMakeupArtist ul {
    margin: 0 !important;
}

.singleArtist .raleatedMakeupArtist .card {
    padding: 0 !important;
}

.singleArtist .raleatedMakeupArtist li:not(:last-child) {
    margin-bottom: 15px;
}

.singleArtist .raleatedMakeupArtist img.rlated {
    width: 70px;
    height: 70px;
    border-radius: 8px;
}

.singleArtist .raleatedMakeupArtist .card-header {
    color: var(--sec-color);
    font-size: 1.2em;
    font-weight: 600;
}

.singleArtist .raleatedMakeupArtist .card-body a span {
    color: var(--sec-color);
    margin-right: 20px;
}

.singleArtist .raleatedMakeupArtist .card,
.singleArtist .booking-form {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #333;
}

#BookingModal .form-group,
.singleArtist .form-group {
    position: relative;
}
#BookingModal .form-icon,
.singleArtist .form-icon {
    position: absolute;
    top: 75%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--sec-color);
    font-size: 16px;
}
#filter ,
#search,
#BookingModal input:focus,
#BookingModal select:focus,
.singleArtist input:focus,
.singleArtist select:focus {
    outline: none !important;
    border-color: #ff69b4;
    box-shadow: 0 0 5px #ff69b4 !important;
}

#BookingModal .form-title,
.singleArtist .form-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #e91e63;
}

#BookingModal .form-group,
.singleArtist .form-group {
    margin-bottom: 15px;
}
#filter ,
#search,
#BookingModal input,
#BookingModal select,
.singleArtist input,
.singleArtist select {
    padding: 10px;
    width: 100%;
    border: 1px solid var(--sec-color) !important;
    border-radius: 4px;
}

#BookingModal .booking-form button,
.singleArtist .booking-form button {
    background-color: #e91e63 !important;
    color: #fff;
    border: none !important;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
#BookingModal .booking-form button:hover,
.singleArtist .booking-form button:hover {
    background-color: #c2185b;
}
.singleArtist .location span {
    margin-left: 10px !important;
    color: var(--sec-color);
}
.singleArtist .location h4 {
    color: var(--main-color);
}
.singleArtist h1 {
    color: var(--sec-color);
}
/* Gallery Styles */
.singleArtist .gallery-section {
    padding: 50px 0;
}

.singleArtist .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.singleArtist .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.singleArtist .gallery-item img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.singleArtist .gallery-item:hover img {
    transform: scale(1.1);
}

.singleArtist .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.singleArtist .gallery-item:hover .overlay {
    opacity: 1;
}

.singleArtist .view-btn {
    padding: 10px 20px;
    background-color: #e91e63;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.singleArtist .view-btn:hover {
    background-color: #c2185b;
}

/* Modal Styles */
.singleArtist .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 70px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
    padding-top: 60px;
}

.singleArtist .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    border-radius: 22px !important;
    position: relative;
    max-width: min-content;
    max-height: 80vh;
    object-fit: contain;
}
.singleArtist .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: var(--sec-color);
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.singleArtist .close:hover,
.singleArtist .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.singleArtist .modal-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-around;
    transform: translateY(-50%);
}

.singleArtist .modal-navigation button {
    background-color: transparent;
    border: none;
    color: var(--sec-color);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}
/* Stats */
.stats-section {
    text-align: center;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(-45deg, #000000, #e91e63, #9c27b0);
}
.stats-container {
    display: flex;
    justify-content: center;
    row-gap: 10px;
    column-gap: 30px;
    flex-wrap: wrap;
    overflow-x: auto;
}
.stat-box {
    background: #f9fafc;
    border-radius: 15px;
    padding: 15px;
    width: 250px;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    opacity: 0.8;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-box:hover {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.7);
}

.stat-icon-container {
    background: radial-gradient(circle, #ff7f50, #ff1493);
    border-radius: 50%;
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 5px auto;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.6);
    transition: background 0.3s ease;
}

.stat-box:hover .stat-icon-container {
    background: radial-gradient(circle, #ff1493, #ff7f50);
}

.stat-icon {
    font-size: 2rem;
    color: #fff;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--sec-color);
    margin-bottom: 0px;
    display: block;
}

.stat-box p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--main-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .stats-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-box {
        width: 200px;
        margin: 10px;
    }

    .stat-icon-container {
        height: 60px;
        width: 60px;
    }

    .stat-icon {
        font-size: 2rem;
    }
}
/*  */
.pagination li {
    margin: 7px;
}

.pagination li a:hover {
    color: #e91e63;
}
.pagination li a {
    padding: 10px;
    font-weight: bold;
    color: var(--sec-color);
}

.pagination li:last-child .page-link {
    border-radius: 12px 0 0 12px;
}

.pagination li:first-child .page-link {
    border-radius: 0px 12px 12px 0;
}

.page-item.disabled .page-link,
.active > .page-link,
.page-link.active {
    padding: 10px;
    border: none !important;
    outline: none !important;
    background-color: #4d4c4cc2 !important;
}

.pagination {
    display: flex;
    justify-content: center;
}

@media only screan and(max-width:767px) {
    .navbar-nav {
        text-align: center;
    }
}
/* Login & Register */
.login {
    padding: 100px 0 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: right;
    height: 100%;
}
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    padding: 15px 20px 0;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.login-form {
    width: 100%;
    padding: 40px 30px 15px;
    background: #fff;
    border-radius: 15px;
}
.login-form h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    padding: 0 0 25px 0;
    color: var(--sec-color);
}
.login .form-group {
    margin-bottom: 25px;
    position: relative;
}
.login .form-group input {
    width: 100%;
    padding: 15px 10px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    background: transparent;
    color: var(--main-color);
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}
.login .form-group input:focus {
    border-color: var(--sec-color);
    background: #f9f9f9;
}
.login .form-group label {
    position: absolute;
    top: 50%;
    right: 15px;
    font-size: 0.9rem;
    color: #999;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.3s ease;
}
.login .form-group input:focus + label,
.login .form-group input:not(:placeholder-shown) + label {
    top: 0px;
    right: 10px;
    font-size: 0.8rem;
    color: #fff;
    padding: 5px 7px;
    border-radius: 4px;
    background: var(--sec-color);
}
.login .btn-submit {
    background-color: var(--main-color);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    margin-top: 10px;
}
.login .btn-submit:hover {
    transform: translateY(-3px);
    background-color: var(--sec-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.login .forgot-password {
    text-align: center;
    margin-top: 10px;
}
.login .forgot-password a {
    color: var(--sec-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
/* Footer */
html:lang(ar) .copyright p {
    text-align: right;
    font-size: 0.9rem;
}
html:lang(ar) .copyright a {
    margin-left: 5px;
}
footer {
    text-align: right;
    direction: rtl;
    padding: 20px 0px 0 0px;
    color: #fff;
    background-size: 400% 400% !important;
    background: linear-gradient(-45deg, #000000, #e91e63, #9c27b0);
    position: relative;
    animation: gradientAnimation 8s infinite;
}
footer a {
    color: #fff;
}
.ul-title,
.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-align: right;
    margin-bottom: 60px !important;
}
.footer-logo img {
    max-width: 50%;
    margin-right: auto;
    margin-left: 0;
}
footer ul {
    margin-top: 30px;
    padding-right: 20px;
    list-style-position: inside;
    margin-bottom: 10px;
}
footer ul li a {
    position: relative;
}
footer ul li {
    margin-bottom: 15px;
}
footer ul li i {
    margin-left: 10px;
}
.footer .angles li::before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f100";
}
footer .angles li a {
    display: inline-block;
    text-align: right;
    margin-right: 30px;
}
.ul,
footer ul span,
footer ul li a {
    line-height: 2;
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 600;
}
.copyright {
    padding: 5px 0 1px !important;
    background-color: var(--sec-color);
    width: 100% !important;
}
.copyright p,
.copyright a {
    color: var(--main-color);
    line-height: 2;
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 600;
}
.copyright a {
    margin-right: 5px;
}
.copyright {
    padding: 1px !important;
    background-color: black;
    width: 100% !important;
}
.copyright p,
.copyright a {
    color: #fff;
    line-height: 2;
    letter-spacing: 1px;
    font-size: 1rem;
    font-weight: 600;
}
.develop-by .innovo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.hero {
    background-color: #f9fafc;
    padding: 40px 20px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
    }
    .hero-content .text-content {
        margin-bottom: 20px;
    }
    .hero-content .text-content,
    .hero-content .image-content {
        max-width: 100%;
    }
    #filter ,
    #search {
    margin-bottom: 20px;
   }
}
.text-content {
    max-width: 50%;
    text-align: right;
}

.text-content h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
}

.text-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.text-content ul li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.text-content ul li span {
    color: #ff1493;
    font-size: 1.2rem;
    margin-left: 10px;
}
.btn {
    display: inline-block;
    background-color: #ff1493;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    text-align: right;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #ff69b4;
}
.image-content {
    max-width: 50%;
}
.image-content video {
    width: 100%;
    border-radius: 15px;
}

/* About  */
.about-haeder {
    margin-top: 70px;
    background: linear-gradient(to right, #000, #e91e63);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.about-haeder h1 {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
}

.about-haeder .about-haeder p {
    font-size: 18px;
    margin: 10px 0 0;
}

.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.about-page {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-page .content {
    flex: 1;
    text-align: right;
}

.about-page .content h2 {
    font-size: 32px;
    color: #e91e63;
    margin-bottom: 15px;
}

.about-page .content p {
    font-size: 18px;
    color: #555;
    text-align: justify;
}

.about-page .image {
    flex: 1;
}

.about-page .image video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.about-section {
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 1200px;
    text-align: center;
}
.about-section h2 {
    font-size: 28px;
    color: #d63384;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}
.about-section h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #d63384;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}
.feature-box {
    background: white;
    border-radius: 20px;
    padding: 25px;
    max-width: 300px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.feature-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.feature-header h2,
.feature-header h3 {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin: 0;
}
.feature-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}
@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }
    .feature-box {
        max-width: 100%;
    }
    .about-page {
    flex-direction: column !important;
    }
    .about-page .content,
    .about-page .image , {
    width:100%;
    }
    
}
.masonry-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.masonry-item.tall {
    grid-row: span 2;
}
.masonry-item.wide {
    grid-column: span 2;
}
@media (max-width: 768px) {
    .masonry-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .masonry-container {
        grid-template-columns: 1fr;
    }
}

/* Contact */
.contact-header {
    margin-top: 80px;
    background: linear-gradient(-45deg, #000000, #e91e63, #9c27b0);
    background-size: 400% 400%;
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    animation: gradientAnimation 8s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 95%);
}

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

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

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

.contact-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    position: relative;
}

.contact-header svg {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-icons span {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 10s linear infinite;
}

.floating-icons span:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 2s;
}

.floating-icons span:nth-child(2) {
    top: 50%;
    left: 75%;
    animation-delay: 4s;
}

.floating-icons span:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 6s;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }

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

    100% {
        transform: translateY(0) translateX(0);
    }
}

.contact-form-container {
    max-width: 900px;
    text-align: right;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.contact-form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #e91e63 !important;
    background: -webkit-linear-gradient(#d500f9, #f50057);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form-container form label {
    font-size: 1rem;
    margin-bottom: 10px;
    display: block;
    color: #9c27b0;
}

.contact-form-container form input,
.contact-form-container form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: none;
    background: #f3f4f6;
    box-shadow: inset 2px 2px 6px #d1d1d1, inset -2px -2px 6px #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container form input:focus,
.contact-form-container form textarea:focus {
    outline: none;
    transform: translateY(-2px);
    box-shadow: inset 2px 2px 6px #bfbfbf, inset -2px -2px 6px #ffffff;
}

.contact-form-container form button {
    background: linear-gradient(to right, #d500f9, #f50057);
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.social-links {
    position: relative;
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(120deg, #000000, #9c27b0);
    color: white;
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
}

.social-links h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.social-links a {
    display: inline-block;
    margin: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-links a:hover {
    background: white;
    color: #e91e63;
    transform: scale(1.2);
}

/* Reating */
#starRating {
    unicode-bidi: bidi-override;
    display: inline-block;
}
.star {
    font-size: 30px;
    cursor: pointer;
    color: #ccc;
    margin: 0 5px;
    transition: color 0.3s;
}
.star:hover,
.star.hovered,
.star.selected {
    color: gold;
}
#ratingForm {
    max-width: 400px;
    margin: 30px auto;
    background: linear-gradient(135deg, #f9f9f9, #e3e3e3);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    font-family: "Arial", serif;
    text-align: center;
}
#starRating {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.star {
    font-size: 30px;
    color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
}
.star:hover,
.star.active {
    color: #ff9800;
    transform: scale(1.2);
}
.star:hover ~ .star {
    color: #ccc;
}
.form-title {
    color: var(--sec-color);
}
#comment {
    width: 100%;
    min-height: 100px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: 700;
    font-family: serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#ratingForm input {
    margin-bottom: 10px;
    border-radius: 10px;
}
#ratingForm input:focus,
#comment:focus {
    outline: none !important;
    border-color: #ff69b4;
    box-shadow: 0 0 5px #ff69b4 !important;
}
.testimonial-section {
    margin: 50px auto 0;
    width: 100%;
    max-width: 1200px;
}
.swiper-slide {
    text-align: center;
    padding: 20px;
}
.testimonial-item {
    display: flex;
    padding: 40px 20px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
}
.testimonial-logo {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50%;
    margin-bottom: 15px;
}
.testimonial-name {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--sec-color);
    margin-bottom: 10px;
}
.testimonial-comment {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
}
.stars {
    color: #fbc02d;
}
.testimonial-section .swiper-wrapper {
    height: unset;
}
#BookingModal.modal {
    display: none;
    position: fixed;
    text-align: right;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
    padding-top: 90px;
}
#BookingModal .modal-content {
    background-color: #fff;
    margin: auto;
    position: relative;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    color: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#BookingModal .modal-title {
    font-size: 24px;
    font-weight: bold;
    color: #ff69b4;
    text-align: center;
    margin-bottom: 20px;
}

#BookingModal .close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    color: #000;
    cursor: pointer;
}
