@font-face {
    font-family: 'LamaSans';
    src: url('fonts/LamaSans-Regular.ttf');
}

/* Fonts */
:root {
    --default-font: "LamaSans", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Inter", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

:root {
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #384f4b;
    --accent-color: #0b386a;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

:root {
    --nav-color: #444444;
    --nav-hover-color: #0b386a;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #444444;
    --nav-dropdown-hover-color: #0b386a;
}

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

.dark-background {
    --background-color: #0e1a18;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #203b37;
    --contrast-color: #ffffff;
}

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

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

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;
}

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

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    z-index: 1000;

    &:hover {
        transform: scale(1.1);
    }
}

/* Global Header */
.header {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    padding: 10px 0;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 997;

    &.scroll {
        position: fixed;
        animation: Fixed 1s ease-in-out forwards;
        box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
    }
}

.header .logo {
    line-height: 1;
    filter: invert(1) brightness(1000%);
}

.header .logo img {
    max-height: 60px;
    /* margin-right: 8px; */
}

.custom-btn {
    position: relative;
    padding: 0.4em 0.6em;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    background-color: var(--nav-hover-color);
    border-radius: 10px;
    font-weight: 400;
    font-size: 12px;
    font-family: inherit;
    z-index: 0;
    transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.custom-btn a {
    color: #fff;
}

.custom-btn:hover {
    animation: sh0 0.5s ease-in-out both;
}

@keyframes sh0 {
    0% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }

    25% {
        transform: rotate(7deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(-7deg) translate3d(0, 0, 0);
    }

    75% {
        transform: rotate(1deg) translate3d(0, 0, 0);
    }

    100% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }
}

.custom-btn:hover span {
    animation: storm 0.7s ease-in-out both;
    animation-delay: 0.06s;
}

.custom-btn::before,
.custom-btn::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1),
        opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
    z-index: -1;
    transform: translate(100%, -25%) translate3d(0, 0, 0);
}

.custom-btn:hover::before,
.custom-btn:hover::after {
    opacity: 0.15;
    transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1),
        opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.custom-btn:hover::before {
    transform: translate3d(50%, 0, 0) scale(0.9);
}

.custom-btn:hover::after {
    transform: translate(50%, 0) scale(1.1);
}

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

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

    .navmenu li {
        position: relative;
    }

    /* .language-dropdown:hover .language-dropdown-content {
    display: block;
  } */
    .navmenu>ul>li {
        white-space: nowrap;
        /* padding: 15px 14px; */
    }

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

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

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

    /* .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--contrast-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  } */

    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--contrast-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(--contrast-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;
    }

    .custom-btn {
        padding: 0.5em 0.7em;
        font-size: 16px;
    }
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .mobile-nav-toggle {
        color: var(--contrast-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;
    }

    .custom-btn {
        padding: 0.5em;
        font-size: 14px;
    }
}

/* Global Footer */

/* 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);
    }
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

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

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title p {
    margin-bottom: 0;
    text-wrap: balance;
}

/*.section-title h2:before,
.section-title h2:after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
}*/

.section-title h2:before {
    margin: 0 15px 10px 0;
}

.section-title h2:after {
    margin: 0 0 10px 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .section-title h2:before,
    .section-title h2:after {
        width: 30px;
        margin: 0 10px 8px;
    }
}

/* Hero Section */
.hero {
    padding-inline: 12px;
    border-radius: 30px;
    @media (max-width: 768px) {
        padding-inline: 0;
    }
}

.hero .carousel {
    width: 100%;
    aspect-ratio: 2 / 1;
    min-height: 300px;
    max-height: calc(100dvh - 120px);
    padding: 0;
    margin-top: 60px;
    /* background-color: var(--background-color); */
    position: relative;
    border-radius: 15px;
    @media (max-width: 768px) {
        margin-top: 40px;
        border-radius: 0;
    }
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* AE */
    object-position: center;
    z-index: 1;
    border-radius: 15px;
    @media (max-width: 768px) {
        border-radius: 0;
    }
}

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

.hero .carousel-item:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: 15px;
}

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

.hero h2 {
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
    animation: fadeInDown 1s both;
}

.hero p {
    text-align: center;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 30px;
    }
}

.hero p {
    animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

    .hero h2,
    .hero p {
        max-width: 60%;
    }
}

