@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --main-dark: #4636bd;
    --main-color: #6c5ce7;
    --main-alt: #a8a4e6;
    --dark-bg: hsl(240, 15%, 25%);
    --dark-card: #3d3d52;
    --light-bg: #fff;
    --light-card: #f6f7f9;
    --text-dark: #2d3436;
    --text-light: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Loader Styles */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        235deg,
        var(--main-alt) 0%,
        var(--main-color) 50%,
        var(--main-dark) 100%
    );
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease;
}

.loader {
    width: 80px;
    height: 80px;
    position: relative;
}

.loader-inner {
    position: absolute;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 5px solid #fff;
    width: 100%;
    height: 100%;
    animation: spin 1.5s linear infinite;
}

.loader-inner:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    animation: spin 1s linear infinite reverse;
    border-top-color: var(--main-alt);
}

.loader-text {
    color: white;
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "Cairo", sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    transition: var(--transition);
    min-height: 100vh;
    overflow-x: hidden;
}

body.dark-mode {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Alert */
.alert {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(-45deg, var(--main-color), var(--main-dark));
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    max-height: 100px;
}

.alert h2 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin: 0;
    padding: 0 30px;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #fff;
    transform: translateY(-50%) scale(1.2);
}

.alert.hide {
    opacity: 0;
    max-height: 0;
    padding: 0;
    margin: 0;
}

