/* Global Colors */
:root {
    --primary-color: #ffb03b;
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #433f39;
    --accent-color: #ffb03b;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

/* Nav Menu Colors  */
:root {
    --nav-color: #ffffff;
    --nav-hover-color: #ffb03b;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #444444;
    --nav-dropdown-hover-color: #ffb03b;
}

/* Color Presets */

.light-background {
    --background-color: #fffaf3;
    --surface-color: #ffffff;
}

.light-bg {
    background-color: #fffaf3;
}

.dark-background {
    --background-color: #1e160d;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #42301c;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------- General Styling & Shared Classes -----------------------*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Cairo', sans-serif;
    font-family: 'Noto Kufi Arabic', sans-serif;
    font-size: 13px;
}

body {
    color: var(--default-color);
    background-color: #fffaf3;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

.a-active-link {
    color: var(--primary-color) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* Inverted icon for rtl direction */
[dir="rtl"] .rtl-icon {
    transform: scaleX(-1);
}

.text-justify {
    text-align: justify;
}

.btn-outline-read-more {
    color: var(--accent-color);
    border-color: var(--accent-color);
    transition: 0.3s;
}

.btn-outline-read-more:hover {
    color: white;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transition: 0.3s;
}

.btn-read-more {
    color: #ffffff;
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    transition: 0.3s;
}

.btn-read-more:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    transition: 0.3s;
}

*:focus {
    box-shadow: none !important;
}

span.error {
    color: red;
    font-size: 0.875em;
}

.primary-color {
    color: var(--primary-color);
}

/*-------------- Global Header ---------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
}

.header .topbar {
    background-color: var(--background-color);
    padding: 10px 0 0 0;
    font-size: 14px;
    transition: all 0.5s;
}

.header .topbar .contact-info i {
    font-style: normal;
    color: var(--accent-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
    padding-left: 5px;
    color: var(--contrast-color);
}

@media (max-width: 575px) {

    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
        font-size: 13px;
    }
}

.header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
}

.header .branding {
    min-height: 60px;
    padding: 5px 0;
}

.header .logo {
    line-height: 1;
    margin-left: 50px;
}

.header .logo img {
    height: 70px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

@media (max-width: 575px) {
    .social-links-topbar {
        display: none;
    }
}

@media (max-width: 768px) {
    .header .logo img {
        height: 60px;
    }
}

/*-------------- Global Header on Scroll ------------------*/
.scrolled .header {
    --background-color: rgba(21, 17, 13, 0.85);
}

.header-bg {
    --background-color: rgba(21, 17, 13, 0.85);
}

/*------------------ Navigation Menu -----------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 14px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }

    .branding .cta-btn {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        padding: 6px 30px 8px 30px;
        border-radius: 10px;
        transition: 0.3s;
    }

    .branding .cta-btn:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {

    .branding .cta-btn {
        display: none;
    }

    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: -15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------- Preloader ------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
/* @media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
} */


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

.page-title .heading {
    padding: 160px 0 60px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title nav ol li+li {
    padding-left: 10px;
}

.page-title nav ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 112px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 105px;
    }
}

.section-header {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.section-header h2 {
    font-weight: 700;
    color: var(--default-color);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.section-header h1 {
    font-weight: 600;
    color: var(--default-color);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.section-header h2 span {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    color: #666;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.8;
}


@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .section-header h2 span {
        font-size: 2rem;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
}

.section-title div {
    color: var(--heading-color);
    margin: 10px 0 0 0;
    font-size: 32px;
    font-weight: 700;
    font-family: var(--heading-font);
}

.section-title div .description-title {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# header-page Section
--------------------------------------------------------------*/
.header-top-page {
    width: 100%;
    min-height: 40vh;
    padding: 0;
    margin: 0;
    background-color: var(--background-color);
    position: relative;
}

.header-top-page img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.header-top-page .header-top-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.header-top-page .header-top-item:before {
    content: "";
    background: rgba(0, 0, 0, .7);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.header-top-page .header-top-container {
    position: absolute;
    inset: 64px 64px 64px 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
}

.header-top-page h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
    animation: fadeInDown 1s both;
}


.header-top-page p {
    color: white;
    font-weight: 500;
    animation: fadeInDown 1s both 0.2s;
}

.header-top-page .btn-get-started {
    color: var(--contrast-color);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 5px 32px;
    border-radius: 10px;
    transition: 0.5s;
    margin: 10px 5px;
    animation: fadeInUp 1s both 0.4s;
    border: 2px solid var(--accent-color);
}

.header-top-page .btn-get-started:hover {
    background: var(--accent-color);
}

@media (max-width: 768px) {
    .header-top-page {
        min-height: 45vh;
    }

    .header-top-page .header-top-container {
        inset: 0;
    }

    .header-top-page h2 {
        font-size: 1rem;
    }

    .header-top-page .btn-get-started {
        padding: 4px 16px;
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 0;
}

.hero .carousel {
    width: 100%;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    background-color: var(--background-color);
    position: relative;
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero .carousel-item:before {
    content: "";
    background: rgba(0, 0, 0, .7);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .carousel-container {
    position: absolute;
    inset: 90px 64px 64px 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
}

.hero .btn-get-started {
    color: var(--contrast-color);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 10px;
    transition: 0.5s;
    margin: 10px 5px;
    animation: fadeInUp 1s both 0.4s;
    border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
    background: var(--accent-color);
}

@media (max-width: 768px) {
    .hero .btn-get-started {
        padding: 4px 16px;
        font-size: 12px;
    }
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 10%;
    transition: 0.3s;
    opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}

@media (min-width: 1024px) {

    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        width: 5%;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

.hero .carousel-indicators {
    list-style: none;
}

.hero .carousel-indicators li {
    cursor: pointer;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* ----custom-animation-image-zoom ----*/
.custom-animation-image-zoom {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0% {
        height: 100%;
        opacity: 0.9;
    }

    25% {
        height: 110%;
        opacity: 0.50;
    }

    50% {
        height: 115%;
        opacity: 1;
    }

    75% {
        height: 110%;
        opacity: 0.50;
    }

    100% {
        height: 100%;
        opacity: 0.9;
    }
}

/* custom bottom buttom contact*/
.custom-bottom-btn-contact,
.custom-bottom-btn-whatsapp {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    background-color: #009688;
    color: white;
    font-size: 20px;
    z-index: 1000;
}

.custom-bottom-btn-contact {
    right: 10px;
    bottom: 70px;
    background: #1e73be;
}

.custom-bottom-btn-whatsapp {
    right: 10px;
    bottom: 10px;
    background: #8abc3a;
}

.custom-bottom-btn-contact:hover,
.custom-bottom-btn-whatsapp:hover {
    background-color: #00796B;
    text-decoration: none;
}

/* ----------- about section -------------- */

.about img {
    width: 100%;
    height: 350px;
}

.about .content h3 {
    font-size: 20px;
    font-weight: 700;
}

.about .content h3 span {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 700;
}

.about .content p {
    color: #000;
}

.about .content ul span {
    color: #000;
}

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

.about .content ul li {
    padding: 10px 0 0 0;
    display: flex;
}

.about .content ul i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    line-height: 1.2;
}

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

.about .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}

.about .btn-get-about {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 5px;
    animation: fadeInUp 1s both 0.4s;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about .btn-get-about:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 50%);
}

@media (max-width: 768px) {
    .about img {
        width: 100%;
        height: 200px;
    }

    .about .btn-get-about-parent {
        text-align: center;
    }
}

/* ---------about feature-box---------- */
.feature-box {
    /* background-color: #fffaf3; */
    background-color: #fbf1e3;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
    max-height: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h4 {
    color: var(--dark-color);
    font-weight: 700;
}

.feature-box p {
    color: #666;
}

@media (max-width: 768px) {
    .feature-box {
        padding: 15px 15px;
    }

    .feature-box i {
        font-size: 2rem;
    }

    .feature-box h4 {
        font-size: 1.5rem;
    }

    .feature-box p {
        font-size: 0.9rem;
    }
}

/*------------owl-carousel category section--------------*/
.categories .owl-carousel-container {
    padding: 0 20px;
    margin-bottom: 60px;
    position: relative;
}

.categories .category-item {
    display: block;
    text-decoration: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    height: 100%;
    position: relative;
    z-index: 2;
}

.categories .category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.categories .category-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid var(--primary-color);
}

.categories .category-name {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 5px;
    background: white;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    margin: 0;
}

.categories .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.categories .owl-prev,
.categories .owl-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color) !important;
    border-radius: 50% !important;
    opacity: 0.9;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 24px !important;
    transition: all 0.3s;
}

.categories .owl-prev:hover,
.categories .owl-next:hover {
    opacity: 1;
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%) !important;
    transform: scale(1.1);
}

.categories .owl-prev {
    right: -25px;
}

.categories .owl-next {
    left: -25px;
}

.categories .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.categories .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
    border: none;
    margin: 0 5px;
}

.categories .owl-dots button.owl-dot.active {
    background-color: var(--primary-color) !important;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .categories .owl-carousel-container {
        padding: 0 10px;
    }

    .categories .category-img {
        height: 100px;
    }

    .categories .category-name {
        height: 75px;
        font-size: 1rem;
    }

    .categories .owl-prev,
    .categories .owl-next {
        width: 32px;
        height: 32px;
    }

    .categories .owl-prev {
        right: -15px;
    }

    .categories .owl-next {
        left: -15px;
    }

    .categories .owl-dots button.owl-dot {
        width: 8px;
        height: 8px;
    }
}

/* -------------services------------------ */
.service .service-item {
    background: var(--background-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    transition: 0.5s;
}

.service .service-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.service .service-item .service-img img {
    height: 250px;
    transition: 0.5s;
}

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

.service .service-item .service-img .cat-service-title {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 5;
}

.service .service-item .service-img .cat-service-title a {
    color: var(--bs-white);
    background: var(--primary-color);
    transition: 0.5s;
}

.service .service-item:hover .service-img .cat-service-title a:hover {
    color: var(--bs-dark);
}


/* ---------------col-side-content-section---------------- */
.col-side-content-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.col-side-content-section h3 {
    font-weight: 500;
    color: var(--primary-color);
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.col-side-content-section ul {
    padding-right: 20px;
}

.col-side-content-section li {
    margin-bottom: 8px;
}

.col-side-content-section .article-list {
    list-style: none;
    padding: 0;
}

.col-side-content-section .article-list li {
    margin-bottom: 10px;
}

.col-side-content-section .article-list li i {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
}

.col-side-content-section .article-list li a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 5px 0;
    border-bottom: 1px dashed #d2d2d2;
}

.col-side-content-section .article-list li a:hover {
    color: var(--primary-color);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .col-side-content-section {
        margin-top: 30px !important;
    }
}

/* --------------service-details------------------ */
.service-details {
    padding-right: 15px;
    padding-left: 15px;
}

.service-details .service-details-content {
    background: var(--background-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.service-details .owl-carousel-container {
    margin-bottom: 60px;
    position: relative;
}

.service-details .service-details-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service-details .service-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.5;
    margin-bottom: 25px;
}

.service-details .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.service-details .owl-prev,
.service-details .owl-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color) !important;
    border-radius: 50% !important;
    opacity: 0.9;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 24px !important;
    transition: all 0.3s;
}

.service-details .owl-prev:hover,
.service-details .owl-next:hover {
    opacity: 1;
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%) !important;
    transform: scale(1.1);
}

.service-details .owl-prev {
    right: -25px;
}

.service-details .owl-next {
    left: -25px;
}

.service-details .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.service-details .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
    border: none;
    margin: 0 5px;
}

.service-details .owl-dots button.owl-dot.active {
    background-color: var(--primary-color) !important;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .service-details .service-details-img {
        height: 100px;
    }

    .service-details .owl-carousel-container {
        padding: 0 10px;
    }

    .service-details .service-title {
        font-size: 1.5rem;
    }

    .service-details .owl-prev,
    .service-details .owl-next {
        width: 32px;
        height: 32px;
    }

    .service-details .owl-prev {
        right: -15px;
    }

    .service-details .owl-next {
        left: -15px;
    }

    .service-details .owl-dots button.owl-dot {
        width: 8px;
        height: 8px;
    }
}

/* --------------- gallery section ------------- */
.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    height: 250px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.gallery-item .title {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-item .date {
    font-size: 0.85rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .gallery-item {
        height: 100px;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* --------------- work request ------------- */
#formDataSendWorkRequest input:focus,
#formDataSendWorkRequest textarea:focus {
    border-color: var(--accent-color);
}

#formDataSendWorkRequest button[type=submit] {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 0;
    padding: 13px 50px;
    transition: 0.4s;
    border-radius: 4px;
}

#formDataSendWorkRequest button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/* --------------- clients previews ------------- */
.testimonial .testimonial-item {
    position: relative;
    margin-bottom: 60px;
    padding: 0 25px 25px 25px;
}

.testimonial .testimonial-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 50px);
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.testimonial .testimonial-item .testimonial-img {
    display: flex;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-img img {
    margin-top: 8px;
    width: 80px;
    height: 80px;
    border-radius: 100px;
    border: 5px solid var(--bs-light);
    border-style: double;
    background: #ffffff;
}

.testimonial .testimonial-item .testimonial-text {
    padding: 25px 0;
    text-align: center;
}

.testimonial .testimonial-item .testimonial-title {
    display: flex;
    justify-content: space-between;
}

.testimonial .testimonial-item .testimonial-quote-left {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 20px;
    left: 25px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-quote-right {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: -30px;
    right: 25px;
    margin-top: -5px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
RTL support  */
[dir="rtl"] .testimonial .testimonial-item .testimonial-quote-left {
    left: auto;
    right: 25px;
}

[dir="rtl"] .testimonial .testimonial-item .testimonial-quote-right {
    right: auto;
    left: 25px;
}

.testimonial .testimonial-item .testimonial-quote-left i,
.testimonial .testimonial-item .testimonial-quote-right i {
    font-size: 24px;
    color: var(--primary-color);
}

.testimonial .testimonial-item .star-review i {
    color: var(--primary-color);
}

.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

/* RTL support for nav arrows */
[dir="rtl"] .testimonial .owl-nav .owl-prev {
    left: auto;
    right: 0;
}

[dir="rtl"] .testimonial .owl-nav .owl-next {
    right: auto;
    left: 0;
}

/* --------------- footer ------------- */
.footer {
    background-color: var(--background-color);
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--primary-color);
}

.footer .btn.btn-social:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: start;
    color: #ffffff;
    font-weight: 400;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.section-title-footer {
    font-weight: 600;
}

.section-title-footer::after {
    display: inline-block;
    content: "";
    width: 60px;
    height: 2px;
    top: 50%;
    left: -70px;
    margin-top: -1px;
    margin: 0 5px;
    background: var(--secondary);
}

.footer .timings-list {
    list-style: none;
    padding: 0;
}

.footer .timings-list li {
    padding: 10px 0;
    border-bottom: 1px dotted #6c757d;
}

.footer .closed-badge {
    border: solid 1px red;
    color: red;
    padding: 5px 10px;
    border-radius: 5px;
}

/* --------------- animations ------------- */
.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.8s ease;
}

.ripple-effect:hover::after {
    width: 500px;
    height: 500px;
    opacity: 1;
}