/* .hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
} */
/* .hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
} */

.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);
    }
}

/* About Section */
/* .about .section-title h2 {
  position: relative;
  display: inline-block;
  padding-left: 55px;
}

.about .section-title h2:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  transform: translateY(-50%);
} */

/* .about .section-title h2:after {
  display: none;
} */

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

/* @keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(25px);
  }
} */
@keyframes rotate {
    0% {
        transform: translate(50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(50%, -50%) rotate(360deg);
    }
}

.shapes span {
    position: absolute;
    top: 10%;
    left: -8rem;
    transform: none;
    width: 150px;
    height: 150px;
    border: 4px solid rgb(11, 56, 106, 0.188);
    border-radius: 60% 60% 40% 40% / 50% 50% 50% 50%;
    transition: 0.5s;
    animation: rotate 8s linear infinite;
    z-index: 0;
}

.shapes span:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 50px;
    left: calc(-8rem + 1rem);
}

.shapes span:nth-child(3) {
    width: 90px;
    height: 90px;
    top: 50px;
    left: calc(-8rem + 2rem);
}

/* .about .floating-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--accent-color) 40%, transparent 70%);
  top: 10%;
  left: -75px;
  border-radius: 50%;
  opacity: 0.4;
  animation: floatY 6s ease-in-out infinite;
  z-index: 0;
}
.about .shape2 {
  width: 100px;
  height: 100px;
  top: 80%;
  left: 95%;
  animation-delay: 2s;
} */

.about ul li {
    position: relative;
    padding: 15px 0 15px 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

.about ul li:last-child {
    border-bottom: none;
}

.about ul li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 24px;
}

.about .cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about .cta-btn,
.about .read-more {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
}

.about .read-more {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.about .read-more i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.about .read-more:hover i {
    transform: translateX(5px);
}

.about .cta-btn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.about .cta-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.about ul li {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about[data-aos="fade-up"].aos-animate ul li {
    opacity: 1;
    transform: translateX(0);
}

.about ul li:nth-child(1) {
    transition-delay: 0.3s;
}

.about ul li:nth-child(2) {
    transition-delay: 0.5s;
}

@media (max-width: 768px) {
    .about .cta-buttons {
        flex-direction: column;
    }

    .about .cta-btn,
    .about .read-more {
        width: 100%;
        margin-bottom: 3dvh;
        justify-content: center;
    }

    .about ul li {
        padding: 12px 0 12px 35px;
    }
}

/* Team Section */
.team .team-member {
    background-color: var(--surface-color);
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.team .team-member .member-img {
    position: relative;
    overflow: hidden;
}

.team .team-member .social {
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
}

.team .team-member .social a {
    background: color-mix(in srgb, var(--contrast-color), transparent 25%);
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0 3px;
    border-radius: 4px;
    width: 36px;
    height: 36px;
    transition: ease-in-out 0.3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.team .team-member .social a:hover {
    color: var(--contrast-color);
    background: var(--accent-color);
}

.team .team-member .social i {
    font-size: 18px;
    line-height: 0;
}

.team .team-member .member-info {
    padding: 25px 15px;
}

.team .team-member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
}

.team .team-member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# products Section
--------------------------------------------------------------*/
.products .products-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.products .products-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    font-family: var(--heading-font);
}

.products .products-filters li:hover,
.products .products-filters li.filter-active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
}

.products .products-filters li:first-child {
    margin-left: 0;
}

.products .products-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .products .products-filters li {
        font-size: 14px;
        margin: 0 0 10px 0;
    }
}

.products .products-item {
    position: relative;
    overflow: hidden;
}

.products .products-item .products-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -100%;
    z-index: 3;
    transition: all ease-in-out 0.5s;
    background: color-mix(in srgb, var(--surface-color), transparent 10%);
    padding: 15px;
    margin-top: 40px;
}

.products .products-item .products-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
}

.products .products-item .products-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
}

.products .products-item .products-info .preview-link,
.products .products-item .products-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 14px);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: 0.3s;
    line-height: 0;
}

.products .products-item .products-info .preview-link:hover,
.products .products-item .products-info .details-link:hover {
    color: var(--accent-color);
}

.products .products-item .products-info .details-link {
    right: 14px;
    font-size: 28px;
}

.products .products-item:hover .products-info {
    opacity: 1;
    bottom: 0;
}