/* Header Styles */
header {
    background-color: var(--light-bg);
    box-shadow: var(--shadow);
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

body.dark-mode header {
    background-color: var(--dark-card);
}

body.dark-mode .logo img,
.logo_white {
    filter: brightness(0) invert(1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 2rem;
    height: 70px;
    position: relative;
}

.logo img {
    height: 40px;
    transition: var(--transition);
}

.logo img body.dark-mode .hamburger-menu .bar {
    background-color: var(--text-light);
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.hamburger-menu .bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

body.dark-mode .hamburger-menu .bar {
    background-color: var(--text-light);
}

.nav-links {
    display: flex;
    list-style: none;
    transition: var(--transition);
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    text-decoration: none;
    white-space: nowrap;
    color: inherit;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    user-select: none;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--main-color);
}

.nav-links a::after :not(.expert-tips-menu a::after) {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--main-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-btn {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    color: var(--main-color);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--main-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    color: var(--text-dark);
    background-color: var(--light-card);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 1.5rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    margin-top: 10px;
}

body.dark-mode .cart-dropdown {
    color: var(--text-light);
    background-color: var(--dark-card);
}

.cart-icon:hover .cart-dropdown {
    opacity: 1;
    visibility: visible;
}

/* Expert Tips Dropdown Menu Styles */
.expert-tips-dropdown {
    position: relative;
}

.expert-tips-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.expert-tips-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.expert-tips-menu {
    position: absolute;
    top: 150%;
    right: 0;
    background-color: var(--light-bg);
    border-radius: 5px;
    box-shadow: var(--shadow);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

body.dark-mode .expert-tips-menu {
    background-color: var(--dark-card);
}

.expert-tips-dropdown.active .expert-tips-menu,
.expert-tips-dropdown:focus-within .expert-tips-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.expert-tips-dropdown.active .expert-tips-arrow {
    transform: rotate(180deg);
}

.expert-tips-menu li {
    padding: 0;
    margin: 0;
}

.expert-tips-menu li::marker {
    content: "";
}

.expert-tips-menu a {
    display: block;
    padding: 0.35rem 1.5rem;
    color: inherit;
    transition: var(--transition);
    font-size: 1.1rem;
    user-select: none;
}

.expert-tips-menu a::after,
.expert-tips-menu a:hover::after {
    display: none;
}

.expert-tips-menu a:hover {
    color: var(--main-color);
    background-color: #fbfbfb;
    padding-right: 1.75rem;
}

body.dark-mode .expert-tips-menu a:hover {
    background-color: var(--dark-card);
}

[dir="ltr"] .expert-tips-menu a:hover {
    padding-right: 1.5rem;
    padding-left: 1.75rem;
}

[dir="ltr"] .expert-tips-menu {
    left: 0;
}

[dir="ltr"] .expert-tips-menu a {
    padding: 0.75rem 1.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hamburger-menu {
        display: flex;
    }

    .expert-tips-dropdown {
        margin: 0;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background: var(--light-card);
        flex-direction: column;
        padding: 2rem;
        overflow: auto;
        transition: var(--transition);
    }

    body.dark-mode .nav-links {
        background: var(--dark-card);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1rem 0;
        opacity: 0;
        animation: fadeIn 0.5s ease forwards;
    }

    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem 0;
    }

    .nav-links a::after {
        display: none;
    }

    .cart-dropdown {
        width: 300px;
        right: -50px;
    }
}

@media screen and (max-width: 475px) {
    .nav-links.active {
        width: 100%;
        right: 0;
    }
}

/* Responsive Styles for Expert Tips Dropdown */
@media (max-width: 992px) {
    .expert-tips-dropdown {
        width: 100%;
    }

    .expert-tips-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }

    body.dark-mode .expert-tips-menu {
        background-color: transparent;
    }

    .expert-tips-dropdown.active .expert-tips-menu {
        max-height: 300px;
        padding: 0.5rem 0;
    }

    .expert-tips-dropdown.active .expert-tips-arrow {
        transform: rotate(180deg);
    }

    .expert-tips-menu a:hover {
        background-color: transparent;
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #fff, #ddd);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(./assets/Images/bg/IMG-20250409-WA0014.jpg) center center/cover no-repeat;
    opacity: 0.1;
    z-index: -1;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--light-card), transparent);
}

body.dark-mode .hero::after {
    background: linear-gradient(to top, var(--dark-card), transparent);
}

body.dark-mode .hero::before {
    opacity: 0.075;
}

body.dark-mode .hero {
    background: linear-gradient(to bottom, var(--dark-card), var(--dark-bg));
}

/* للتعديلات على الشاشات الصغيرة */
@media (max-width: 768px) {
    .hero {
        background-size: 300px, cover;
        padding: 80px 0 40px;
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

body.dark-mode .hero-text h1 {
    color: var(--text-light);
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

body.dark-mode .hero-text p {
    color: #ccc;
}

.hero-image {
    flex: 1;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn a {
    color: currentColor;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--main-color);
    color: #fff;
    border: 2px solid var(--main-color);
}

.btn-primary:hover,
.checkout-btn:hover {
    background-color: var(--main-dark);
    border-color: var(--main-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

.btn-outline:hover {
    background-color: var(--main-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--light-card);
    position: relative;
}

body.dark-mode .why-choose-us {
    background-color: var(--dark-card);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: inherit;
}

.section-title .highlight {
    font-weight: 700;
    background-image: linear-gradient(
        var(--deg),
        var(--main-color),
        var(--main-dark)
    );
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.section-title p {
    color: inherit;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
}

@media screen and (max-width: 600px) {
    .section-title p {
        font-size: 0.9rem;
    }
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.feature-box {
    background-color: var(--light-bg);
    border-radius: 15px;
    padding: 2rem;
    border-top: 5px solid var(--main-color);
    box-shadow: 0 0 25px #e8e8e8;
    transition: var(--transition);
    text-align: center;
}

body.dark-mode .feature-box {
    background-color: var(--dark-bg);
    box-shadow: 0 0 25px #1b1b28;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: inherit;
}

.feature-box p {
    color: inherit;
    opacity: 0.8;
    line-height: 1.6;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
    max-width: 320px;
}

.device-container {
    display: block;
    width: 350px;
    height: 650px;
    display: grid;
    place-content: center;
    padding: 0;
    transform-origin: center;
    overflow: hidden;
}

.device {
    --device-scale: 0.7;
    transform: scale(var(--device-scale));
    transform-origin: center center;
}

.device .device-frame {
    z-index: 1;
}

.device .device-screen {
    background-color: #000;
    background-position: center center;
    background-size: cover;
    object-fit: cover;
    position: relative;
}

.device-iphone-x {
    width: 428px;
    height: 868px;
}

.device-iphone-x .device-frame {
    background: #222;
    border-radius: 68px;
    box-shadow: inset 0 0 2px 2px #c8cacb, inset 0 0 0 7px #e2e3e4;
    height: 868px;
    margin: 0;
    padding: 28px;
    width: 428px;
}

.device-iphone-x .device-screen {
    border-radius: 40px;
    height: 812px;
    width: 375px;
}

.device-iphone-x .device-stripe::after,
.device-iphone-x .device-stripe::before {
    border: solid rgba(1, 1, 1, 0.25);
    border-width: 0 7px;
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 9;
}

.device-iphone-x .device-stripe::after {
    top: 85px;
}

.device-iphone-x .device-stripe::before {
    bottom: 85px;
}

.device-iphone-x .device-header {
    background: #222;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    height: 30px;
    left: 50%;
    margin-left: -102px;
    position: absolute;
    top: 28px;
    width: 204px;
}

.device-iphone-x .device-header::after,
.device-iphone-x .device-header::before {
    content: "";
    height: 10px;
    position: absolute;
    top: 0;
    width: 10px;
}

.device-iphone-x .device-header::after {
    background: radial-gradient(
        circle at bottom left,
        transparent 0,
        transparent 75%,
        #222 75%,
        #222 100%
    );
    left: -10px;
}

.device-iphone-x .device-header::before {
    background: radial-gradient(
        circle at bottom right,
        transparent 0,
        transparent 75%,
        #222 75%,
        #222 100%
    );
    right: -10px;
}

.device-iphone-x .device-sensors::after,
.device-iphone-x .device-sensors::before {
    content: "";
    position: absolute;
}

.device-iphone-x .device-sensors::after {
    background: #333;
    border-radius: 3px;
    height: 6px;
    left: 50%;
    margin-left: -25px;
    top: 32px;
    width: 50px;
}

.device-iphone-x .device-sensors::before {
    background: radial-gradient(
        farthest-corner at 20% 20%,
        #6074bf 0,
        transparent 40%
    ),
    radial-gradient(
        farthest-corner at 80% 80%,
        #513785 0,
        #24555e 20%,
        transparent 50%
    );
    border-radius: 50%;
    box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.05);
    height: 10px;
    left: 50%;
    margin-left: 42px;
    top: 30px;
    width: 10px;
}

.device-iphone-x .device-btns {
    background: #c8cacb;
    height: 32px;
    left: -3px;
    position: absolute;
    top: 115px;
    width: 3px;
}

.device-iphone-x .device-btns::after,
.device-iphone-x .device-btns::before {
    background: #c8cacb;
    content: "";
    height: 62px;
    left: 0;
    position: absolute;
    width: 3px;
}

.device-iphone-x .device-btns::after {
    top: 60px;
}

.device-iphone-x .device-btns::before {
    top: 140px;
}

.device-iphone-x .device-power {
    background: #c8cacb;
    height: 100px;
    position: absolute;
    right: -3px;
    top: 200px;
    width: 3px;
}

.features-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
    max-width: 320px;
}

.device-container {
    width: 350px;
    height: 650px;
    display: grid;
    place-content: center;
    padding: 0;
    transform-origin: center;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .features-column {
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        order: 2;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .device-container {
        order: 1;
    }

    .feature-box {
        flex: 1 1 calc(50% - 1rem);
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
    }

    .features-column {
        flex-direction: column;
        order: 2;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .device-container {
        order: 1;
        margin: 0 auto;
        width: 100%;
        max-width: 320px;
    }

    .device {
        --device-scale: 0.65;
    }

    .feature-box {
        flex: 1 1 100%;
        min-width: auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .device {
        --device-scale: 0.65;
    }

    .feature-box {
        padding: 1.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }
}

/* Courses Section */

.courses {
    background-color: #fff;
    padding-bottom: 1.5rem;
}

body.dark-mode .courses {
    background-color: var(--dark-bg);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    place-content: center;
}

.course-card-index,
.course-card {
    position: relative;
    background-color: var(--light-card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.course-card-index::before,
.course-card::before {
    content: attr(data-discount);
    position: absolute;
    right: -55px;
    top: 15px;
    font-weight: bold;
    font-size: 1.25rem;
    padding: 7px 75px;
    color: #fff;
    background-color: var(--main-dark);
    transform: rotate(45deg);
}

body.dark-mode .course-card-index,
body.dark-mode .course-card {
    background-color: var(--dark-card);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.course-card-index:hover,
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.course-card-index img,
.course-card img {
    width: 100%;
}

.course-info {
    padding: 1.5rem;
}

.course-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: inherit;
}

.course-info p {
    color: inherit;
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #ccc;
}

.course-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--main-dark);
}

.original-price {
    text-decoration: line-through;
    opacity: 0.6;
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.add-to-cart {
    background-color: var(--main-dark);
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 7px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 5px;
}

.add-to-cart:hover {
    background-color: var(--main-color);
}

/* Cart Dropdown */
.cart-dropdown {
    --width: 350px;

    position: absolute;
    top: 100%;
    right: calc(-1 * var(--width));
    width: var(--width);
    background-color: var(--light-card);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    margin-top: 10px;
}

[dir="ltr"] .cart-dropdown {
    left: auto;
    right: 0;
}

body.dark-mode .cart-dropdown {
    background-color: var(--dark-card);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cart-dropdown.active {
    opacity: 1;
    visibility: visible;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-mode .cart-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-details h4 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
    color: inherit;
}

.cart-item-price {
    color: var(--main-color);
    font-weight: bold;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4757;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: bold;
    font-size: 1.1rem;
    color: inherit;
}

body.dark-mode .cart-total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--main-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/assets/Images/bg/IMG-20250409-WA0017.jpg") center center/cover no-repeat;
    z-index: -1;
}

.footer-container {
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    position: relative;
    padding-bottom: 7px;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(45deg, var(--main-color), var(--main-dark));
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.payment-icon {
    transition: all 0.3s ease;
    opacity: 0.8;
}

.payment-icon:hover {
    opacity: 1;
}

.footer-link {
    position: relative;
    transition: all 0.3s ease;
}

.footer-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    right: 0;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #28a745;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 500px) {
    .notification {
        width: 90%;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        row-gap: 50px;
        text-align: center;
    }

    .hero-text {
        padding: 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .btn-group {
        justify-content: center;
    }

    .hero-text p {
        margin: auto;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .cart-dropdown {
        --width: 300px;
        right: calc(-1 * calc(var(--width) - 50px));
    }

    [dir="ltr"] .cart-dropdown {
        --width: 300px;
        left: calc(-1 * calc(var(--width) - 50px));
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn {
        padding: 0.4rem 1.5rem;
    }

    .payment-methods {
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    [dir="ltr"] .footer-col h4::after {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

@media screen and (max-width: 500px) {
    .hero-image img {
        display: none;
    }
}

.counters-section {
    background: var(--light-bg);
    padding: 3rem 0;
    color: white;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.counter-item {
    height: 175px;
    text-align: center;
    padding: 2px;
    border: none;
    background: linear-gradient(to right, var(--main-color), var(--main-dark));
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.counter-item:hover {
    transform: translateY(-5px);
}

.counter-item .counter_content {
    background: var(--light-card);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1;
}

.body.dark-mode .counter-item .counter_content {
    background: var(--dark-card);
}

.counter-item .counter {
    color: var(--main-color);
    font-size: 3.25rem;
    font-weight: 600;
    display: block;
}

.counter-item p {
    font-size: 1.25rem;
    color: var(--main-color);
    font-weight: bold;
}

body.dark-mode .counter-item {
    box-shadow: none;
}

body.dark-mode .counter-item .counter_content {
    background-attachment: var(--light-card);
}

body.dark-mode .counters-section {
    background-color: var(--dark-bg);
}

body.dark-mode .counter-item .counter_content {
    background-color: var(--dark-card);
    box-shadow: none;
}

body.dark-mode .counter-item .counter {
    color: var(--main-color);
}

body.dark-mode .counter-item p {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .counter-item .counter {
        font-size: 2.5rem;
    }

    .counter-item p {
        font-size: 1rem;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0);
}

main {
    width: 100%;
    margin: auto;
    background-color: #fff;
    padding: 3rem 0;
}

body.dark-mode main {
    background-color: var(--dark-bg);
}

main .section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.slider {
    width: 100%;
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
}

.slider .list {
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}

.slider .list .item {
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 25s linear infinite;
    transition: filter 0.3s ease-in-out;
    animation-delay: calc(
        calc(10s / var(--quantity)) * calc(var(--position) - 1) - 10s
    ) !important;
    display: flex;
    align-items: center;
}

.slider .list .item img {
    width: 100%;
    clip-path: circle(50%);
    cursor: pointer;
}

@keyframes autoRun {
    from {
        left: 100%;
    }

    to {
        left: calc(var(--width) * -1);
    }
}

.slider:hover .item {
    animation-play-state: paused !important;
    filter: grayscale(1);
}

.slider .item:hover {
    filter: grayscale(0);
}

.slider[reverse="true"] .item {
    animation: reversePlay 10s linear infinite;
}

@keyframes reversePlay {
    from {
        left: calc(var(--width) * -1);
    }

    to {
        left: 100%;
    }
}

.go_to_top {
    position: fixed;
    bottom: 25px;
    left: -75px;
    background-color: var(--main-color);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100vmax;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
    z-index: 999999999;
}

.go_to_top.show {
    bottom: 25px;
    left: 25px;
}

@media screen and (max-width: 500px) {
    .go_to_top.show {
        bottom: 20px;
        left: 10px;
    }
}

.go_to_top i {
    color: #fff;
    font-size: 1.1rem;
}

.go_to_top:hover {
    background-color: var(--main-dark);
    box-shadow: 0 0 20px #4636bf80;
}

.go_to_top:active {
    scale: 0.95;
}

/* Animations */
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideRight 0.8s forwards;
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* تأثيرات عند التمرير */
[data-scroll] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-scroll="in"] {
    opacity: 1;
    transform: translateY(0);
}

/* Custom CSS for elements that need more specific styling */
.tablet-design {
    position: relative;
    background: #f0f0f0;
    border-radius: 30px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid #333;
    width: 100%;
    max-width: 575px;
}

.tablet-screen {
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.tablet-button {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #333;
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.stats-card {
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dark-mode .tablet-design {
    background: var(--dark-bg);
    border-color: var(--dark-card);
}

.dark-mode .tablet-button {
    background: #4a5568;
}

.main-color {
    color: var(--main-color);
}

@media screen and (max-width: 1024px) {
    .tablet-design {
        max-width: 100%;
    }
}

.wrapper .card_Container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.wrapper .card_Container .card {
    position: relative;
    width: 290px;
    height: 400px;
    margin: 20px;
    overflow: hidden;
    background: linear-gradient(to top, var(--light-card) 25%, var(--light-bg));
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease-out;
}

body.dark-mode .wrapper .card_Container .card {
    background: linear-gradient(to top, var(--dark-card) 25%, var(--dark-bg));
}

.wrapper .card_Container .card:hover .imbBx img {
    transform: scale(1.05);
}

.wrapper .card .imbBx,
.imbBx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease-in-out;
}

.wrapper .card .content {
    position: absolute;
    bottom: -160px;
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: bottom 0.5s;
    transition-delay: 0.5s;
}

.wrapper .card:hover .content {
    bottom: 0;
    transition-delay: 0s;
}

.wrapper .content .contentBx h3 {
    color: #fff;
    font-weight: 600;
    font-size: 25px;
    text-align: center;
    margin: 20px 0 15px;
    line-height: 1.1em;
    transition: 0.5s;
    transition-delay: 0.6s;
    opacity: 0;
    transform: translateY(-20px);
}

.wrapper .card:hover .content .contentBx h3 {
    opacity: 1;
    transform: translateY(0);
}

.wrapper .content .contentBx h3 span {
    font-size: 15px;
    font-weight: 300;
    text-transform: initial;
}

.stratigy {
    background-color: var(--light-card);
}

body.dark-mode .stratigy {
    background-color: var(--dark-card);
}

.features_about {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature_about {
    max-width: 300px;
    text-align: center;
}

.feature_about:hover img {
    translate: 0 -5px;
    scale: 1.05;
    rotate: -10deg;
}

.feature_about img {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px auto;
    transition: 0.5s ease-in-out;
}

.feature_about h3 {
    font-size: 18px;
    font-weight: bold;
    color: #1d2f3f;
    margin-bottom: 15px;
}

.feature_about p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

body.dark-mode .card_bg_in_dark_mode {
    background-color: var(--dark-card) !important;
}

body.dark-mode .dark_bg_in_dark_mode {
    background-color: var(--dark-bg) !important;
}

body.dark-mode .white_text_in_dark_mode {
    color: var(--text-light) !important;
}

body.dark-mode .gray_text_in_dark_mode {
    color: #ddd !important;
}

body.dark-mode .light_border_in_dark_mode {
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

body.dark-mode .dark_border_in_dark_mode {
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.divider {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(99, 102, 241, 0.5),
        transparent
    );
}

.input,
textarea {
    outline: none;
}

.categories-filter {
    padding: 1rem;
    column-gap: 1rem;
    row-gap: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media screen and (max-width: 500px) {
    .categories-filter {
        column-gap: 0.5rem;
        row-gap: 0.75rem;
    }
}

.category-btn {
    padding: 8px 20px;
    color: var(--text-dark);
    background: #eee;
    border-radius: 100vmax;
    margin: 0 5px;
    transition: 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    color: var(--text-light);
    background-color: var(--main-dark);
}

body.dark-mode .category-btn {
    color: var(--text-light);
    background-color: var(--dark-card);
}

body.dark-mode .category-btn.active,
body.dark-mode .category-btn:hover {
    color: var(--text-light);
    background-color: var(--main-dark);
}

.course-card {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

.course-card.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.course-card.hide {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a1a, #111);
    border-radius: 40px;
    padding: 14px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 8px solid #222;
}

.phone-mockup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, rgba(34, 34, 34, 0.8), transparent);
    z-index: 10;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #111;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 15;
}

.video-container {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.video-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.3)
    );
    z-index: 1;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.comment-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.comment-item: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);
}

.comment-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.play-icon i {
    color: white;
    font-size: 24px;
    margin-right: -3px;
}

.phone-mockup:hover .play-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 768px) {
    .testimonials-container {
        flex-direction: column;
    }

    .phone-mockup {
        width: 240px;
        height: 500px;
        margin-bottom: 30px;
    }

    .comment-gallery {
        grid-template-columns: 1fr;
    }
}

.card {
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-gradient {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.white_main_logo {
    filter: brightness(0) invert(1);
}

.transition-300 {
    transition: 0.3s ease;
}

input,
textarea,
select,
button {
    outline: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

@media (min-width: 1536px) {
    .container {
        max-width: 1300px !important;
    }
}

/* Whatsapp */

.WA_Chat_Widget * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.WA_Chat_Widget .WA_FloatingButton {
    position: fixed;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.185);
    border-radius: 50%;
    background: #4fce5d;
    cursor: pointer;
    z-index: 10000;
    transition: 0.3s ease;
}

.WA_Chat_Widget .WA_FloatingButton:hover {
    background: #28a745;
}

.WA_Chat_Widget .WA_FloatingButton svg {
    width: 33px;
    height: 33px;
    fill: #fff;
}

.WA_Chat_Widget[data-position^="top-"] .WA_FloatingButton {
    top: 20px;
}

.WA_Chat_Widget[data-position^="bottom-"] .WA_FloatingButton {
    bottom: 20px;
}

.WA_Chat_Widget[data-position$="-left"] .WA_FloatingButton {
    left: 20px;
}

.WA_Chat_Widget[data-position$="-right"] .WA_FloatingButton {
    right: 20px;
}

.WA_Chat_Widget[data-position$="-center"] .WA_FloatingButton {
    left: 50%;
    transform: translateX(-50%);
}

.WA_Chat_Widget[data-position^="top-"] .WA_ChatBox {
    top: 100px;
}

.WA_Chat_Widget[data-position^="bottom-"] .WA_ChatBox {
    bottom: 100px;
}

.WA_Chat_Widget[data-position$="-left"] .WA_ChatBox {
    left: 30px;
}

.WA_Chat_Widget[data-position$="-right"] .WA_ChatBox {
    right: 30px;
}

.WA_Chat_Widget[data-position$="-center"] .WA_ChatBox {
    left: 50%;
    transform: translateX(-50%);
}

.WA_Chat_Widget .WA_ChatBox {
    position: fixed;
    width: 360px;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 5px 25px 0px rgba(0, 0, 0, 0.1);
    display: none;
}

@media screen and (max-width: 450px) {
    .WA_Chat_Widget .WA_ChatBox {
        width: 300px;
    }
}

@media screen and (max-width: 350px) {
    .WA_Chat_Widget .WA_ChatBox {
        width: 250px;
    }
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header {
    width: auto;
    background: #095e54;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .avatarBox {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .avatarBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .infoBox .name {
    color: #fff;
    font-weight: 600;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .infoBox .answer_time {
    color: #e4e4e4;
    font-size: 14px;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .WA_Close {
    background: transparent;
    color: #fff;
    border: none;
    outline: none;
    font-size: 20px;
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Header .WA_Close svg {
    fill: #ffff;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body {
    padding: 20px;
    background: #e6ddd4;
    position: relative;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url(./assets/Images/pattern.jpg) center no-repeat;
    background-size: 175%;
    opacity: 1;
    z-index: 0;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message {
    max-width: 280px;
    background: #fff;
    padding: 20px;
    padding-top: 10px;
    border-radius: 8px;
    z-index: 1;
    position: relative;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    left: -10px;
    top: 0px;
    border-radius: 3px;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message .username {
    color: var(--main-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Body .message .message_content {
    font-size: 14px;
    color: #000;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Footer {
    padding: 20px;
    background-color: #fff;
    width: 100%;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Footer .btn {
    width: 100%;
    outline: none;
    border: none;
    padding: 10px;
    border-radius: 1000px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Footer .btn.btn-whatsapp {
    background: #095e54;
    color: #fff;
    display: block;
    text-align: center;
    transition: 0.3s ease;
}

.WA_Chat_Widget .WA_ChatBox .WA_ChatBox_Footer .btn.btn-whatsapp:hover {
    background: #084c44;
}

.WA_Chat_Widget .WA_ChatBox {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

.WA_Chat_Widget .WA_ChatBox.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
}

.WA_Chat_Widget .WA_FloatingButton {
    transition: transform 0.3s ease, background 0.3s ease;
}

.second-section-title {
    position: relative;
    display: inline-block;
}

.second-section-title::after {
    content: "";
    position: absolute;
    bottom: -13px;
    right: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #a855f7);
    border-radius: 2px;
}


.hero_bg_image {

}

.hero_bg_image {
    background-size: cover !important;
    background-repeat: no-repeat;
    color: #FFF;
}
.hero_bg_image
.hero-text h1 {
    color: #FFF;
}
.hero_bg_image
.btn-outline {
    border: 2px solid #ffffff;
    color: #FFF;
}
.hero_bg_image
.btn-outline:hover {
    border: 2px solid #6c5ce7;
    color: #FFF;
}


