/* ----------------------------------------------------------------------------------------
* Author        : Junaid Sami 
* Template Name : Glowix - Plastic Surgery & Beauty Clinic HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */

/* English Font - Neo Sans W23 */
@font-face {
    font-family: "Neo Sans W23";
    src: url("../webfonts/alfont_com_NeoSansW23-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Neo Sans W23";
    src: url("../webfonts/alfont_com_NeoSansW23-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Neo Sans W23";
    src: url("../webfonts/alfont_com_NeoSansW23-Ultra.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Arabic Font - Neo Sans Arabic */
@font-face {
    font-family: "Neo Sans Arabic";
    src: url("../webfonts/alfont_com_NeoSansArabic.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. What We Do css
08. Intro Video css
09. Case Study css
10. Why Choose Us css
11. How It Work css
12. Our Testimonial css
13. Our Result css
14. Our Appointment css
15. Our Blog css
16. Footer css
17. About Us Page css
18. Services Page css
19. Services Single css
20. Blog Archive css
21. Blog Single css
22. Case Study Page css
23. Case Study Single css
24. Team Page css
25. Team Single css
26. Testimonials Page css
27. Image Gallery css
28. Video Gallery css
29. FAQs Page css
30. Contact Us Page css
31. Book Appointment css
32. 404 Error Page css
33. Responsive css
-------------------------------------------------------------------------------------- */
/* ################################################
Client class names are prefixed with the section name to avoid conflicts and ensure specificity.
################################################ */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/
* {
    font-family: inherit; /* Prevent local override */
}
:root {
    --primary-color: #51112b;
    --secondary-color: #ffecda;
    --text-color: #69615d;
    --accent-color: #5d182e;
    --white-color: #ffffff;
    --divider-color: #51112a1a;
    --dark-divider-color: #ffffff1a;
    --error-color: rgb(230, 87, 87);
    --default-font: "Neo Sans W23", sans-serif;
    --accent-font: "Neo Sans W23", sans-serif;
    --arabic-font: "Neo Sans Arabic", sans-serif;
    --bg-light-beige: #f1e4d3;
    --bg-dark-beige: #c9baaa;
    --maroon-text: #5d182e;
    --maroon-btn: #5d182e;
    --bg-color: #ffecda;
    --font-color: #e6d2be;
}
.g-7,
.gy-7 {
    --bs-gutter-y: 7.5rem;
}
.font-color {
    color: var(--font-color) !important;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/
/* When HTML lang is Arabic, override it */
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6,
html[lang="en"] {
    font-family: var(--default-font);
}
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5,
html[lang="ar"] h6,
html[lang="ar"] {
    font-family: var(--arabic-font);
}
html[lang="en"] body {
    position: relative;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background: var(--bg-color);
}
html[lang="ar"] body {
    position: relative;
    font-family: var(--arabic-font);
    direction: rtl;
    text-align: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background: var(--bg-color);
}
.display-8 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--primary-color);
}

::-webkit-scrollbar-track {
    background-color: var(--primary-color);
    border-left: 2 solid var(--primary-color);
}
::-webkit-scrollbar {
    width: 7px;
    background-color: var(--primary-color);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}

::selection {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    filter: invert(1);
}

p {
    line-height: 1.6em;
    margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--accent-font);
    font-weight: 400;
    line-height: 1.2em;
    color: var(--primary-color);
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row > * {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > * {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 100px;
    padding: 17px 25px;
    margin-right: 50px;
    border: none;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.readmore-btn {
    background: var(--accent-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
    background: var(--primary-color);
}

.readmore-btn img {
    max-width: 14px;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover img {
    transform: rotate(45deg);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 2 solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bg-section {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    background-color: var(--secondary-color);
    border-radius: 30px;
}

.hero.hero-bg-image.bg-section,
.hero.hero-video.bg-section {
    max-width: 100%;
    border-radius: 0;
}

/* =========================================
   GENERAL HEADER SETUP
========================================= */
header.home-main-header.home-header {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}
.home-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
}
/* =========================================
   THE MAIN CAPSULE (The Slim Pill)
========================================= */
header.home-main-header.home-header .home-nav-menu-wrapper {
    background: var(--bg-color);
    padding: 2px 30px;
    border-radius: 0px 18px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

header.home-main-header.home-header .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px;
    align-items: center;
    margin: 0;
}
[dir="rtl"] header.home-main-header.home-header .navbar-nav {
    gap: 40px;
}

header.home-main-header.home-header .nav-link {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color) !important;
    padding: 10px 2px !important;
    line-height: 1; /* Keeps text centered in the slim bar */
}

/* =========================================
   LANGUAGE SUB-PILL (The Grey Inner Button)
========================================= */
header.home-main-header.home-header .language-pill-wrapper {
    background: var(--bg-color);
    border-radius: 0px 15px;
    padding: 2px 12px !important;
    display: flex;
    align-items: center;
    transition: background 0.3s;
}

header.home-main-header.home-header .language-pill-wrapper:hover {
    background: #ebebeb;
}

/* =========================================
   DIVIDER & LOGIN BUTTON (Separate Pill)
========================================= */
header.home-main-header.home-header .nav-separator {
    width: 1px;
    height: 18px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0 5px;
    list-style: none;
}

header.home-main-header.home-header .header-login-btn {
    background: var(--bg-color);
    color: var(--primary-color) !important;
    padding: 10px 35px;
    border-radius: 0px 18px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

header.home-main-header.home-header .header-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* =========================================
   DIRECTIONAL FIXES
========================================= */
html[dir="ltr"] .home-nav-menu-wrapper {
    margin-left: 30px;
}

html[dir="rtl"] .home-nav-menu-wrapper {
    margin-right: 30px;
}

html[dir="rtl"] header.home-main-header.home-header .header-contact-btn {
    margin-right: 20px;
}

html[dir="ltr"] header.home-main-header.home-header .header-contact-btn {
    margin-left: 20px;
}
.bg-section.dark-section {
    background-color: var(--primary-color);
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-row .section-title.section-title-center {
    width: 100%;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h3 {
    display: inline-block;
    position: relative;
    font-family: var(--default-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7em;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color);
    padding-left: 34px;
    margin-bottom: 10px;
}

/* i */

.dark-section .section-title h3 {
    color: var(--white-color);
}

.dark-section .section-title h3::before {
    filter: brightness(0) invert(1);
}

.section-title h1 {
    font-size: 60px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.section-title h2 {
    font-size: 48px;
    margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
    color: var(--white-color);
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}

.section-title-content p {
    margin: 0;
}

.dark-section .section-title-content p,
.dark-section .section-title p,
.dark-section .section-title h2,
.dark-section .section-title h1 {
    color: var(--white-color);
}

.section-btn {
    text-align: right;
}

.section-content-btn .section-btn {
    text-align: left;
    margin-top: 30px;
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
    position: relative;
    z-index: 100;
}

.main-header .bg-section {
    background: transparent;
    max-width: 1720px;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    background: var(--white-color);
    border: 2 solid var(--divider-color);
    border-top: none;
    border-radius: 0 0 20px 20px;
}

.navbar {
    padding: 30px;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}
.main-header .navbar-brand img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 40px;
}

.main-menu .nav-menu-wrapper > ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    margin: 0;
    position: relative;
}

.main-menu ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    padding: 15px !important;
    color: var(--primary-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 235px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--accent-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 235px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}
.main-menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after {
    content: "\f105";
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--white-color);
    padding: 8px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--primary-color);
    background-color: transparent;
    padding: 8px 20px 8px 23px !important;
}

.header-contact-btn {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-contact-now {
    font-family: var(--accent-font);
    font-size: 20px;
    line-height: normal;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.header-contact-now:hover {
    color: var(--accent-color);
}

.header-contact-now i {
    background-color: var(--secondary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    align-content: center;
    font-size: 18px;
    color: var(--accent-color);
    margin-right: 15px;
}

.header-contact-btn .btn-default {
    margin-right: 0;
}

.header-contact-btn .btn-default::before {
    display: none;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: var(--accent-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--white-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle
    a.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
    background-color: var(--white-color);
}

.navbar-toggle
    a.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle
    a.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
    background-color: var(--white-color);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--accent-color);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 8px 20px;
    color: var(--white-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: #f3f3f3;
}

.slicknav_menu ul ul li a {
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--white-color);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
    transform: translateY(-50%) rotate(-180deg);
    color: var(--primary-color);
}

/************************************/
/***   Custom Header code  css  ***/
/************************************/

.language-dropdown {
    position: relative;
}

.language-dropdown .nav-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(81, 17, 42, 0.04),
        rgba(205, 95, 55, 0.04)
    );
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.language-dropdown .nav-link:hover {
    background: linear-gradient(
        135deg,
        rgba(205, 95, 55, 0.15),
        rgba(81, 17, 42, 0.08)
    );
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(205, 95, 55, 0.25);
}

.language-dropdown .dropdown-menu {
    border: none;
    box-shadow: 0 15px 50px rgba(81, 17, 42, 0.18);
    border-radius: 18px;
    padding: 10px;
    min-width: 80px;
    animation: fadeInDown 0.3s ease;
    margin-top: 8px !important;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

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

.language-dropdown .dropdown-item {
    border-radius: 12px;
    padding: 12px 14px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.language-dropdown .dropdown-item:hover {
    background: linear-gradient(
        135deg,
        rgba(205, 95, 55, 0.12),
        rgba(81, 17, 42, 0.06)
    );
    transform: scale(1.05);
}

.language-dropdown .dropdown-item i {
    font-size: 24px !important;
}

/* Language flag container */
.lang-flag-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-flag-container i {
    font-size: 24px !important;
    width: 24px;
    height: 24px;
    display: inline-block;
}

/* Login Icon Enhancements */
.login-icon .nav-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(81, 17, 42, 0.04),
        rgba(205, 95, 55, 0.04)
    );
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    color: var(--primary-color);
    font-size: 20px;
}

.login-icon .nav-link:hover {
    background: linear-gradient(
        135deg,
        rgba(205, 95, 55, 0.15),
        rgba(81, 17, 42, 0.08)
    );
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(205, 95, 55, 0.25);
    color: var(--accent-color);
}

.header-login-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        var(--primary-color)
    );
    color: var(--white-color) !important;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(205, 95, 55, 0.35);
    position: relative;
    overflow: hidden;
}

.header-login-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: left 0.6s ease;
}

.header-login-btn:hover::before {
    left: 100%;
}

.header-login-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(205, 95, 55, 0.45);
    color: var(--white-color) !important;
}

.header-login-btn svg {
    transition: transform 0.3s ease;
}

.header-login-btn:hover svg {
    transform: scale(1.2) rotate(5deg);
}

/* User Dropdown Menu - Premium */
.dropdown-user .dropdown-menu {
    border: none;
    box-shadow: 0 15px 50px rgba(81, 17, 42, 0.18);
    border-radius: 18px;
    padding: 14px;
    min-width: 220px;
    animation: fadeInDown 0.3s ease;
    margin-top: 8px !important;
}

.dropdown-user .dropdown-item {
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dropdown-user .dropdown-item:hover {
    background: linear-gradient(
        135deg,
        rgba(205, 95, 55, 0.12),
        rgba(81, 17, 42, 0.06)
    );
    color: var(--accent-color);
    transform: translateX(8px);
}

.dropdown-user .dropdown-item i {
    width: 22px;
    text-align: center;
    font-size: 17px;
}

.dropdown-user .dropdown-divider {
    margin: 10px 0;
    border-color: rgba(81, 17, 42, 0.08);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/
.hero {
    position: relative;
    background-image: url("../images/hero-bg-shape.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    padding: 180px 0;
    overflow: clip;
}

.hero.hero-bg-image {
    position: relative;
    background: url("../images/hero-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 200px 0;
}

.hero.hero-bg-image::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(81, 17, 42, 0.7);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.hero.hero-video .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout {
    background: none;
    padding: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide {
    position: relative;
    padding: 200px 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination {
    position: absolute;
    bottom: 50px;
    text-align: left;
    left: calc(((1800px - 1300px) / 2) + 15px);
    z-index: 2;
}

.hero.hero-bg-image.hero-slider-layout
    .hero-pagination
    .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--dark-divider-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-bg-image.hero-slider-layout
    .hero-pagination
    .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.hero-content {
    align-content: center;
    position: relative;
    z-index: 2;
}

.hero-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 40px;
    justify-content: center;
}

.hero-body .video-play-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-body .video-play-button p {
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white-color);
    margin: 0;
}

.video-play-button a {
    height: 50px;
    width: 50px;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    transition: all 0.3s ease-in-out;
}

.video-play-button:hover a {
    border-color: var(--accent-color);
}

.video-play-button a i {
    font-size: 18px;
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.video-play-button:hover a i {
    color: var(--accent-color);
}

.hero-review-box {
    margin-top: 40px;
}

.hero-review-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-review-box ul li {
    display: inline-block;
    color: var(--secondary-color);
    margin-right: 10px;
}

.hero-review-box ul li:last-child {
    margin: 0;
}

.hero-review-box ul li img {
    max-width: 20px;
}

.hero-review-box ul li i {
    color: var(--accent-color);
}

.hero-image {
    background: url("../images/hero-image-bg-star.svg") no-repeat;
    background-position: center bottom;
    background-size: contain;
    height: 100%;
    align-content: end;
    text-align: center;
}

.hero-image img {
    margin-bottom: -180px;
    margin-top: -120px;
    max-width: initial;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us {
    padding: 100px 0;
}

.about-us-images {
    background: url("../images/fav.png") no-repeat;
    background-position: top 30px left 70px;
    background-size: 76px auto;
    display: flex;
    flex-wrap: wrap;
    margin-right: 20px;
}

.about-img-2,
.about-img-1 {
    width: 100%;
}

.about-img-1 {
    position: relative;
    padding-left: 240px;
}

.about-img-2 {
    max-width: 360px;
    margin-top: -312px;
}

.about-img-2 figure,
.about-img-1 figure {
    display: block;
    border-radius: 30px;
}

.about-img-2 img,
.about-img-1 img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.about-img-2 figure img,
.about-img-1 figure img {
    aspect-ratio: 1 / 1.257;
}

.company-experience-circle {
    position: absolute;
    right: 50%;
    bottom: 0;
    transform: translate(100%, 50%);
    border-radius: 50%;
    z-index: 2;
}

.company-experience-circle img {
    width: 100%;
    max-width: 180px;
    border-radius: 50%;
    animation: infiniterotate 25s infinite linear;
}

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

.about-experience-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
}

.about-experience-list,
.about-experience-image {
    width: calc(50% - 15px);
}

.about-experience-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-experience-list ul li {
    position: relative;
    line-height: 1.5em;
    margin-bottom: 15px;
    padding-left: 30px;
}

.about-experience-list ul li:last-child {
    margin-bottom: 0;
}

.about-experience-image figure {
    display: block;
    border-radius: 30px;
}

.about-experience-image img {
    width: 100%;
    aspect-ratio: 1 / 0.596;
    object-fit: cover;
    border-radius: 30px;
}

.about-us-body {
    background: var(--secondary-color);
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px;
    margin-top: 40px;
}

.about-contact-box {
    display: flex;
    align-items: center;
}

.about-contact-box .icon-box {
    background: var(--white-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.about-contact-box .icon-box i {
    font-size: 22px;
    color: var(--accent-color);
}

.about-contact-box-content {
    width: calc(100% - 60px);
}

.about-contact-box-content p {
    margin-bottom: 5px;
}

.about-contact-box-content h3 {
    font-size: 20px;
}

.about-contact-box-content h3 a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.about-contact-box-content h3:hover a {
    color: var(--accent-color);
}

/************************************/
/***     06. Our Services css	  ***/
/************************************/

.our-services {
    background-image: url(../images/service-bg-shape.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    padding: 100px 0;
}

.service-item {
    background-color: var(--white-color);
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
}

.service-content {
    margin-bottom: 30px;
}

.service-content-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 20px;
}

.service-content-title h2 {
    width: calc(100% - 90px);
    font-size: 22px;
    text-transform: capitalize;
    line-height: 1.4em;
}

.service-content-title h2 a {
    color: inherit;
}

.service-content p {
    margin: 0;
}

.service-image a {
    display: block;
    border-radius: 30px;

    overflow: hidden;
}

.service-image img {
    width: 100%;
    aspect-ratio: 1 / 0.667;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.5s ease-out;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.section-footer-text {
    margin-top: 30px;
    text-align: center;
}

.section-footer-text p {
    margin: 0;
}

.section-footer-text p span {
    font-family: var(--accent-font);
    color: var(--white-color);
    background: var(--accent-color);
    border-radius: 30px;
    padding: 4px 12px;
    margin-right: 10px;
}

.section-footer-text p a {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
    color: var(--accent-color);
}

/* ============================================================
   2. HEADER LAYOUT (RTL & LTR SUPPORT)
   ============================================================ */

.our-departments {
    position: relative;
    margin-top: -20px;
    padding-top: 90px;
    border-radius: 40px 40px 0 0;
    z-index: 2;
}
.department-header {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 40px;
    width: 100%;
}

/* English (LTR) Header */
html[dir="ltr"] .department-header {
    flex-direction: row;
    text-align: left;
}

/* Arabic (RTL) Header */
html[dir="rtl"] .department-header {
    text-align: right;
}

.department-title-side h3 {
    font-size: 70px;
    font-weight: 600;
    color: #51112b; /* Dark maroon from image */
    margin: 0;
    line-height: 1.2;
}

.department-desc-side {
    max-width: 600px;
}

.department-desc-side p {
    font-size: 20px;
    color: #51112b;
    line-height: 1.8;
    margin: 0;
}
/* 
############################################################
    3. Department Card with Organic Outline (The Gap Effect)
############################################################ */
.department-card-wrapper {
    position: relative;
    width: 210px;
    height: 230px;
    margin: auto;
    z-index: 1;
}

.image-department-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 60px 30px 70px 40px;
    z-index: 2;
}

.image-department-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.department-overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 69, 87, 0.35);
    z-index: 1;
}
.department-card-wrapper::after {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid #dccdc0;
    border-radius: 70px 40px 80px 50px;
    z-index: -1;
    pointer-events: none;
}

.department-title {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0;
    z-index: 3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/************************************/
/***      07. What We Do css	  ***/
/************************************/

.what-we-do {
    padding: 100px 0;
}

.what-we-image-1 {
    position: relative;
    margin-right: 10px;
}

.what-we-image-1::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    border-radius: 999px 999px 0 0;
    width: 100%;
    height: 80%;
}

.what-we-image-1 img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.668;
    object-fit: cover;
    z-index: 1;
}

.what-we-content .about-experience-list {
    width: 100%;
}

.what-we-btn {
    margin-top: 40px;
}

.what-we-image-2 {
    position: relative;
    padding-left: 30px;
}

.what-we-image-2 figure {
    display: block;
    border-radius: 999px;
}

.what-we-image-2 img {
    width: 100%;
    aspect-ratio: 1 / 1.661;
    object-fit: cover;
    border-radius: 999px;
}

.experirnce-box {
    position: absolute;
    bottom: 100px;
    left: 0;
    background: var(--accent-color);
    border-radius: 999px;
    max-width: 130px;
    text-align: center;
    padding: 30px 20px;
    z-index: 1;
}

.experirnce-box h2 {
    position: relative;
    font-size: 46px;
    color: var(--white-color);
    margin-bottom: 5px;
    z-index: 1;
}

.experirnce-box p {
    position: relative;
    color: var(--white-color);
    margin: 0;
    z-index: 1;
}

/************************************/
/***      08. Intro Video css     ***/
/************************************/

.intro-video {
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
}

.intro-video .container-fluid {
    padding: 0;
}

.intro-video-box {
    position: relative;
    overflow: hidden;
    height: 1000px;
}

.intro-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.intro-bg-video::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    border-radius: 30px;
    opacity: 40%;
    width: 100%;
    height: 100%;
}

.intro-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-video-box .video-play-button {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.intro-video-box .video-play-button a {
    width: 100px;
    height: 100px;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white-color);
}

.intro-video-box .video-play-button:hover a {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/************************************/
/***      09. Case Study css      ***/
/************************************/
.case-study {
    padding: 100px 0 70px;
}

.case-study-content {
    position: sticky;
    top: 30px;
    margin-bottom: 30px;
}

.case-study-item {
    position: relative;
    border-radius: 12px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.case-study-image a,
.case-study-image figure {
    display: block;
}

.case-study-image figure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #51112b;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.case-study-image img {
    width: 100%;
    aspect-ratio: 1 / 0.967;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.case-study-item:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-body {
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    z-index: 2;
}

.case-study-item-content {
    width: 100%;
}

.case-study-item-content h3 {
    font-size: 22px;
    line-height: 1.4em;
    color: var(--white-color);
}

.case-study-item-content h3 a {
    color: inherit;
}

/************************************/
/***     10. Why Choose Us css	  ***/
/************************************/

.why-choose-us {
    background-image: url("../images/why-choose-bg-shape.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    padding: 100px 0;
}

.why-choose-images {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 50px 25px 0;
    margin-right: 10px;
}

.why-choose-images::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 30px;
    width: 415px;
    height: 345px;
}

.why-choose-image {
    position: relative;
    width: calc(50% - 15px);
    z-index: 1;
}

.why-choose-image.img-2 {
    margin-top: 90px;
}

.why-choose-image figure {
    display: block;
    border-radius: 30px;
}

.why-choose-image img {
    width: 100%;
    aspect-ratio: 1 / 1.546;
    object-fit: cover;
    border-radius: 20px;
}

.years-experience-text {
    position: absolute;
    right: 12px;
    bottom: 35px;
    transform: rotate(-180deg);
    writing-mode: vertical-rl;
}

.years-experience-text p {
    font-family: var(--accent-font);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-color);
    margin: 0;
}

.why-choose-contact-box h3 {
    font-size: 22px;
    line-height: 1.4em;
}

.why-choose-contact-item {
    display: flex;
    align-items: center;
    border-top: 2 solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.why-choose-contact-item .icon-box {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.why-choose-contact-item .icon-box img {
    max-width: 60px;
    border-radius: 50%;
}

.why-choose-contact-item .icon-box i {
    position: relative;
    background: var(--accent-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    color: var(--white-color);
    text-align: center;
    align-content: center;
    margin-left: -18px;
}

.why-choose-contact-item-content p {
    margin: 0;
}

.why-choose-contact-item-content p a {
    font-family: var(--accent-font);
    font-size: 22px;
    color: var(--primary-color);
    margin-left: 5px;
    transition: all 0.3s ease-in-out;
}

.why-choose-contact-item-content p a:hover {
    color: var(--accent-color);
}

/************************************/
/***     11.New Foooter	  ***/
/************************************/

/* Contact & Footer */
.booking-section {
    background: var(--primary-color);
    color: white;
    position: relative;
    padding: 100px 0;
    border-radius: 80px 80px 0 0;
    margin-top: -20px;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05);
    z-index: 3;
}

.booking-section h2 {
    color: var(--white-color);
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.booking-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
}

.booking-section .btn {
    background-color: var(--bg-color);
    color: var(--primary-color);
    font-size: 1.5rem;
    padding: 12px 60px;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.booking-section .btn:hover {
    background-color: var(--bg-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.footer {
    background-color: var(--secondary-color);
    /* Beige */
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
    padding-top: 60px;
}

.footer .text-primary-custom {
    color: var(--primary-color) !important;
}

.newsletter-card {
    background: var(--primary-color);
    border-radius: 60px;
    padding: 60px 20px;
    margin: 40px auto 20px;
    box-shadow: 0 10px 30px rgba(93, 24, 46, 0.2);
    width: 90%;
}

.newsletter-card .form-control {
    border-radius: 10px;
    padding: 10px 15px;
}

.newsletter-card .btn {
    border-radius: 10px;
    font-weight: bold;
}
:root {
    --bg-light-beige: #f1e4d3;
    --bg-dark-beige: #c9baaa;
    --maroon-text: #4a1324;
    --maroon-btn: #4a1324;
}

/* ============================================
   NEW FOOTER STYLES - Matching Reference Image
   ============================================ */

/* Footer CTA Section - Maroon background at top */
.footer-cta-section {
    background-color: var(--primary-color);
    padding: 60px 0;
    position: relative;
}

.footer-cta-box {
    max-width: 600px;
    margin: 0 auto;
}

.footer-cta-title {
    color: var(--white-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-footer-cta {
    background-color: #f1e4d3;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-footer-cta:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer Info Section - Light beige background */
.footer-home {
    background-color: var(--secondary-color);
    padding: 50px 0;
}

.footer-info-row {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-info-col {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.footer-info-title {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-info-text {
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.5;
}

.footer-map-link {
    color: var(--text-color);
    font-size: 13px;
    text-decoration: underline;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-map-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Newsletter Section - Dark maroon rounded box on beige background */
.newsletter-section {
    background-color: var(--secondary-color);
    padding: 30px 0 50px;
}

.newsletter-box {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 50px 50px;
    border-radius: 40px;
}

.newsletter-title {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 25px;
}

.newsletter-form {
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 5px;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white-color);
    padding: 12px 20px;
    font-size: 14px;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-newsletter-submit {
    background-color: transparent;
    color: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-newsletter-submit:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

/* Copyright Section */
.footer-copyright-section {
    background-color: #f1e4d3;
    padding: 30px 0;
    text-align: center;
}

.footer-copyright-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

.footer-copyright-link {
    color: var(--text-color);
    font-size: 14px;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-copyright-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-copyright-text {
    color: var(--text-color);
    font-size: 13px;
    margin-bottom: 0;
    opacity: 0.7;
}

/* RTL Support for Arabic */
html[lang="ar"] .footer-info-row,
html[dir="rtl"] .footer-info-row {
    direction: rtl;
}

html[lang="ar"] .newsletter-input-group,
html[dir="rtl"] .newsletter-input-group {
    direction: rtl;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-cta-section {
        padding: 40px 20px;
    }

    .footer-cta-title {
        font-size: 24px;
    }

    .footer-info-row {
        gap: 40px;
        flex-direction: column;
        align-items: center;
    }

    .footer-info-col {
        max-width: 100%;
    }

    .newsletter-input-group {
        flex-direction: column;
        border-radius: 15px;
    }

    .btn-newsletter-submit {
        width: 100%;
    }

    .footer-copyright-row {
        flex-wrap: wrap;
        gap: 15px 30px;
    }
}
/************************************/
/***      13. Our Result css	  ***/
/************************************/

.our-results {
    padding: 100px 0;
}

.transformation-image {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.transformation-image::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        180deg,
        rgba(81, 17, 42, 0) 66.37%,
        #51112a 103.38%
    );
    width: 100%;
    height: 100%;
    z-index: 1;
}

.transformation-image figure {
    position: relative;
    display: block;
    width: 50%;
}

.transformation-image .transform-img-2::before,
.transformation-image .transform-img-1::before {
    content: "before";
    position: absolute;
    top: auto;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: var(--accent-font);
    font-size: 30px;
    text-transform: capitalize;
    color: var(--white-color);
    z-index: 1;
}

.transformation-image .transform-img-2::before {
    content: "After";
}

.transformation-image img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.626;
    border-right: 5px solid var(--white-color);
    object-fit: cover;
}

.transformation-image figure:last-child img {
    border: none;
}

.transformation-button {
    text-align: center;
    margin-top: 30px;
}

.facts-counter-box {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    border-top: 2 solid var(--divider-color);
    margin-top: 50px;
    padding-top: 80px;
}

.facts-counter-item {
    position: relative;
    width: calc(25% - 37.5px);
    display: flex;
}

.facts-counter-item::before {
    content: "";
    position: absolute;
    right: -25px;
    background: var(--divider-color);
    width: 2;
    height: 100%;
}

.facts-counter-item:nth-child(4n + 4):before,
.facts-counter-item:last-child:before {
    display: none;
}

.facts-counter-item .icon-box {
    margin-right: 20px;
}

.facts-counter-item .icon-box img {
    max-width: 50px;
}

.facts-counter-content h3 {
    font-size: 30px;
    margin-bottom: 5px;
}

.facts-counter-content p {
    text-transform: capitalize;
    margin: 0;
}
/* 
/************************************/
/***    14. Our Appointment css	  ***/
/************************************/

.our-appointment {
    background-image: url("../images/appointment-bg-shape.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    padding: 100px 0 0;
}

.our-appointment-image {
    position: relative;
    text-align: center;
    margin-right: 40px;
    padding: 0 57px;
}

.our-appointment-image::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        180deg,
        #fedfd4 0%,
        rgba(255, 233, 224, 0) 97.53%
    );
    border-radius: 999px 999px 0 0;
    width: 100%;
    height: 85%;
}

.our-appointment-image figure {
    position: relative;
    z-index: 1;
}

.our-appointment-image img {
    width: 100%;
    aspect-ratio: 1 / 1.538;
    object-fit: cover;
}

.appointment-form form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    background-color: var(--white-color);
    border-radius: 100px;
    padding: 17px 20px;
    border: none;
    outline: none;
    box-shadow: none;
}

.appointment-form form .form-control::placeholder {
    text-transform: capitalize;
    color: var(--text-color);
}

.appointment-form form .form-group select {
    padding: 16px 30px 16px 20px;
}

.appointment-form form .form-group select option {
    color: var(--primary-color);
}

.contact-form-btn .btn-default {
    width: 100%;
    margin-right: 0;
}

.contact-form-btn .btn-default::before {
    display: none;
}

/************************************/
/*** 	   15. Our Blog css 	  ***/
/************************************/

.our-blog {
    padding: 100px 0 70px;
}
.blog-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

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

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

.card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.card-text {
    font-size: 0.9rem;
    color: #6c6c6c;
    line-height: 1.6;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.btn-blog {
    text-align: center;
    position: relative;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 50px;
    padding: 12px 24px;
    border: none;
    transition: all 0.3s ease;
    z-index: 1;
    margin-top: auto;
}

.btn-blog:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .blog-image {
        height: 180px;
    }

    .card-title {
        font-size: 1.1rem;
    }
}
/************************************/
/***         16. Footer css	      ***/
/************************************/

.main-footer {
    background-image: url("../images/footer-bg-shape.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    padding: 80px 0 0;
    margin-bottom: 60px;
}

.footer-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
    border-bottom: 2 solid var(--dark-divider-color);
    margin-bottom: 60px;
    padding-bottom: 60px;
}

.section-title.footer-newsletter-title {
    width: calc(58% - 15px);
    margin: 0;
}

.footer-newsletter-form {
    width: calc(42% - 15px);
}

.footer-newsletter-form .form-group {
    display: flex;
}

.footer-newsletter-form .form-group .form-control {
    width: calc(100% - 50px);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--white-color);
    background: var(--dark-divider-color);
    border: none;
    border-radius: 100px;
    outline: none;
    box-shadow: none;
    padding: 14px 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
    color: var(--white-color);
}

.footer-newsletter-form .form-group .readmore-btn {
    border: none;
    padding: 0;
}

.footer-newsletter-form .form-group .readmore-btn:hover {
    background: var(--white-color);
}

.footer-newsletter-form .form-group .readmore-btn:hover img {
    filter: brightness(1) invert(1);
}

.about-footer {
    margin-right: 70px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
    max-width: 159px;
}

.about-footer-content {
    margin-bottom: 30px;
}

.about-footer-content p {
    color: var(--white-color);
    margin-bottom: 0;
}

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

.footer-social-links ul li {
    display: inline-block;
    margin-inline-end: 12px; /* works for LTR & RTL */
}

.footer-social-links ul li:last-child {
    margin-inline-end: 0;
}

.footer-social-links ul li a {
    width: 38px;
    height: 38px;
    color: var(--white-color);
    border: 2 solid var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer-social-links ul li a i {
    font-size: 18px;
    color: inherit;
}

.footer-links-box {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-links {
    width: calc(50% - 30px);
}

.footer-links h3 {
    font-size: 22px;
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
}

.footer-links ul li {
    display: inline-block;
    color: var(--white-color);
    text-transform: capitalize;
    line-height: 1.6em;
}

.footer-links ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-contact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
    border-top: 2 solid var(--dark-divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.footer-contact-item {
    width: auto;
    position: relative;
}

.footer-contact-item::before {
    content: "";
    position: absolute;
    right: -30px;
    top: 0;
    bottom: 0;
    border-right: 2 solid var(--dark-divider-color);
    height: 100%;
}

.footer-contact-item:nth-child(3n + 3):before,
.footer-contact-item:last-child:before {
    display: none;
}

.footer-contact-item ul li i {
    font-size: 16px;
    color: var(--white-color);
    margin-right: 10px;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 2 solid var(--dark-divider-color);
    margin-top: 50px;
    padding: 50px 0;
}

.footer-copyright-text p {
    color: var(--white-color);
    margin-bottom: 0;
}

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

.footer-privacy-policy ul li {
    position: relative;
    color: var(--white-color);
    text-transform: capitalize;
    display: inline-block;
    margin-right: 10px;
    padding-right: 16px;
    transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover {
    color: var(--accent-color);
}

.footer-privacy-policy ul li::before {
    content: "/";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    color: var(--white-color);
}

.footer-privacy-policy ul li:last-child {
    padding: 0;
    margin: 0;
}

.footer-privacy-policy ul li:last-child:before {
    display: none;
}

.footer-privacy-policy ul li a {
    color: inherit;
}

/************************************/
/***     17. About Us Page css	  ***/
/************************************/

.page-header {
    position: relative;
    background-image: url("../images/page-header-bg.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    padding: 130px 0;
}

.page-header-box {
    text-align: center;
}

.page-header-box h1 {
    display: inline-block;
    color: var(--white-color);
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-header-box ol {
    margin: 0;
    padding: 0;
    justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
}

.our-approach {
    background-image: url("../images/approach-bg-shape.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    padding: 100px 0;
}

.our-approach-body {
    background-color: var(--white-color);
    border: 2 solid var(--divider-color);
    border-radius: 30px;
    padding: 40px;
}

.mission-vison-item {
    display: flex;
    border-bottom: 2 solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.mission-vison-item:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
}

.mission-vison-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.mission-vison-item .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.mission-vison-item:hover .icon-box::before {
    transform: scale(1);
}

.mission-vison-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 34px;
    z-index: 1;
}

.mission-vison-content {
    width: calc(100% - 80px);
}

.mission-vison-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.mission-vison-content p {
    margin: 0;
}

.approach-image {
    position: relative;
    padding: 55px 6px 35px 70px;
    margin-left: 20px;
}

.approach-img-1 figure {
    display: block;
    border-radius: 30px;
}

.approach-img-1 img {
    width: 100%;
    aspect-ratio: 1 / 1.241;
    object-fit: cover;
    border-radius: 30px;
}

.approach-img-2 {
    max-width: 242px;
    position: absolute;
    bottom: 0;
    left: 0;
    border: 10px solid var(--secondary-color);
    border-radius: 999px;
    overflow: hidden;
    z-index: 1;
}

.approach-img-2 img {
    width: 100%;
    aspect-ratio: 1 / 1.69;
    object-fit: cover;
}

.approach-support-box {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--primary-color);
    border: 6px solid var(--secondary-color);
    border-radius: 20px 20px 0 20px;
    overflow: hidden;
    z-index: 1;
}

.approach-support-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.approach-support-box:hover::before {
    right: auto;
    left: 0;
    width: 100%;
}

.approach-support-box .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: var(--dark-divider-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    z-index: 1;
}

.approach-support-box .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.approach-support-box:hover .icon-box::before {
    transform: scale(1);
}

.approach-support-box .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    z-index: 1;
}

.approach-support-box-content {
    position: relative;
    width: calc(100% - 70px);
    z-index: 1;
}

.approach-support-box-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 5px;
}

.approach-support-box-content p {
    color: var(--white-color);
    margin: 0;
}

.approach-support-box-content p a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.approach-support-box-content p a:hover {
    color: var(--primary-color);
}

.our-journey {
    background-image: url("../images/journey-bg-shape.svg");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    padding: 100px 0;
}

.our-journey-image {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.journey-img {
    width: calc(50% - 15px);
}

.journey-img figure {
    display: block;
    border-radius: 30px;
}

.journey-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.journey-img img {
    aspect-ratio: 1 / 0.872;
}

.journey-image-box {
    position: relative;
    width: 100%;
    padding-left: 80px;
}

.journey-image-box .journey-img {
    width: 100%;
}

.journey-image-box .journey-img img {
    aspect-ratio: 1 / 0.591;
}

.journey-experience-circle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.journey-experience-circle img {
    width: 100%;
    max-width: 160px;
    animation: infiniterotate 25s infinite linear;
}

.our-journey-content {
    margin-left: 30px;
}

.our-journey-list {
    border-bottom: 2 solid var(--dark-divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.our-journey-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.our-journey-list ul li {
    position: relative;
    width: calc(50% - 15px);
    color: var(--white-color);
    line-height: 1.5em;
    padding-left: 30px;
}

.our-journey-list ul li::before {
    content: "\f14a";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
}

.our-journey-body {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    margin-bottom: 40px;
}

.journey-item {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
}

.journey-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.journey-item .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.journey-item:hover .icon-box::before {
    transform: scale(1);
}

.journey-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 34px;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.journey-item:hover .icon-box img {
    filter: brightness(1) invert(1);
}

.journey-item-content {
    width: calc(100% - 80px);
}

.journey-item-content h3 {
    color: var(--white-color);
    font-size: 20px;
    line-height: 1.4em;
    text-transform: capitalize;
}

.our-team {
    padding: 100px 0 70px;
}

.team-item {
    height: calc(100% - 30px);
    text-align: center;
    margin-bottom: 30px;
}

.team-image {
    margin-bottom: 20px;
}

.team-image a,
.team-image figure {
    display: block;

    border-radius: 30px;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1 / 1.187;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    margin-bottom: 20px;
}

.team-content h3 {
    font-size: 22px;
    text-transform: capitalize;
}

.team-content h3 a {
    color: inherit;
}

.team-social-icons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-social-icons ul li {
    display: inline-block;
    margin-inline-end: 10px; /* RTL + LTR safe */
}

.team-social-icons ul li:last-child {
    margin-inline-end: 0;
}

.team-social-icons ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.team-social-icons ul li i {
    color: inherit;
    font-size: 18px;
}

.team-social-icons ul li:hover a {
    background: var(--primary-color);
    color: var(--white-color);
}

.our-faqs {
    padding: 100px 0;
}

.our-faqs-images {
    position: relative;
    background: url("../images/faq-dot-img.svg") no-repeat;
    background-position: left 187px bottom 46px;
    background-size: 84px auto;
    display: flex;
    flex-wrap: wrap;
    margin-right: 20px;
    padding: 0 242px 105px 0;
}

.faqs-img-2 {
    max-width: 353px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.faqs-img-1 figure,
.faqs-img-2 figure {
    display: block;
    border-radius: 30px;
}

.faqs-img-1 img,
.faqs-img-2 img {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.faqs-img-1 img {
    aspect-ratio: 1 / 1.514;
}

.faqs-img-2 img {
    aspect-ratio: 1 / 1.155;
}

.faqs-circle {
    position: absolute;
    top: 35px;
    right: 35px;
}

.faqs-circle a {
    display: block;
    border-radius: 50%;
}

.faqs-circle a img {
    width: 100%;
    max-width: 170px;
    border-radius: 50%;
    animation: infiniterotate 25s infinite linear;
}

.faq-accordion .accordion-item {
    border-bottom: 2 solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--primary-color);
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--accent-color);
    padding-bottom: 10px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: "\f107";
    font-family: "FontAwesome";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-body {
    padding-right: 30px;
}

.faq-accordion .accordion-item .accordion-body p {
    color: var(--text-color);
    margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
    margin-bottom: 0;
}

/************************************/
/***    18. Services Page css	  ***/
/************************************/

.page-services {
    padding: 100px 0 70px;
}

.page-services .service-item {
    background: var(--secondary-color);
}

/************************************/
/***   19. Services Single css    ***/
/************************************/

.page-service-single {
    padding: 100px 0;
}

.page-single-sidebar {
    position: sticky;
    top: 20px;
    margin-right: 20px;
}

.page-single-category-list {
    background: var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
    overflow: hidden;
}

.page-single-category-list h3 {
    font-size: 22px;
    color: var(--white-color);
    text-transform: uppercase;
    background: var(--primary-color);
    padding: 20px 30px;
}

.page-single-category-list ul {
    list-style: none;
    margin: 0;
    padding: 30px;
}

.page-single-category-list ul li {
    border-bottom: 2 solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.page-single-category-list ul li:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.page-single-category-list ul li a {
    position: relative;
    display: block;
    line-height: 1.4em;
    text-transform: capitalize;
    color: var(--text-color);
    padding-right: 30px;
    transition: all 0.4s ease-in-out;
}

.page-single-category-list ul li:hover a {
    color: var(--primary-color);
}

.page-single-category-list ul li a::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url("../images/arrow-text.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 22px;
    height: 22px;
    transition: all 0.4s ease-in-out;
}

.page-single-category-list ul li a:hover::before {
    transform: translateY(-50%) rotate(45deg);
    filter: brightness(0) invert(0);
}

.sidebar-cta-box {
    position: relative;
}

.sidebar-cta-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.sidebar-cta-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        179.96deg,
        rgba(72, 30, 11, 0) 50.09%,
        rgba(72, 30, 11, 0.9) 99.23%
    );
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sidebar-cta-image figure img {
    width: 100%;
    aspect-ratio: 1 / 1.22;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.sidebar-cta-box:hover .sidebar-cta-image figure img {
    transform: scale(1.05);
}

.sidebar-cta-item {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    z-index: 1;
}

.sidebar-cta-item .icon-box {
    margin-right: 20px;
}

.sidebar-cta-item .icon-box img {
    max-width: 40px;
}

.sidebar-cta-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 15px;
}

.sidebar-cta-content p {
    color: var(--white-color);
    margin-bottom: 5px;
}

.sidebar-cta-content p:last-child {
    margin-bottom: 0;
}

.page-single-image {
    margin-bottom: 40px;
}

.page-single-image figure {
    display: block;
    border-radius: 30px;
}

.page-single-image img {
    width: 100%;
    aspect-ratio: 1 / 0.598;
    object-fit: cover;
    border-radius: 30px;
}

.service-entry {
    margin-bottom: 60px;
}

.service-entry p {
    margin-bottom: 20px;
}

.service-entry p:last-child {
    margin-bottom: 0;
}

.service-entry h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-entry ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-enhance-box,
.service-achieve-box {
    margin-top: 40px;
}

.service-enhance-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-enhance-item {
    width: calc(33.33% - 20px);
    border: 2 solid var(--divider-color);
    border-radius: 30px;
    padding: 20px;
}

.service-enhance-item .icon-box {
    position: relative;
    background: var(--primary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.service-enhance-item .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.service-enhance-item:hover .icon-box::before {
    transform: scale(1);
}

.service-enhance-item .icon-box img {
    position: relative;
    max-width: 34px;
    z-index: 1;
}

.service-enhance-item-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.servie-entry-video-image.intro-video-box {
    position: relative;
    height: auto;
    margin: 40px 0;
}

.servie-entry-image figure {
    display: block;
    border-radius: 30px;
}

.servie-entry-image figure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 40%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.servie-entry-image img {
    width: 100%;
    aspect-ratio: 1 / 0.457;
    object-fit: cover;
    border-radius: 30px;
}

.service-achieve-list {
    margin-top: 40px;
}

.service-achieve-list .how-work-step-item {
    margin-bottom: 40px;
}

.service-achieve-list .how-work-step-item::before {
    display: none;
}
/* 
##################################################################################
***    21. Blog Details Page css	  ***
################################################################################## */
.blog-details {
    background: #f9f9fb;
}

.blog-article {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
}

.blog-article header h1 {
    font-size: 2rem;
    line-height: 1.3;
    color: #222;
}

.blog-article header .text-muted {
    font-size: 0.9rem;
    color: #666 !important;
}

.blog-image {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.blog-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    transition:
        transform 0.5s ease,
        filter 0.3s ease;
}

.blog-image:hover img {
    transform: scale(1.05);
    filter: brightness(0.95);
}

.blog-article p.lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: #444;
    border-left: 4px solid #007bff;
    padding-left: 0.8rem;
    margin: 1.5rem 0;
}

[dir="rtl"] .blog-article p.lead {
    border-left: none;
    border-right: 4px solid #007bff;
    padding-right: 0.8rem;
    padding-left: 0;
}

.blog-content {
    font-size: 1.05rem;
    color: #333;
}

.blog-content ul,
.blog-content ol {
    margin: 1rem 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.blog-content li {
    position: relative;
    margin-bottom: 0.6rem;
    line-height: 1.7;
    padding-left: 2.6rem;
}

.blog-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 1rem;
    line-height: 1;
}

.blog-content ol {
    counter-reset: blog-counter;
}

.blog-content ol li {
    counter-increment: blog-counter;
}

.blog-content ol li::before {
    content: counter(blog-counter) ".";
    position: absolute;
    left: 0;
    top: 0.05rem;
    min-width: 1.6rem;
    text-align: right;
}

[dir="rtl"] .blog-content li {
    padding-right: 2.6rem;
    padding-left: 0;
}

[dir="rtl"] .blog-content ul li::before {
    right: 0;
    left: auto;
}

[dir="rtl"] .blog-content ol li::before {
    right: 0;
    left: auto;
    text-align: left;
}

@media (max-width: 768px) {
    .blog-article {
        padding: 1.5rem;
    }

    .blog-article header h1 {
        font-size: 1.6rem;
    }

    .blog-article p.lead {
        font-size: 1rem;
    }
}

/************************************/
/***    22. Case Study Page css   ***/
/************************************/
/* SECTION */
.cases-section {
    position: relative;
    background: var(--primary-color);
    border-radius: 60px 60px 30px 30px;
    padding: 100px 0;
    overflow: hidden;
    margin-top: -160px;
    text-align: center;
    z-index: 3;
    margin-bottom: -10px;
}
/* TITLE */
.cases-title {
    color: #f5e7d6;
    font-weight: 700;
    font-size: 40px;
}

/* CARD */
.case-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}

/* IMAGES CONTAINER */
.case-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    direction: ltr; /* keep image order correct */
}

/* IMAGE BOX */
.case-img {
    position: relative;
    width: 130px;
    height: 190px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* IMAGE */
.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LABEL */
.case-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
}

/* DOCTOR INFO */
.doctor-info {
    margin-top: 20px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.doctor-info h5 {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.doctor-info small {
    color: #e6d8c7;
    font-size: 14px;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 100%;
}

/************************************/
/***      24. Team Page css       ***/
/************************************/

.page-team {
    padding: 100px 0 70px;
}

/************************************/
/***      25. Team Single css     ***/
/************************************/

.page-team-single {
    padding: 100px 0;
}

.team-member-info-box,
.team-member-about {
    margin-bottom: 80px;
}

.team-member-info-box {
    display: flex;
    gap: 30px 60px;
    align-items: center;
    flex-wrap: wrap;
}

.team-member-image,
.team-member-content {
    width: calc(50% - 30px);
}

.team-member-image figure {
    border-radius: 30px;
    display: block;
}

.team-member-image img {
    width: 100%;
    aspect-ratio: 1 / 0.992;
    object-fit: cover;
    border-radius: 30px;
}

.member-info-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.member-info-list ul li {
    font-family: var(--accent-font);
    font-size: 22px;
    line-height: 1.4em;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}

.member-info-list ul li:last-child {
    margin-bottom: 0;
}

.member-info-list ul li span {
    font-family: var(--default-font);
    width: 75%;
    font-size: 16px;
    color: var(--text-color);
}

.member-social-list {
    border-top: 2 solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.member-social-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-social-list ul li {
    display: inline-block;
    margin-inline-end: 10px; /* RTL + LTR safe */
}

.member-social-list ul li:last-child {
    margin-inline-end: 0;
}

.member-social-list ul li a {
    color: var(--primary-color);
    border: 2 solid var(--primary-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.member-social-list ul li a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.member-social-list ul li a i {
    color: inherit;
    font-size: 18px;
}

.team-member-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-member-list ul li {
    position: relative;
    line-height: 1.5em;
    margin-bottom: 15px;
    padding-left: 30px;
}

.team-member-list ul li:last-child {
    margin-bottom: 0;
}

.team-member-list ul li::before {
    content: "\f14a";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
}

.team-member-skills-box {
    display: flex;
    gap: 30px 60px;
    align-items: center;
    flex-wrap: wrap;
}

.team-member-skills-info,
.team-contact-form {
    width: calc(50% - 30px);
}

.skills-progress-bar {
    margin-bottom: 30px;
}

.skills-progress-bar:last-child {
    margin-bottom: 0px;
}

.skills-progress-bar .skill-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title {
    font-family: var(--accent-font);
    font-size: 18px;
    line-height: 1.5em;
    text-transform: capitalize;
    color: var(--primary-color);
}

.skills-progress-bar .skill-data .skill-no {
    font-size: 16px;
    line-height: 1.5em;
    color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress {
    position: relative;
    width: 100%;
    height: 16px;
    background: var(--secondary-color);
    border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 100px;
}

.team-member-skills-info .team-member-list {
    border-top: 2 solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.team-member-skills-info .team-member-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member-skills-info .team-member-list ul li {
    width: calc(50% - 15px);
    margin-bottom: 0;
}

.team-contact-form .contact-form {
    border-radius: 30px;
}

/************************************/
/***  26. Testimonials Page css   ***/
/************************************/

/************************************/
/***    27.  Image Gallery css    ***/
/************************************/

.page-gallery {
    padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}
.page-gallery-box .photo-gallery figure {
    display: block;
    border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
    width: 100%;
    aspect-ratio: 1 / 0.794;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/***    30. Contact Us Page css   ***/
/************************************/

.page-contact-us {
    padding: 100px 0 50px;
}

.contact-us-content .section-title {
    margin-bottom: 0;
}

.contact-info-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info-item {
    width: calc(33.33% - 20px);
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
}

.contact-info-item .icon-box {
    position: relative;
    background: var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.contact-info-item .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box::before {
    transform: scale(1);
}

.contact-info-item .icon-box img {
    position: relative;
    max-width: 26px;
    z-index: 1;
}

.contact-info-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.contact-info-content p {
    margin-bottom: 5px;
}

.contact-info-content p:last-child {
    margin-bottom: 0;
}

.contact-info-content p a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.contact-info-content p a:hover {
    color: var(--accent-color);
}

.conatct-us-form {
    padding: 50px 0 100px;
}

.contact-form {
    background-color: var(--secondary-color);
    border-radius: 40px 0 0 40px;
    padding: 40px;
}
.appointment-form {
    background-color: var(--secondary-color);
    padding: 40px;
}

.contact-form form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    background-color: var(--white-color);
    border-radius: 40px;
    padding: 17px 20px;
    border: none;
    outline: none;
    box-shadow: none;
}

.contact-form form .form-control::placeholder {
    color: var(--text-color);
}

.google-map-iframe {
    height: 100%;
    border-radius: 0 40px 40px 0;
    overflow: hidden;
}

.google-map-iframe iframe {
    height: 100%;
    width: 100%;
}

/************************************/
/***   31. Book Appointment css   ***/
/************************************/

.page-book-appointment {
    padding: 100px 0;
}

.appointment-item {
    display: flex;
    border-bottom: 2 solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.appointment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.appointment-item .icon-box {
    margin-right: 20px;
}

.appointment-item .icon-box img {
    width: 100%;
    max-width: 40px;
}

.appointment-item-content {
    width: calc(100% - 60px);
}

.appointment-item-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.appointment-item-content p {
    margin: 0;
}

.appointment-item-content p a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.appointment-item-content p a:hover {
    color: var(--primary-color);
}

.page-book-appointment .appointment-form {
    background: var(--secondary-color);
    border-radius: 30px;
    padding: 40px;
}

.department-frame-outline {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    width: 85%;
    height: 300px;
    border: 2px solid var(--divider-color);
    border-radius: 70px 25px 70px 25px;
    z-index: 1;
    overflow: hidden;
}

/* Department Name Label - Style matching second image */
.department-name-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(93, 24, 46, 0.9);
    backdrop-filter: blur(4px);
    padding: 10px 15px;
    border-radius: 25px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 100px;
    max-width: 85%;
    text-align: center;
}

.department-name-text {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    display: block;
}

/* Hover effect for department card */
.department-frame-outline:hover .department-name-label {
    background: rgba(93, 24, 46, 0.95);
    transform: translateX(-50%) scale(1.05);
    transition: all 0.3s ease;
}

/* Responsive adjustments for department name label */
@media (max-width: 768px) {
    .department-name-label {
        padding: 6px 15px;
        bottom: 10px;
        min-width: 100px;
    }

    .department-name-text {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .department-name-label {
        padding: 5px 12px;
        bottom: 8px;
        min-width: 90px;
        border-radius: 15px;
    }

    .department-name-text {
        font-size: 11px;
    }
}

/************************************/
/***    32. 404 Error Page css    ***/
/************************************/

.error-page {
    padding: 100px 0;
}

.error-page-image {
    text-align: center;
    margin-bottom: 30px;
}

.error-page-image img {
    width: 100%;
    max-width: 40%;
}

.error-page-content {
    text-align: center;
}

.error-page-content .section-title,
.error-page-content-body p {
    margin-bottom: 20px;
}

/************************************/
/***      33. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1800px) {
    .bg-section {
        width: 100%;
    }

    .hero.hero-bg-image.hero-slider-layout .hero-pagination {
        padding-left: calc(((100vw - 1300px) / 2) - 30px);
        left: 0;
    }

    .main-footer {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 1560px) {
    .bg-section {
        width: 100%;
    }

    .hero.hero-bg-image.hero-slider-layout .hero-pagination {
        padding-left: calc(((100vw - 1300px) / 2));
    }

    .main-footer {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 1300px) {
    .header-contact-now {
        display: none;
    }

    .hero {
        padding: 100px 0;
    }

    .hero.hero-bg-image.hero-slider-layout .hero-pagination {
        padding-left: 15px;
    }

    .hero-image img {
        margin-bottom: -100px;
        margin-top: -40px;
        max-width: 100%;
    }
}

@media only screen and (max-width: 991px) {
    .btn-default {
        padding: 15px 20px;
        margin-right: 46px;
    }

    .btn-default::before {
        right: -46px;
        width: 46px;
        height: 46px;
    }

    .navbar {
        padding: 20px 0;
    }

    header.main-header .header-sticky.active {
        border-left: none;
        border-right: none;
        border-radius: 0;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .bg-section {
        width: 100%;
        margin-left: 0px;
        margin-right: 0px;
        border-radius: 0;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .section-row .section-title.section-title-center {
        max-width: 100%;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h3 {
        padding-left: 30px;
    }

    .section-title h3::before {
        width: 20px;
        height: 20px;
    }

    .section-title h1 {
        font-size: 45px;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .section-title p {
        margin-top: 15px;
    }

    .section-title p span {
        font-size: 18px;
    }

    .section-title-content {
        margin-top: 15px;
    }

    .section-btn {
        text-align: left;
    }

    .section-content-btn .section-btn {
        margin-top: 15px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero.hero-bg-image,
    .hero.hero-bg-image.hero-slider-layout .hero-slide {
        padding: 100px 0;
    }

    .hero.hero-bg-image.hero-slider-layout .hero-pagination {
        bottom: 30px;
    }

    .hero-content {
        margin-bottom: 30px;
    }

    .hero-review-box {
        margin-top: 30px;
    }

    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }

    .hero-image img {
        margin-bottom: -50px;
        margin-top: 0px;
        max-width: 100%;
    }

    .about-us {
        padding: 50px 0;
    }

    .about-us-images {
        background-size: 60px auto;
        max-width: 80%;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .about-img-2 figure,
    .about-img-1 figure,
    .about-img-2 img,
    .about-img-1 img {
        border-radius: 20px;
    }

    .company-experience-circle img {
        max-width: 140px;
    }

    .about-experience-image figure,
    .about-experience-image img {
        border-radius: 20px;
    }

    .about-us-body {
        border-radius: 20px;
        padding: 20px;
        margin-top: 30px;
    }

    .our-services {
        padding: 50px 0;
    }

    .service-item {
        border-radius: 20px;
        padding: 30px;
    }

    .service-content-title {
        gap: 10px;
        margin-bottom: 15px;
    }

    .service-content-title h2 {
        width: calc(100% - 60px);
    }

    .service-content {
        margin-bottom: 20px;
    }

    .service-image a,
    .service-image img {
        border-radius: 20px;
    }

    .section-footer-text {
        margin-top: 10px;
    }

    .section-footer-text p span {
        padding: 2px 8px;
        margin-right: 5px;
    }

    .what-we-do {
        padding: 50px 0;
    }

    .what-we-btn {
        margin-top: 30px;
    }

    .what-we-image-2 {
        max-width: 55%;
        margin: 0 auto;
        margin-top: 30px;
    }

    .experirnce-box h2 {
        font-size: 34px;
    }

    .experirnce-box p {
        font-size: 14px;
    }

    .intro-video-box {
        height: 700px;
    }

    .intro-bg-video::before {
        border-radius: 0px;
    }

    .intro-video-box .video-play-button a {
        width: 80px;
        height: 80px;
        font-size: 18px;
    }

    .case-study {
        padding: 50px 0 20px;
    }

    .case-study-image img {
        aspect-ratio: 1 / 0.9;
    }

    .case-study-content {
        position: initial;
        top: 0;
    }

    .case-study-body {
        left: 20px;
        bottom: 20px;
        right: 20px;
    }

    .case-study-item-content h3 {
        font-size: 20px;
    }

    .why-choose-us {
        padding: 50px 0;
    }

    .why-choose-images {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .why-choose-image figure,
    .why-choose-image img {
        border-radius: 20px;
    }

    .why-choose-contact-box h3 {
        font-size: 20px;
    }

    .why-choose-contact-item {
        margin-top: 30px;
        padding-top: 30px;
    }

    .why-choose-contact-item-content p a {
        font-size: 20px;
    }

    .how-it-work {
        padding: 50px 0;
    }

    .how-work-content {
        position: inherit;
        top: 0;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .how-work-step-item {
        margin-bottom: 40px;
    }

    .how-work-step-item::before {
        transform: translate(30px, 32px);
        height: 60%;
    }

    .how-work-step-content h3 {
        font-size: 20px;
    }
    .transformation-image {
        border-radius: 20px;
    }

    .transformation-image .transform-img-2::before,
    .transformation-image .transform-img-1::before {
        bottom: 20px;
        font-size: 24px;
    }

    .our-results {
        padding: 50px 0;
    }

    .facts-counter-box {
        gap: 30px;
        margin-top: 10px;
        padding-top: 40px;
    }

    .facts-counter-item {
        display: block;
        width: calc(25% - 22.5px);
    }

    .facts-counter-item::before {
        right: -15px;
    }

    .facts-counter-item .icon-box {
        margin: 0 0 10px 0;
    }

    .facts-counter-item .icon-box img {
        max-width: 40px;
    }

    .facts-counter-content h3 {
        font-size: 26px;
    }

    .facts-counter-content p {
        font-size: 14px;
    }

    .our-appointment {
        padding: 50px 0 0;
    }

    .appointment-form {
        margin-bottom: 30px;
    }

    .appointment-form form .form-control {
        padding: 14px 20px;
    }

    .our-appointment-image {
        max-width: 80%;
        margin-right: 0px;
        margin: 0 auto;
        padding: 0 57px;
    }

    .our-blog {
        padding: 50px 0 20px;
    }

    .post-featured-image {
        margin-bottom: 15px;
    }

    .post-featured-image a {
        border-radius: 20px;
    }

    .post-item-content h2 {
        font-size: 20px;
    }

    .main-footer {
        padding: 40px 0 0;
        margin-bottom: 0px;
    }

    .footer-header {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .about-footer {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .footer-logo {
        margin-bottom: 15px;
    }

    .about-footer-content {
        margin-bottom: 20px;
    }

    .footer-links-box {
        gap: 20px;
    }

    .footer-links {
        width: calc(50% - 10px);
    }

    .footer-links h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer-links ul {
        gap: 10px 20px;
    }

    .footer-contact-box {
        gap: 30px 20px;
        margin-top: 30px;
        padding-top: 30px;
    }

    .footer-contact-item {
        width: auto;
    }

    .footer-contact-item::before {
        right: -10px;
    }

    .footer-contact-item ul li i {
        margin-right: 5px;
    }

    .footer-copyright {
        margin-top: 30px;
        padding: 30px 0;
    }

    .page-header {
        padding: 60px 0;
    }

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

    .our-approach {
        padding: 50px 0;
    }

    .our-approach-content {
        margin-bottom: 30px;
    }

    .our-approach-body {
        padding: 20px;
        border-radius: 20px;
    }

    .mission-vison-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .mission-vison-content h3 {
        font-size: 20px;
    }

    .approach-image {
        max-width: 80%;
        margin: 0 auto;
    }

    .approach-img-1 figure,
    .approach-img-1 img {
        border-radius: 20px;
    }

    .approach-support-box {
        padding: 15px;
    }

    .approach-support-box-content h3 {
        font-size: 20px;
    }

    .our-journey {
        padding: 50px 0;
    }

    .our-journey-image {
        margin-bottom: 30px;
    }

    .journey-img figure,
    .journey-img img {
        border-radius: 20px;
    }

    .journey-image-box {
        padding-left: 60px;
    }

    .journey-experience-circle img {
        max-width: 130px;
    }

    .our-journey-content {
        margin-left: 0;
    }

    .our-journey-list {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .our-journey-body {
        margin-bottom: 30px;
    }

    .our-team {
        padding: 50px 0 20px;
    }

    .team-image {
        margin-bottom: 15px;
    }

    .team-image figure {
        border-radius: 20px;
    }

    .team-image img {
        aspect-ratio: 1 / 1.03;
        border-radius: 20px;
    }

    .team-content {
        margin-bottom: 15px;
    }

    .team-content h3 {
        font-size: 20px;
    }

    .our-faqs {
        padding: 50px 0;
    }

    .our-faqs-images {
        max-width: 75%;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .faqs-img-1 figure,
    .faqs-img-2 figure,
    .faqs-img-1 img,
    .faqs-img-2 img {
        border-radius: 20px;
    }

    .faqs-img-2 {
        max-width: 300px;
    }

    .faqs-circle {
        top: 25px;
        right: 25px;
    }

    .faqs-circle a img {
        max-width: 140px;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 20px;
        padding-right: 25px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding-right: 25px;
    }

    .page-services {
        padding: 50px 0 20px;
    }

    .page-service-single {
        padding: 50px 0;
    }

    .page-single-sidebar {
        position: initial;
        margin: 0 0 30px 0;
    }

    .page-single-category-list {
        margin-bottom: 30px;
    }

    .page-single-category-list h3 {
        font-size: 20px;
        padding: 15px 20px;
    }

    .page-single-category-list ul {
        padding: 20px;
    }

    .page-single-category-list ul li {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .page-single-category-list ul li a::before {
        width: 20px;
        height: 20px;
    }

    .sidebar-cta-image figure img {
        aspect-ratio: 1 / 0.56;
    }

    .sidebar-cta-item {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .sidebar-cta-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .page-single-image {
        margin-bottom: 30px;
    }

    .page-single-image figure,
    .page-single-image img {
        border-radius: 20px;
    }

    .service-entry {
        margin-bottom: 40px;
    }

    .service-entry p {
        margin-bottom: 15px;
    }

    .service-entry h2 {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .service-enhance-box,
    .service-achieve-box {
        margin-top: 30px;
    }

    .service-enhance-item-list {
        margin-top: 30px;
    }

    .service-enhance-item {
        border-radius: 20px;
        padding: 16px;
    }

    .service-enhance-item .icon-box {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .service-enhance-item .icon-box img {
        max-width: 26px;
    }

    .service-enhance-item-content h3 {
        font-size: 20px;
    }

    .service-enhance-item-content p {
        font-size: 14px;
    }

    .servie-entry-video-image.intro-video-box {
        margin: 30px 0;
    }

    .servie-entry-image figure,
    .servie-entry-image img {
        border-radius: 20px;
    }

    .service-achieve-list .how-work-step-item {
        margin-bottom: 30px;
    }

    .page-blog {
        padding: 50px 0;
    }

    .page-pagination {
        margin-top: 10px;
    }

    .page-single-post {
        padding: 50px 0;
    }

    .post-image {
        margin-bottom: 20px;
    }

    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6 {
        margin: 0 0 0.442em;
    }

    .post-entry h2 {
        font-size: 34px;
    }

    .post-entry p {
        margin-bottom: 15px;
    }

    .post-entry ol li,
    .post-entry ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .post-entry blockquote {
        background-position: 20px 20px;
        background-size: 35px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }

    .post-entry blockquote p {
        font-size: 20px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .tag-links {
        font-size: 20px;
    }

    .post-tags .tag-links a {
        padding: 12px 15px;
    }

    .post-social-sharing ul {
        text-align: left;
    }

    .page-case-study {
        padding: 50px 0 20px;
    }

    .page-case-study-single {
        padding: 50px 0;
    }

    .case-study-detail-list {
        margin-bottom: 30px;
        padding: 20px;
    }

    .case-study-detail-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .case-study-entry {
        margin-bottom: 40px;
    }

    .case-study-entry p {
        margin-bottom: 15px;
    }

    .case-study-entry h2 {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .case-study-entry ul li {
        font-size: 14px;
        margin-bottom: 10px;
        padding-left: 25px;
    }

    .case-study-entry ul li::before {
        font-size: 18px;
    }

    .transformative-beauty-box,
    .glow-up-box,
    .real-transformation-box {
        margin-top: 30px;
    }

    .transformative-beauty-list {
        gap: 30px 20px;
        margin-top: 30px;
    }

    .transformative-beauty-list .how-work-step-item {
        width: calc(50% - 10px);
    }

    .glow-up-image figure {
        border-radius: 20px;
    }

    .glow-up-image img {
        aspect-ratio: 1 / 1.27;
        border-radius: 20px;
    }

    .glow-up-content ul {
        margin: 30px 0;
    }

    .glow-up-content .how-work-step-item {
        border-radius: 20px;
        padding: 15px;
    }

    .real-transformation-box ul {
        gap: 20px;
    }

    .real-transformation-box ul li {
        width: calc(50% - 10px);
        border-radius: 10px;
        padding: 10px 10px 10px 32px;
        margin-bottom: 0;
    }

    .real-transformation-box ul li::before {
        top: 10px;
        left: 10px;
    }

    .page-team {
        padding: 50px 0 20px;
    }

    .page-team-single {
        padding: 50px 0;
    }

    .team-member-info-box,
    .team-member-about {
        margin-bottom: 40px;
    }

    .team-member-image,
    .team-member-content {
        width: 100%;
    }

    .team-member-image figure {
        border-radius: 20px;
    }

    .team-member-image img {
        aspect-ratio: 1 / 0.67;
        border-radius: 20px;
    }

    .member-info-list ul li {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .member-social-list {
        margin-top: 30px;
        padding-top: 30px;
    }

    .team-member-list ul li {
        margin-bottom: 10px;
        padding-left: 25px;
    }

    .team-member-list ul li::before {
        font-size: 18px;
    }

    .team-member-skills-info,
    .team-contact-form {
        width: 100%;
    }

    .skills-progress-bar {
        margin-bottom: 20px;
    }

    .skills-progress-bar .skill-data {
        margin-bottom: 10px;
    }

    .team-member-skills-info .team-member-list {
        margin-top: 30px;
        padding-top: 30px;
    }

    .team-contact-form .contact-form {
        border-radius: 20px;
    }

    .page-gallery {
        padding: 50px 0 20px;
    }

    .page-video-gallery {
        padding: 50px 0 20px;
    }

    .page-faqs {
        padding: 50px 0;
    }

    .page-faqs-catagery .page-single-faqs {
        margin-bottom: 40px;
    }

    .page-contact-us {
        padding: 50px 0 25px;
    }

    .contact-us-content .section-title {
        margin-bottom: 30px;
    }

    .contact-info-item {
        padding: 20px;
    }

    .contact-info-item .icon-box {
        margin-bottom: 20px;
    }

    .contact-info-content h3 {
        font-size: 20px;
    }

    .conatct-us-form {
        padding: 25px 0 50px;
    }

    .contact-form {
        border-radius: 26px 26px 0 0;
        padding: 30px;
    }

    .contact-form form .form-control {
        border-radius: 24px;
        padding: 14px 20px;
    }

    .google-map-iframe {
        height: auto;
        border-radius: 0 0 26px 26px;
    }

    .google-map-iframe iframe {
        height: 400px;
    }

    .page-book-appointment {
        padding: 50px 0;
    }

    .our-appointment-content {
        margin-bottom: 30px;
    }

    .appointment-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .appointment-item-content h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .page-book-appointment .appointment-form {
        padding: 30px;
        border-radius: 20px;
        margin: 0;
    }

    .error-page {
        padding: 50px 0;
    }

    .error-page-image {
        margin-bottom: 20px;
    }

    .error-page-image img {
        max-width: 60%;
    }

    .error-page-content .section-title,
    .error-page-content-body p {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .readmore-btn {
        width: 44px;
        height: 44px;
    }

    .readmore-btn img {
        max-width: 12px;
    }

    .section-row {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 30px;
    }

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

    .section-title p {
        margin-top: 10px;
    }

    .section-title-content {
        margin-top: 10px;
    }

    .hero-body {
        gap: 15px;
    }

    .video-play-button a {
        height: 45px;
        width: 45px;
    }

    .video-play-button a i {
        font-size: 16px;
    }

    .hero-body .video-play-button p {
        font-size: 14px;
    }

    .hero-image {
        max-width: 100%;
    }

    .about-us-images {
        background-position: top 30px left 40px;
        background-size: 40px auto;
        max-width: 100%;
    }

    .about-img-1 {
        padding-left: 145px;
    }

    .about-img-2 {
        max-width: 200px;
        margin-top: -150px;
    }

    .company-experience-circle img {
        max-width: 100px;
    }

    .about-experience-list,
    .about-experience-image {
        width: 100%;
    }

    .about-experience-list ul li {
        margin-bottom: 10px;
        padding-left: 25px;
    }

    .about-experience-list ul li::before {
        top: -1px;
        font-size: 18px;
    }

    .about-contact-box-content h3 {
        font-size: 18px;
    }

    .service-item {
        padding: 20px;
    }

    .service-content-title h2 {
        width: calc(100% - 55px);
        font-size: 20px;
    }

    .section-footer-text p span {
        font-size: 14px;
    }

    .what-we-image-1 {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .what-we-image-2 {
        max-width: 100%;
    }

    .experirnce-box {
        bottom: 100px;
        max-width: 95px;
        padding: 25px 15px;
    }

    .experirnce-box h2 {
        font-size: 26px;
    }

    .experirnce-box p {
        font-size: 12px;
    }

    .intro-video-box {
        height: 350px;
    }

    .why-choose-images {
        gap: 20px;
        padding: 0 30px 15px 0;
    }

    .why-choose-image {
        width: calc(50% - 10px);
    }

    .why-choose-image.img-2 {
        margin-top: 45px;
    }

    .why-choose-images::before {
        border-radius: 20px;
        width: 250px;
        height: 220px;
    }

    .years-experience-text {
        right: 6px;
        bottom: 20px;
    }

    .years-experience-text p {
        font-size: 14px;
    }

    .why-choose-contact-box h3 {
        font-size: 18px;
    }

    .why-choose-contact-item {
        margin-top: 20px;
        padding-top: 20px;
    }

    .why-choose-contact-item .icon-box {
        margin-right: 10px;
    }

    .why-choose-contact-item-content p a {
        font-size: 18px;
    }

    .how-work-step-item::before {
        transform: translate(25px, 30px);
        height: 70%;
    }

    .how-work-step-item .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }

    .how-work-step-item .icon-box img {
        max-width: 28px;
    }

    .how-work-step-content {
        width: calc(100% - 60px);
    }

    .how-work-step-content h3 {
        font-size: 18px;
    }

    .how-work-step-content p {
        font-size: 14px;
    }
    .transformation-image .transform-img-2::before,
    .transformation-image .transform-img-1::before {
        font-size: 20px;
    }

    .facts-counter-item {
        width: calc(50% - 15px);
    }

    .facts-counter-item .icon-box img {
        max-width: 30px;
    }

    .facts-counter-content h3 {
        font-size: 22px;
    }

    .our-appointment-image {
        max-width: 100%;
        padding: 0 30px;
    }

    .footer-header {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .footer-newsletter-form,
    .section-title.footer-newsletter-title {
        width: 100%;
    }

    .footer-links {
        width: calc(62% - 10px);
    }

    .footer-links.quick-links {
        width: calc(38% - 10px);
    }

    .footer-links ul li {
        width: 100%;
    }

    .footer-contact-box {
        gap: 25px;
        margin-top: 20px;
        padding-top: 20px;
    }

    .footer-contact-item {
        width: 100%;
    }

    .footer-contact-item::before {
        display: none;
    }

    .footer-links.footer-contact-item h3 {
        margin-bottom: 10px;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }

    .footer-privacy-policy ul li {
        margin-right: 5px;
        padding-right: 12px;
    }

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

    .page-header-box ol li.breadcrumb-item {
        font-size: 14px;
    }

    .mission-vison-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .mission-vison-item .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }

    .mission-vison-item .icon-box img {
        max-width: 28px;
    }

    .mission-vison-content {
        width: calc(100% - 60px);
    }

    .mission-vison-content h3 {
        font-size: 18px;
    }

    .mission-vison-content p {
        font-size: 14px;
    }

    .approach-image {
        max-width: 100%;
        padding: 50px 0 35px 50px;
    }

    .approach-img-2 {
        max-width: 170px;
        border-width: 5px;
    }

    .approach-support-box {
        padding: 10px;
    }

    .approach-support-box .icon-box {
        margin-right: 10px;
    }

    .approach-support-box .icon-box img {
        max-width: 26px;
    }

    .approach-support-box-content {
        width: calc(100% - 60px);
    }

    .approach-support-box-content h3 {
        font-size: 18px;
    }

    .approach-support-box-content p {
        font-size: 14px;
    }

    .our-journey-image {
        max-width: 100%;
        gap: 20px;
    }

    .journey-img {
        width: calc(50% - 10px);
    }

    .journey-image-box {
        padding-left: 50px;
    }

    .journey-experience-circle img {
        max-width: 100px;
    }

    .our-journey-list ul {
        gap: 10px;
    }

    .our-journey-list ul li {
        width: 100%;
        padding-left: 25px;
    }

    .our-journey-list ul li::before {
        font-size: 18px;
    }

    .journey-item {
        width: 100%;
    }

    .journey-item .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }

    .journey-item .icon-box img {
        max-width: 26px;
    }

    .journey-item-content {
        width: calc(100% - 60px);
    }

    .journey-item-content h3 {
        font-size: 18px;
    }

    .our-faqs-images {
        max-width: 100%;
        padding: 0 140px 50px 0;
    }

    .faqs-img-2 {
        max-width: 190px;
    }

    .faqs-circle {
        top: 15px;
        right: 15px;
    }

    .faqs-circle a img {
        max-width: 110px;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 18px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding-right: 0;
    }

    .page-single-category-list h3 {
        font-size: 18px;
    }

    .sidebar-cta-image figure img {
        aspect-ratio: 1 / 0.92;
    }

    .sidebar-cta-item .icon-box {
        margin-right: 15px;
    }

    .sidebar-cta-item .icon-box img {
        max-width: 34px;
    }

    .page-single-image {
        margin-bottom: 20px;
    }

    .page-single-image img {
        aspect-ratio: 1 / 0.7;
    }

    .service-entry h2 {
        font-size: 28px;
    }

    .service-enhance-item-list {
        gap: 20px;
    }

    .service-enhance-item {
        width: 100%;
        display: flex;
    }

    .service-enhance-item .icon-box {
        margin: 0 15px 0 0;
    }

    .service-enhance-item-content {
        width: calc(100% - 65px);
    }

    .servie-entry-image img {
        aspect-ratio: 1 / 0.8;
    }

    .service-achieve-list .how-work-step-item {
        margin-bottom: 20px;
    }

    .post-single-meta ol li {
        font-size: 16px;
    }

    .post-single-meta ol li i {
        font-size: 16px;
    }

    .post-image img {
        aspect-ratio: 1 / 0.7;
    }

    .post-entry blockquote {
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-entry h2 {
        font-size: 24px;
    }

    .case-study-detail-item .icon-box {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }

    .case-study-detail-item .icon-box img {
        max-width: 24px;
    }

    .case-study-detail-content {
        width: calc(100% - 60px);
    }

    .case-study-detail-item h3 {
        font-size: 18px;
    }

    .case-study-entry h2 {
        font-size: 28px;
    }

    .transformative-beauty-list {
        gap: 20px;
    }

    .transformative-beauty-list .how-work-step-item {
        width: 100%;
    }

    .glow-up-image,
    .glow-up-content {
        width: 100%;
    }

    .glow-up-image img {
        aspect-ratio: 1 / 0.8;
    }

    .glow-up-content ul {
        margin: 20px 0;
    }

    .real-transformation-box ul {
        gap: 10px;
    }

    .real-transformation-box ul li {
        width: 100%;
    }

    .team-member-image img {
        aspect-ratio: 1 / 0.88;
    }

    .member-info-list ul li {
        font-size: 18px;
    }

    .member-info-list ul li span {
        width: 65%;
    }

    .member-social-list,
    .team-member-skills-info .team-member-list {
        margin-top: 20px;
        padding-top: 20px;
    }

    .skills-progress-bar .skillbar .skill-progress {
        height: 14px;
    }

    .team-member-skills-info .team-member-list ul {
        gap: 10px;
    }

    .team-member-skills-info .team-member-list ul li {
        width: 100%;
    }

    .contact-info-list {
        gap: 20px;
    }

    .contact-info-item {
        width: 100%;
    }

    .contact-info-item .icon-box {
        margin-bottom: 15px;
    }

    .contact-info-content h3 {
        font-size: 18px;
    }

    .contact-form {
        padding: 20px;
    }

    .google-map-iframe iframe {
        height: 300px;
    }

    .appointment-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .appointment-item-content h3 {
        font-size: 18px;
    }

    .page-book-appointment .appointment-form {
        padding: 30px 20px;
    }

    .error-page-image img {
        max-width: 80%;
    }
}
.doctor-card {
    max-width: 1000px;
    margin: 30px auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: white;
    min-height: 300px;
}

.doctor-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* gap: 20px; */
    flex-wrap: wrap;
}

.doctor-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.doctor-details {
    flex: 2;
    min-width: 200px;
}

.doctor-details h2 {
    margin: 0;
    font-size: 20px;
}

.badge {
    background: gold;
    color: #333;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    /* margin-left: 10px; */
    vertical-align: middle;
}

.doctor-stats {
    display: flex;
    gap: 30px;
    margin-top: 15px;
    font-size: 14px;
    color: #555;
    padding-bottom: 15px;
}

.doctor-stats div {
    text-align: center;
    position: relative;
}

.doctor-stats div:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 0;
    height: 100%;
    width: 2;
    background-color: #ccc;
}

.doctor-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 150px;
    align-items: flex-end;
}

.btn-outline {
    padding: 10px;
    border: 2px solid navy;
    color: navy;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.btn-primary {
    padding: 10px;
    background: #51112a;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.consultation-box {
    border: 2 solid #ccc;
    margin-top: 20px;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.status {
    font-size: 14px;
    color: green;
}

.dot.green {
    height: 10px;
    width: 10px;
    background-color: green;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.price {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.promo-btn {
    background-color: #2c2cc9;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    margin-left: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .doctor-card {
        padding: 20px;
        margin: 20px 10px;
        min-height: auto;
    }

    .doctor-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .doctor-photo {
        margin-bottom: 15px;
    }

    .doctor-details {
        width: 100%;
    }

    .doctor-stats {
        gap: 20px;
        font-size: 14px;
        justify-content: center;
    }

    .doctor-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        align-items: center;
        gap: 10px;
    }

    .btn-outline,
    .btn-primary {
        width: 45%;
        min-width: 120px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .btn-outline,
    .btn-primary {
        width: 45%;
        min-width: 110px;
        font-size: 13px;
    }

    .doctor-stats {
        font-size: 12px;
        gap: 15px;
    }

    .doctor-stats div:not(:last-child)::after {
        right: -7.5px;
    }
}

/* Fine-tune for devices like OPPO F21 Pro (around 412px) */
@media (max-width: 420px) {
    .btn-outline,
    .btn-primary {
        width: 48%;
        min-width: 100px;
        font-size: 12px;
        padding: 8px;
    }

    .doctor-stats {
        font-size: 11px;
        gap: 10px;
    }

    .doctor-stats div:not(:last-child)::after {
        right: -5px;
    }
}

@media (max-width: 360px) {
    .doctor-stats {
        flex-direction: column;
        align-items: center;
    }

    .doctor-stats div::after {
        display: none;
    }

    .btn-outline,
    .btn-primary {
        width: 100%;
        min-width: 100%;
        font-size: 12px;
    }
}
li {
    list-style: none !important;
}

.alert-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #d4edda;
    color: #155724;
    padding: 20px 30px;
    border: 2 solid #c3e6cb;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-size: 18px;
    animation: fadeInOut 3s forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.dropdown-menu-end[data-bs-popper] {
    right: 0;
    left: auto;
}

/* When Arabic is active */
.dropdown-menu-end.lang-ar[data-bs-popper] {
    margin-top: 1rem;
    right: auto !important;
    left: 0 !important;
}

html[dir="rtl"] .footer-contact-item li {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .footer-contact-item li i {
    margin-left: 0.5rem;
    margin-right: 0;
    direction: ltr;
}
.text-theme {
    color: var(--primary-color);
}

/* ========================================
   Our Team Section - Card Slider Style
======================================== */
.our-team-section {
    padding: 100px 0;
    background-color: var(--white-color);
}

.team-slider-container {
    overflow: hidden;
    margin: 0 -15px;
}

.team-slider-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease-in-out;
    width: calc(25% - 23px);
    min-width: 280px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(81, 17, 42, 0.15);
}

.team-card-image {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

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

.team-card-content {
    padding: 25px 20px;
    text-align: center;
}

.team-card-name {
    font-size: 22px;
    font-family: var(--accent-font);
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-card-role {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
    text-transform: capitalize;
}

.team-card-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-card-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.team-card-social a:hover {
    background: var(--accent-color);
    color: var(--white-color);
}

.team-card-social a i {
    font-size: 16px;
}

/* ========================================
   Our Gallery Section - 3 Column Grid
======================================== */
.our-gallery-section {
    padding: 200px 15px 50px 15px;
    background-color: var(--secondary-color);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.lazy-load {
    opacity: 0;
    transform: scale(0.95);
    transition:
        opacity 0.5s ease-in-out,
        transform 0.5s ease-in-out;
}

.lazy-load.loaded {
    opacity: 1;
    transform: scale(1);
}

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

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(81, 17, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

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

.gallery-overlay i {
    color: var(--white-color);
    font-size: 20px;
    width: 50px;
    height: 50px;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.gallery-item:hover .gallery-overlay i {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* ========================================
   Responsive Styles
======================================== */
@media only screen and (max-width: 1200px) {
    .team-card {
        width: calc(33.33% - 20px);
    }

    .gallery-item {
        height: 260px;
    }
}

@media only screen and (max-width: 991px) {
    .our-team-section,
    .our-gallery-section {
        padding: 50px 0;
    }

    .team-card {
        width: calc(50% - 15px);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item {
        height: 220px;
    }
}

@media only screen and (max-width: 767px) {
    .team-slider-wrapper {
        gap: 20px;
    }

    .team-card {
        width: 100%;
        min-width: 100%;
    }

    .team-card-image {
        height: 280px;
    }

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

    .gallery-item {
        height: 200px;
    }
}

@media only screen and (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }
}
.gallery-img {
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.03);
}
/* =========================================
   DOCTORS SECTION
========================================= */
#doctors {
    position: relative;
    background-color: #eed8bf;
    padding: 80px 0;
    border-radius: 50px;
    z-index: 4;
    margin-bottom: -21px;
}

.doctor-card-new {
    position: relative;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
    padding: 20px;
}

/* =========================================
   1. CIRCLES (BOTTOM LAYER - z-index: 1)
========================================= */
.doctor-bg-circle-small {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 70px;
    right: 30%;
    z-index: 1;
}
.doctor-bg-dot-small {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 35%;
    right: 13%;
    z-index: 1;
}

/* The small floating dot outside the frame */
.doctor-bg-circle-small::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    right: -40px;
}

/* =========================================
   2. THIN FRAME OUTLINE (MIDDLE LAYER - z-index: 2)
========================================= */

/* .doctor-frame-outline {
    position: absolute;
    left: 58%;
    transform: translate(-49%, 5%) skew(4deg);
    width: 90%;
    height: 60%;
    border: 3px solid var(--primary-color);
    border-radius: 80px 30px 80px 30px;
    z-index: 5;
} */

.doctor-frame-outline {
    position: absolute;
    left: 58%;
    transform: translate(-49%, 5%);
    width: 90%;
    height: 60%;
    border: 5px solid var(--primary-color);
    border-radius: 90px 30px 80px 30px;
    z-index: 5;

    clip-path: polygon(
        80px 2%,
        /* top-left se cut */ 100% 0%,
        100% 100%,
        0% 100%,
        2% 100px
    );
}
/* =========================================
   3. DOCTOR IMAGE (TOP LAYER - z-index: 3)
========================================= */
.doctor-image-container {
    position: relative;
    z-index: 3; /* Above frame and circles */
    margin-bottom: -55px; /* Pulls image down to overlap the info box */
}

.doctor-image-container img {
    height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

/* =========================================
   DOCTOR INFO PLATE (FIXED DESIGN)
========================================= */
.doctor-info-plate {
    /* background: linear-gradient(to bottom, #712b39, #4f1d28); */
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* TOP PART (NAME) */
.doctor-name-box {
    background: linear-gradient(
        to bottom,
        rgb(113 43 57 / 48%),
        rgba(79, 29, 40, 0.98)
    );
    padding: 14px 35px;
    width: 92%;
    border-radius: 20px 20px 0px 0px;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* NAME TEXT */
.doctor-name {
    color: var(--white-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

/* BOTTOM PART (SPECIALTY) */
.doctor-specialty-plate {
    background: linear-gradient(
        to bottom,
        rgba(113, 43, 57, 0.92),
        /* #712B39 at 92% opacity */ rgba(79, 29, 40, 0.98)
            /* #4F1D28 at 98% opacity */
    );
    margin-top: -2px;
    padding: 12px 15px;
    width: 100%;
    border-radius: 0 0 5px 5px;
    text-align: center;
}

/* SPECIALTY TEXT */
.doctor-specialty-plate small {
    color: var(--white-color);
    font-size: 0.9rem;
    font-weight: 400;
    display: block;
}
/*####################################################################
    Devices Section - Card Style
#################################################################### */
.device-card {
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    border: none;
}

.device-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.device-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

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

.device-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

.device-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.device-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.device-btn {
    text-align: center;
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    background: var(--accent-color);
    color: var(--white-color);
    border-radius: 100px;
    padding: 17px 25px;
    border: none;
    transition: all 0.5s ease-in-out;
    z-index: 1;
    text-decoration: none;
}

.device-btn:hover {
    background: var(--accent-color);
    color: var(--white-color);
    text-decoration: none;
    transform: translateY(-2px);
}

.devices-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h3 {
    color: #6c757d;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title h2 {
    color: #2c3e50;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 768px) {
    .devices-section {
        padding: 60px 0;
    }

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

    .device-content {
        padding: 20px;
    }
}
/* #############################################################################
    Single Device Achievements Section - Custom List Styling
############################################################################# */
.lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: #444;
    border-left: 4px solid #481e0b;
    padding-left: 0.8rem;
    margin: 1.5rem 0;
}

.service-achieve-box li {
    position: relative;
    padding-left: 2.6rem;
}

/* unordered custom bullet */
.service-achieve-box ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 1rem;
    line-height: 1;
}

/* ordered with counters */
.service-achieve-box ol {
    counter-reset: blog-counter;
}

.service-achieve-box ol li {
    counter-increment: blog-counter;
}

.service-achieve-box ol li::before {
    content: counter(blog-counter) ".";
    position: absolute;
    left: 0;
    top: 0.05rem;
    min-width: 1.6rem;
    text-align: right;
}

/* RTL direction adjustments */
[dir="rtl"] .service-achieve-box li {
    padding-right: 2rem;
    padding-left: 0;
}

[dir="rtl"] .service-achieve-box ul li::before {
    right: 0;
    left: auto;
}

[dir="rtl"] .service-achieve-box ol li::before {
    right: 0;
    left: auto;
    text-align: left;
}

/* RTL fix */
[dir="rtl"] .lead {
    border-left: none;
    border-right: 4px solid #481e0b;
    padding-right: 0.8rem;
    padding-left: 0;
}

/* Service feature list styling */
.service-achieve-box ul,
.service-achieve-box ol {
    margin: 1rem 0;
    padding: 0;
    list-style: none;
    position: relative;
}

/* =========================================
    RESPONSIVE HEADER STYLES
========================================= */
@media (max-width: 991px) {
    /* Sticky header adjustments */
    header.home-main-header.home-header {
        top: 0;
        /* make header fully transparent on smaller viewports */
        background-color: transparent;
        backdrop-filter: none;
    }

    /* Logo size adjustment */
    .home-logo {
        width: 100px;
        height: 100px;
        /* ensure logo sits above the transparent background */
        z-index: 1100;
    }

    /* Navbar toggler button */
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Collapsible menu styles */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        border-radius: 0 0 15px 15px;
        z-index: 999;
    }

    /* Nav menu container */
    header.home-main-header.home-header .home-nav-menu-wrapper {
        background: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        display: block;
    }

    /* Navbar links */
    header.home-main-header.home-header .navbar-nav {
        flex-direction: column !important;
        gap: 15px;
        align-items: flex-start;
    }

    header.home-main-header.home-header .nav-link {
        font-size: 16px;
        padding: 10px 15px !important;
        display: block;
        width: 100%;
        border-radius: 8px;
    }

    /* Language pill */
    header.home-main-header.home-header .language-pill-wrapper {
        background: #f4f4f4;
        padding: 8px 15px !important;
        border-radius: 50px;
        width: fit-content;
    }

    /* Nav separator */
    header.home-main-header.home-header .nav-separator {
        width: 100%;
        height: 1px;
        background: rgba(0, 0, 0, 0.08);
        margin: 10px 0;
    }

    /* Login button */
    header.home-main-header.home-header .header-login-btn {
        position: absolute;
        top: 15px;
        right: 60px;
        padding: 8px 20px;
        font-size: 12px;
    }

    /* LTR specific adjustments */
    html[dir="ltr"] .home-nav-menu-wrapper {
        margin-left: 0;
    }

    /* RTL specific adjustments */
    html[dir="rtl"] .home-nav-menu-wrapper {
        margin-right: 0;
    }

    html[dir="rtl"] header.home-main-header.home-header .header-login-btn {
        right: auto;
        left: 60px;
    }
}

@media (max-width: 576px) {
    /* Logo size for small screens */
    .home-logo {
        width: 80px;
        height: 80px;
    }

    /* Login button for small screens */
    header.home-main-header.home-header .header-login-btn {
        font-size: 10px;
        padding: 6px 15px;
        right: 50px;
    }

    html[dir="rtl"] header.home-main-header.home-header .header-login-btn {
        left: 50px;
        right: auto;
    }

    /* Navbar toggler size */
    .navbar-toggler {
        padding: 0.125rem 0.25rem;
    }
}

/* Doctor Slider Navigation Buttons */
.doctor-slider {
    position: relative;
    padding: 0 40px;
}

.doctor-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 5px;
}

.doctor-slider-nav button {
    pointer-events: auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.doctor-slider-nav button:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.doctor-slider-nav button i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .doctor-slider {
        padding: 0 35px;
    }
    .doctor-slider-nav {
        position: relative;
        top: auto;
        transform: none;
        justify-content: center;
        margin-top: 15px;
        gap: 15px;
    }
}

/************************************/
/***      07. Testimonials	  ***/
/************************************/
.testimonial-card-wrapper {
    border-radius: 20px;
    overflow: hidden;
}

/* Left Side Content */
.testimonial-content-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 450px;
}

.testimonial-text {
    color: var(--maroon-text);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
}

/* Quote Icons - Proper Quotation Marks */
.quote-icon {
    font-size: 3.5rem;
    opacity: 0.8;
    position: absolute;
    line-height: 3;
    font-family: Georgia, serif;
    font-weight: bold;
    color: var(--primary-color) !important;
}

/* Use proper quotation marks */
html[dir="ltr"] .top-quote::before {
    content: "“";
    font-family: Georgia, serif;
    font-size: 4rem;
}

html[dir="ltr"] .bottom-quote::before {
    content: "”";
}

/* Arabic quotation marks for RTL */
html[dir="rtl"] .top-quote::before {
    content: "”";
    font-family: Georgia, serif;
    font-size: 4rem;
}

html[dir="rtl"] .bottom-quote::before {
    content: "“";
}

/* Hide the FontAwesome icon since we use custom content */
.quote-icon i {
    display: none;
}

.top-quote {
    top: 30px;
    left: 30px;
}

.bottom-quote {
    bottom: 30px;
    right: 30px;
}

/* RTL adjustments for quote icons */
html[dir="rtl"] .top-quote {
    position: absolute;
    top: -70px;
    right: 0px;
    left: auto;
    z-index: 10;
}

html[dir="rtl"] .bottom-quote {
    position: absolute;
    bottom: -80px;
    left: 10px;
    right: auto;
    z-index: 10;
}

/* LTR adjustments for quote icons */
html[dir="ltr"] .top-quote {
    position: absolute;
    top: -70px;
    left: 0px;
    right: auto;
    z-index: 10;
}

html[dir="ltr"] .bottom-quote {
    position: absolute;
    bottom: -70px;
    right: 10px;
    left: auto;
    z-index: 10;
}

/* Testimonial Text Container */
.testimonial-slider .content-wrapper {
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-text {
    color: var(--maroon-text);
    font-size: 1.4rem;
    line-height: 2;
    text-align: center;
    max-width: 100%;
    margin: 0 auto 20px;
}

/* Right Side Tab */
.testimonial-title-side {
    background-color: var(--bg-dark-beige);
    border-radius: 0 0 0 50px;
    padding: 2rem;
    min-height: 450px;
    margin-bottom: 4rem;
}

/* RTL: Border radius on the other side for Arabic */
html[dir="rtl"] .testimonial-title-side {
    border-radius: 0 0 50px 0;
}

/* LTR: Keep original border radius */
html[dir="ltr"] .testimonial-title-side {
    border-radius: 0 0 0 50px;
}

.testimonial-heading {
    color: var(--maroon-text);
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.2;
}

/* Button Styling */
.btn-maroon {
    background-color: var(--maroon-btn);
    color: var(--bg-light-beige);
    border: none;
    border-radius: 2px;
    font-size: 1.5rem;
    transition: 0.3s;
    padding: 0.5rem 3.4rem;
}

.btn-maroon:hover {
    background-color: #2e0b16;
    color: var(--bg-light-beige);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .testimonial-title-side {
        border-radius: 0;
        order: -1; /* Title on top for mobile */
    }
    .testimonial-heading {
        font-size: 2rem;
    }
}