/*--------------------------------------------------------------
# products Details Section
--------------------------------------------------------------*/
.products-details .swiper-slide {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.products-details .products-details-slider img {
    width: 100%;
    max-height: 100%;
    aspect-ratio: 2/1;
    object-fit: cover;
}

.products-details .products-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.products-details .products-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    opacity: 1;
}

.products-details .products-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.products-details .products-info .specifications {
    gap: 50px;
}

.products-details .products-info .specifications h5 {
    color: var(--accent-color);
}

.products-details .products-info {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.products-details .products-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.products-details .products-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.products-details .products-info ul li+li {
    margin-top: 10px;
}

.products-details .products-description button {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.products-details .products-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.products-details .products-description p {
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
    margin-top: 30px;
}

.service-details .service-box h4 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.service-details .services-list {
    background-color: var(--surface-color);
}

.service-details .services-list a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-top: 15px;
    transition: 0.3s;
}

.service-details .services-list a:first-child {
    margin-top: 0;
}

.service-details .services-list a i {
    font-size: 16px;
    margin-right: 8px;
    color: var(--accent-color);
}

.service-details .services-list a.active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
}

.service-details .services-list a.active i {
    color: var(--contrast-color);
}

.service-details .services-list a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
}

.service-details .download-catalog a {
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
    border-top: 0;
    padding-top: 0;
}

.service-details .download-catalog a:last-child {
    padding-bottom: 0;
}

.service-details .download-catalog a i {
    font-size: 24px;
    margin-right: 8px;
    color: var(--accent-color);
}

.service-details .download-catalog a:hover {
    color: var(--accent-color);
}

.service-details .help-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    margin-top: 30px;
    padding: 30px 15px;
}

.service-details .help-box .help-icon {
    font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
    color: var(--contrast-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

main {
    min-height: calc(100dvh - 295px);
}

#service {
    padding: 40px 0;
}

#service .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

#service .card {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 2rem 1rem;
    width: 100%;
}

#service .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#service .card-title {
    font-weight: bold;
    font-size: 1.5rem;
    color: #d4e5f8;
    margin-bottom: 10px;
    padding: 10px 10px 0 10px;
}

#service .card-text {
    font-size: 1rem;
    color: var(--contrast-color);
    padding: 0px 10px 0 10px;
}

#service .card {
    transition: transform 0.3s ease;
    position: relative;
}

#service .card:hover {
    transform: translateY(-4px);
}

#service .card:hover .overlay {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
    #services .container {
        grid-template-columns: 1fr;
    }
}

.animated-bg {
    background: linear-gradient(rgb(11, 56, 106, 0.77), rgb(11, 56, 106, 0.8)),
        url("../img/about\ bg.png");
    background-size: 300%;
    background-position: center;
    background-repeat: no-repeat;
    animation: animateBg 80s linear infinite;
    color: #fff;
}

/* Keyframes for animation */
@keyframes animateBg {
    0% {
        background-position: 0% 50%;
    }

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

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

.services .service-item:before {
    content: "";
    position: absolute;
    background: var(--accent-color);
    inset: 100% 0 0 0;
    transition: all 0.3s;
    z-index: -1;
}

.services .service-item .icon {
    margin-bottom: 10px;
}

.services .service-item .icon i {
    color: var(--accent-color);
    font-size: 36px;
    transition: ease-in-out 0.3s;
}

.services h2 {
    color: var(--nav-dropdown-background-color);
}

.services .service-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.services .service-item h4 a {
    color: var(--heading-color);
    transition: ease-in-out 0.3s;
}

.services .service-item p {
    color: var(--default-color);
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    transition: ease-in-out 0.3s;
}

.services .service-item:hover h4 a,
.services .service-item:hover .icon i,
.services .service-item:hover p {
    color: var(--contrast-color);
}

.services .service-item:hover:before {
    background: var(--accent-color);
    inset: 0;
    border-radius: 0px;
}

/* Call To */
/* .call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}
.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.call-to-action .container {
  position: relative;
  z-index: 3;
}
.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}
.call-to-action p {
  color: var(--default-color);
}
.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}
.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
} */
/* More Services Section */
.swiper-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 10px;
}

.more-services .swiper-slide {
    display: flex;
    justify-content: center;
    width: 33.33%;
    box-sizing: border-box;
}

.more-services .card {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
    height: 100%;
    border: 0;
}

.more-services .image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.more-services .image-wrapper img {
    padding: 0;
    transition: 0.5s;
    transform: scale(1.1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.more-services .card h3 {
    font-size: 23px;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 15px;
    color: var(--default-color);
}

.more-services .card:hover {
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    background-color: #0b376ac5;
}

.more-services .card:hover h3 {
    color: var(--contrast-color);
}

.more-services .card:hover img {
    transform: scale(1);
}

/* Navigation buttons */
.more-services .swiper-button-next,
.more-services .swiper-button-prev {
    color: var(--accent-color);
    font-size: 30px;
    background-color: transparent;
    border-radius: 50%;
    z-index: 10;
}

.swiper-button-next,
.swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    padding: 10px;
}

.swiper-button-next {
    right: -1px;
}

.swiper-button-prev {
    left: -1px;
}

/* Mobile Specific Styling */
@media (max-width: 768px) {
    .swiper-container {
        padding: 0 20px;
    }

    .swiper-slide {
        width: 100% !important;
    }
}

/*--------------------------------------------------------------
# events Section
--------------------------------------------------------------*/
.events .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.events .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.events .card-title {
    font-size: 16px;
    font-weight: bold;
}

.events .card-text {
    font-size: 14px;
    color: #888;
}

.events .modal-body {
    padding: 10px 20px;
}

.events .card-body a {
    cursor: pointer;
}

.events .swiper-slide img {
    max-height: 70vh;
    object-fit: cover;
}

/* events-details  */
.event-details-section {
    padding: 50px 0;
    text-align: start;
}

.event-details-section .custom-card {
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}

.event-details-section .custom-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: 1s;
}

.event-details-section .custom-card img:hover {
    transform: scale(1.1);
}

.event-details-section .hashtag {
    margin-top: 15px;
    font-size: 14px;
    color: #6c757d;
}

.event-details-section .section-title h3 {
    color: var(--accent-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .event-details-section .event-details-cards {
        padding: 0px 15px;
    }

    .event-details-section .section-title h3 {
        font-size: 25px;
    }
}

/* Contact Form */
.contact .info-item {
    background: color-mix(in srgb, var(--default-color), transparent 96%);
    height: 100%;
    transition: 0.3s ease-in-out;
}

.contact .info-item i {
    font-size: 38px;
    line-height: 0;
    color: var(--accent-color);
}

.contact .info-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 10px 0;
}

.contact .info-item h6 {
    display: inline-block;
    color: var(--accent-color);
    margin-right: 2px;
}

.contact .info-item p {
    color: var(--default-color);
    padding: 0;

    margin-bottom: 0;
    display: inline-block;
}

.contact .info-item a {
    color: var(--default-color);
    padding: 0;
    line-height: 24px;
    font-size: 15px;
    margin-bottom: 0;
    display: inline-block;
}

.contact .contact-form,
.apply .apply-form {
    background: #f2f1fa;
    padding: 30px;
    height: 100%;
    border-radius: 16px;
}

.contact-form {
    background: #f2f1fa !important;
}

.contact .contact-form label {
    color: var(--accent-color);
}

.contact .contact-form input[type="text"],
.contact .contact-form input[type="email"],
.contact .contact-form input[type="tel"],
.contact .contact-form input[type="number"],
.apply .apply-form input,
.apply .apply-form select,
.contact .contact-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    /* background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%); */
    background-color: #fff;
    border: transparent;
    border-radius: 12px;
    min-height: 48px;
    padding: 12px 12px;
}

.contact .contact-form input[type="text"]:focus,
.contact .contact-form input[type="email"]:focus,
.contact .contact-form input[type="tel"]:focus,
.contact .contact-form input[type="number"]:focus,
.contact .contact-form textarea:focus,
.apply .apply-form input:focus,
.apply .apply-form select:focus {
    border-color: var(--accent-color);
}

.contact .contact-form input[type="text"]::placeholder,
.contact .contact-form input[type="email"]::placeholder,
.contact .contact-form input[type="tel"]::placeholder,
.contact .contact-form input[type="number"]::placeholder,
.contact .contact-form input[type="date"]::placeholder,
.contact .contact-form textarea::placeholder,
.contact .contact-form select::placeholder,
.apply .apply-form label {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    padding-inline-start: 8px;
    margin-bottom: 4px;
}

.contact .contact-form button[type="submit"],
.apply .apply-form button[type="submit"] {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .contact-form button[type="submit"]:hover,
.apply .apply-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* In ApplyForm */
@keyframes bounce {

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

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

.bounce-anim {
    animation: bounce 2s infinite;
}

/* Testimonials Section */
.testimonials .testimonial-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
    padding: 30px;
    margin: 40px 30px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    border: 4px solid var(--background-color);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.testimonials .swiper-slide {
    opacity: 0.3;
}

@media (max-width: 1199px) {
    .testimonials .swiper-slide-active {
        opacity: 1;
    }

    .testimonials .swiper-pagination {
        margin-top: 0;
    }

    .testimonials .testimonial-item {
        margin: 40px 20px;
    }
}

@media (min-width: 1200px) {
    .testimonials .swiper-slide-next {
        opacity: 1;
        transform: scale(1.12);
    }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list a:hover {
    border-color: var(--accent-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
}

.clients .swiper-slide img:hover {
    filter: none;
    opacity: 1;
}

.clients .swiper-wrapper {
    height: auto;
}

.clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

/* //////////// */

/* ================================== */
/* ======ahmed eltatawy================ */
.AEBtn {
    background-color: var(--accent-color);
    /* border: none; */
    color: var(--background-color);
    border: 1px solid var(--contrast-color);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: 600ms ease-in-out;

    a {
        color: var(--background-color);
        font-size: 1rem;
        font-weight: 400;
        padding: 0.4em 1em;
        display: inline-block;
        transition: 300ms ease-in-out;
        position: relative;
        z-index: 2;
    }

    &::before {
        content: "";
        width: 140%;
        height: 140%;
        background-color: var(--background-color);
        position: absolute;
        top: -140%;
        left: 50%;
        transform: translateX(-50%);
        transition: 600ms ease-in-out;
        z-index: 1;
        border-radius: 50%;
    }

    &:hover {
        background-color: transparent;

        a {
            color: var(--accent-color);
        }

        &::before {
            top: -20%;
        }
    }
}

/* lang dropdown with animation */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-dropdown i {
    font-size: 1.3rem;
}

.language-dropdown .language {
    color: var(--contrast-color);
    border: none;
    background-color: var(--accent-color);
    position: relative;
}

[popovertarget="langMenu"] {
    anchor-name: --langMenu;
}

.language-dropdown-content {
    /* display: none; */
    /* position: absolute;
  background-color: #f9f9f9;
  min-width: 100px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1; */
    /* position: absolute; */
    background-color: #f9f9f9;
    min-width: 100px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    /* top: 0; */
    inset: auto;
    margin: 0;
    inset-inline-end: anchor(--langMenu right);
    border: none;
    top: anchor(--langMenu 130%);
    border-radius: 8px;
    padding: 0;
    box-shadow: 0px 9px 20px 0px rgb(120 120 120 / 29%);
    transition: opacity 300ms ease-in-out, display 300ms allow-discrete,
        transform 300ms ease-in-out;
    opacity: 0;
    transform: scale(0.5);

    &:popover-open {
        opacity: 1;
        transform: scale(1);
    }
}

@starting-style {
    .language-dropdown-content:popover-open {
        opacity: 0;
        transform: scale(0.5);
    }
}

.language-dropdown-content a {
    color: black;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
}

.language-dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* media */
@media (max-width: 991px) {
    .header .logo {
        flex-shrink: 0;
        flex-grow: 1;

        img {
            margin-inline: auto;
        }
    }
}

/*  */
@keyframes Fixed {
    0% {
        top: -100px;
    }

    100% {
        top: 0;
    }
}

/* media */
@media (max-width: 991px) {
    .header .logo {
        flex-shrink: 0;
        flex-grow: 1;

        img {
            margin-inline: auto;
        }
    }
}

/*  */
@keyframes Fixed {
    0% {
        top: -100px;
    }

    100% {
        top: 0;
    }
}

/* Base AOS animations enhancement */
[data-aos] {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section title animations */
.section-title[data-aos="fade-up"] h2 {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.section-title[data-aos="fade-up"].aos-animate h2 {
    transform: translateY(0);
    opacity: 1;
}

.section-title[data-aos="fade-up"] p {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.section-title[data-aos="fade-up"].aos-animate p {
    transform: translateY(0);
    opacity: 1;
}

/* Card animations */
.card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* Image animations */
.img-fluid[data-aos="fade-up"] {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-fluid[data-aos="fade-up"].aos-animate {
    clip-path: inset(0 0 0 0);
}

/* Content animations */
.content[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.content[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* List animations */
.content ul li {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.content[data-aos="fade-up"].aos-animate ul li {
    opacity: 1;
    transform: translateX(0);
}

.content ul li:nth-child(1) {
    transition-delay: 0.6s;
}

.content ul li:nth-child(2) {
    transition-delay: 0.8s;
}

/* Testimonial animations */
.testimonial-item[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Service card staggered animations */
.services .row>div[data-aos="fade-up"] {
    perspective: 1000px;
}

.services .service-item {
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.services .service-item:hover {
    transform: rotateX(10deg) rotateY(-10deg);
}

.services .service-item i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services .service-item:hover i {
    transform: scale(1.2) translateZ(20px);
    color: var(--accent-color);
}

/* Testimonial creative animations */
.testimonial-item {
    position: relative;
    overflow: hidden;
}

.testimonial-item:before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: var(--accent-color);
    opacity: 0.1;
    font-family: serif;
    transform: translateY(-100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item[data-aos="fade-up"].aos-animate:before {
    transform: translateY(0);
}

/* List item creative animations */
.content ul li {
    position: relative;
    padding-left: 30px;
}

.content ul li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content ul li:hover i {
    transform: translateY(-50%) rotate(360deg) scale(1.2);
    color: var(--accent-color);
}

/* Image reveal animation */
.img-fluid[data-aos="fade-up"] {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-fluid[data-aos="fade-up"].aos-animate {
    clip-path: inset(0 0 0 0);
}

/* Button hover effects */
.read-more,
.cta-btn {
    position: relative;
    overflow: hidden;
}

.read-more:before,
.cta-btn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
}

.read-more:hover:before,
.cta-btn:hover:before {
    width: 300px;
    height: 300px;
}

/* Number counter animation */
@keyframes countUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

[data-count] {
    animation: countUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Enhance AOS animations on mobile */
@media (max-width: 768px) {
    [data-aos] {
        transition-duration: 0.6s;
    }

    .content ul li:nth-child(1) {
        transition-delay: 0.3s;
    }

    .content ul li:nth-child(2) {
        transition-delay: 0.4s;
    }

    .services .row>div:nth-child(n) {
        transition-delay: 0.1s;
    }
}

/* Creative Animations */

/* Section title reveal effect */
.section-title[data-aos="fade-up"] h2 {
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

/* .section-title[data-aos="fade-up"] h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
} */

.section-title[data-aos="fade-up"].aos-animate h2:after {
    width: 60px;
}

/* Card hover effects */
.card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--surface-color);
}

.card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--accent-color), transparent);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: inherit;
    z-index: 0;
}

.card:hover {
    transform: translateY(-10px) rotate(2deg);
}

.card:hover:before {
    opacity: 0.1;
}

.card .image-wrapper {
    overflow: hidden;
    border-radius: inherit;
}

.card .image-wrapper img {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .image-wrapper img {
    transform: scale(1.1) rotate(-3deg);
}

/* Service card staggered animations */
.services .row>div[data-aos="fade-up"] {
    perspective: 1000px;
}

.services .service-item {
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.services .service-item:hover {
    transform: rotateX(10deg) rotateY(-10deg);
}

.services .service-item i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services .service-item:hover i {
    transform: scale(1.2) translateZ(20px);
    color: var(--accent-color);
}

/* Testimonial creative animations */
.testimonial-item {
    position: relative;
    overflow: hidden;
}

.testimonial-item:before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: var(--accent-color);
    opacity: 0.1;
    font-family: serif;
    transform: translateY(-100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-item[data-aos="fade-up"].aos-animate:before {
    transform: translateY(0);
}

/* List item creative animations */
.content ul li {
    position: relative;
    padding-left: 30px;
}

.content ul li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content ul li:hover i {
    transform: translateY(-50%) rotate(360deg) scale(1.2);
    color: var(--accent-color);
}

/* Image reveal animation */
.img-fluid[data-aos="fade-up"] {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-fluid[data-aos="fade-up"].aos-animate {
    clip-path: inset(0 0 0 0);
}

/* Button hover effects */
.read-more,
.cta-btn {
    position: relative;
    overflow: hidden;
}

.read-more:before,
.cta-btn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
}

.read-more:hover:before,
.cta-btn:hover:before {
    width: 300px;
    height: 300px;
}

/* Number counter animation */
@keyframes countUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

[data-count] {
    animation: countUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Modern Section Styles */
section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    /* background: var(--surface-color); */
}

section:nth-child(even) {
    background: color-mix(in srgb, var(--surface-color), var(--accent-color) 3%);
}

/* Modern Card Styles */
.card {
    border: none;
    background: var(--surface-color);
    border-radius: 16px;
    box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

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

.card .card-img-top {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Service Items Modern Style */
.service-item {
    padding: 30px;
    border-radius: 16px;
    background: var(--surface-color);
    box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.15);
}

.service-item i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover i {
    transform: scale(1.2) translateY(-5px);
}

/* Team Member Cards */
.team-member {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.1);
}

.team-member .member-img {
    position: relative;
    overflow: hidden;
}

.team-member .member-img img {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.team-member .member-info {
    padding: 25px;
    background: var(--surface-color);
    position: relative;
}

.team-member .social {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
}

.team-member:hover .social {
    opacity: 1;
    bottom: 15px;
}

/* Contact Section Modern Style */
.contact .info-item {
    padding: 30px;
    border-radius: 16px;
    background: var(--surface-color);
    box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact .info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.15);
}

.contact .info-item i {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact .info-item:hover i {
    transform: scale(1.2);
}

/* Modern Form Controls */
.form-control {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(var(--accent-color-rgb), 0.1);
}

/* Modern Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-color);
    border: none;
}

.btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
}

.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Testimonials Modern Style */
.testimonial-item {
    padding: 30px;
    border-radius: 16px;
    background: var(--surface-color);
    box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 20px 0;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.15);
}

.testimonial-item .testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid var(--accent-color);
}

/* Modern List Styles */
.content ul {
    list-style: none;
    padding: 0;
}

.content ul li {
    position: relative;
    padding: 15px 0 15px 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.content ul li:last-child {
    border-bottom: none;
}

.content ul li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.content ul li:hover {
    padding-left: 40px;
    color: var(--accent-color);
}

.content ul li:hover i {
    transform: translateY(-50%) scale(1.2);
}

/* Modern Image Styles */
.img-fluid {
    border-radius: 16px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-hover-zoom {
    overflow: hidden;
    border-radius: 16px;
}

.img-hover-zoom img {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Section Background Patterns */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image: radial-gradient(var(--accent-color) 2px, transparent 2px);
    background-size: 30px 30px;
}

/* Enhance mobile responsiveness */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .service-item,
    .testimonial-item,
    .contact .info-item {
        margin-bottom: 20px;
    }

    .btn {
        width: 100%;
        margin: 5px 0;
    }
}

.pulse {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;

    transform-origin: center;
}

.EgyptMap {
    .governorate {
        position: relative;
        display: block;

        path {
            fill: #85a8cf;
            position: relative;
            transition: 0.2s ease-in-out;
            transform-origin: center;
        }

        &.haveBranch {
            path {
                fill: var(--accent-color);
                cursor: pointer;
            }

            &:hover {
                path {
                    fill: rgb(255, 208, 0);
                    transform: scale(1.01);
                    z-index: 2;
                }
            }
        }
    }
}

.clientsCount {
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;

    .num {
        display: flex;
        gap: 4px;
        align-items: baseline;
        font-size: 24px;

        span {
            font-size: 60px;
            font-weight: bold;
            color: var(--accent-color);
        }
    }

    #governorate {
        color: var(--accent-color);
        font-size: 30px;
        font-weight: bold;
    }
}

.Plus {
    font-size: 20px;
}

.mapFrame {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 16px;
}

.rtlDir {
        --default-font: "LamaSans", sans-serif;
        --heading-font: "LamaSans", sans-serif;
        --nav-font: "LamaSans", sans-serif;


    * {
        direction: rtl;
    }

    .hero {
        direction: ltr;
    }

    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        transform: rotate(180deg);
    }

    .more-services {
        direction: ltr;
    }

    .about .content ul li {
        i {
            right: 0;
        }

        span {
            margin-right: 40px;
        }
    }
}
