@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #173763;
    --secondary-color: #3885C2;
    --text-color: #333;
    --background-color: #f9f9f9;
    --border-color: #e5e7eb;
    --primary-light: #3BA3D1;

}

body {
    font-family: "Rubik", sans-serif;
    margin: 0;
    padding: 0;
    direction: ltr;
    overflow-x: hidden !important;
}

@media(min-width:1600px) {
    .container {
        max-width: 1500px !important;
    }
}


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

.top-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
    padding: 12px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

ul {
    padding: 0;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.logo_main img {
    width: 80px;
    height: 30px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.nav-item a {
    font-size: 15px;
    font-weight: 500;
    position: relative;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-item a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-item a:hover {
    color: var(--primary-color);
}

.nav-item a:hover::after {
    width: 100%;
}


.logo img {
    width: 100%;
    height: 60px;
    border-radius: 8px;
}

.hamburger {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s;
    margin-left: 10px;
}

.hamburger:hover {
    transform: scale(1.1);
}

.lang-options {
    display: flex;
    /* gap: 20px;/ */
    align-items: center;
    margin-right: 25px;
}

.lang-options span {
    cursor: pointer;
    padding: 8px 6px;
    border-radius: 6px;
    transition: background-color 0.3s;
    color: var(--primary-color);
}

.lang-options span:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main_btn .button {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.main-nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 14px;
}





.main-content {
    /* margin-right: 70px; */
    /* margin-top: 64px; */
    padding: 0px 0;
    /* min-height: calc(100vh - 64px); */
    transition: margin-right 0.3s ease;
}

.main-content.expanded {
    margin-right: 250px;
}

.hero-section {
    padding: 100px 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: start;
}

.hero-title_top {
    font-size: 2rem;
    font-weight: 500;
    color: #213242;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: right;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 500;
    text-align: start;
}

.hero-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.8;
    text-align: justify;
}

.btn-start {
    background: var(--primary-color);
    ;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-left: 20px;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
}

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

.btn-play {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    ;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-play:hover {
    background: var(--primary-color);
    ;
    transform: scale(1.1);
}


.btn-play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    z-index: 1;
    color: white;
    font-size: 28px;
    box-shadow: 0 0 25px var(--primary-color);
    overflow: visible;
}

.btn-play::before,
.btn-play::after {
    content: "";
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    animation: rippleAnim 2s infinite;
}

.btn-play::after {
    animation-delay: 1s;
}

@keyframes rippleAnim {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.laptop-mockup {
    position: relative;
    max-width: 100%;
    height: auto;
}

.laptop-mockup img {
    width: 100%;
    height: 420px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    -webkit-filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.clients-section {
    text-align: center;
    padding: 80px 0;
    background: white;
    margin-top: 60px;
}

.clients-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.clients-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    ;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.feature-title {
    font-size: 2rem !important;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

.stats-section {
    background: var(--primary-color);
    ;
    color: white;
    padding: 60px 0;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}



@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .clients-title {
        font-size: 2rem;
    }

    .btn-start {
        margin-left: 0;
        margin-bottom: 15px;
        display: block;
        width: 100%;
    }



    .main-content {
        margin-right: 0;
        transition: margin-right 0.3s ease;
    }

    .main-content.expanded {
        margin-right: 0;
    }

}

@media (max-width: 480px) {

    .hero-title {
        font-size: 2rem;
    }
}



@media (max-width: 768px) {}


/*  */
.decorative-circles {
    position: absolute;
    left: -100px;
    top: 100%;
    transform: translateY(-50%);
    z-index: 1;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.8;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    border-radius: 50%;
    position: absolute;
    top: 180px;
    left: 50px;
    opacity: 0.9;
}


.main-title_main {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.subtitle_main {
    color: #6c757d;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* margin-bottom: 30px; */
    height: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.icon-inventory {
    background: linear-gradient(135deg, #E91E63 0%, #AD1457 100%);
}

.icon-accounting {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
}

.icon-sales {
    background: linear-gradient(135deg, #9C27B0 0%, #6A1B9A 100%);
}

.icon-customers {
    background: linear-gradient(135deg, #37C2CD 0%, #0097A7 100%);
}

.icon-operations {
    background: linear-gradient(135deg, #2196F3 0%, #1565C0 100%);
}

.icon-hr {
    background: linear-gradient(135deg, #FF9800 0%, #E65100 100%);
}

.feature-title {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.feature-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .decorative-circles {
        display: none;
    }

    .feature-card {
        padding: 30px 20px;
    }
}


.main_btn {
    text-align: center;
}

.hamburgerBtn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 7px 10px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-transition: ;
    -moz-transition: ;
    -ms-transition: ;
    -o-transition: ;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.hamburgerBtn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 300%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%) rotate(25deg);
    transition: transform 0.5s ease;
}

.hamburgerBtn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px var(--primary-color);
}

.hamburgerBtn:hover::before {
    transform: translate(-50%, -50%) rotate(25deg) translateX(50%);
}

.hamburgerBtn:active {
    transform: scale(0.97);
}


/* About */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 100px 0;
    gap: 30px;
    align-items: center;
}

.about-text {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: 420px;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}








.popup-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-header {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.img_header {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(15deg);
    transition: transform 0.3s ease;
    overflow: hidden;
}



.popup-header span {
    font-size: 24px;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.search-container {
    position: relative;
    flex: 1;
    margin: 0 20px;
    z-index: 1;
}

.search-input {
    width: 50%;
    padding: 12px 10px;
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.search-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

.search-input:focus {
    border-bottom: 1px solid #000;
    background: rgba(255, 255, 255, 0.3);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.search-container:hover .search-icon {
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.close-btn::before {
    transform: rotate(45deg);
}

.close-btn::after {
    transform: rotate(-45deg);
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.popup-body {
    padding: 30px;
    background: white;
}

.search-suggestions {
    margin-top: 20px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin: 8px 0;
    background: #f8f9fa;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.suggestion-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(-5px);
    border-color: rgba(102, 126, 234, 0.3);
}

.suggestion-icon {
    margin-left: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(120deg);
    }

    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@media (max-width: 768px) {
    .popup-header {
        padding: 20px 15px;
        flex-direction: column;
        gap: 15px;
    }

    .search-container {
        margin: 0;
        width: 100%;
    }

    .popup-header span {
        font-size: 20px;
    }
}









/* Footer */
.footer {
    background: var(--primary-color);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-column ul li:hover {
    color: var(--primary);
    transform: translateX(-5px);
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.5s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.7s;
}



.top-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.top-header .lang-options span {
    margin-left: 10px;
    cursor: pointer;
    font-size: 14px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: #007bff;
}

.main_btn .hamburgerBtn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.hamburger {
    background: none;
    border: none;
    font-size: 20px;
    /* display: none; */
}


@media (max-width: 991px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: block;
        margin-left: 10px;
    }

    .main_btn {
        display: none;
    }
}


@media (max-width: 576px) {
    .top-header .lang-options span {
        font-size: 12px;
        margin-left: 5px;
    }

    .hamburger {
        font-size: 18px;
    }
}

.main-nav.active {
    display: block;
    background: #fff;
    padding: 10px;
}

.main-nav.active ul {
    flex-direction: column;
}

.main-nav.active ul li {
    margin: 10px 0;
}

/* program */




/* success */



.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(129, 140, 248, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 10%, rgba(236, 252, 203, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(254, 202, 202, 0.2) 0%, transparent 40%),
        linear-gradient(135deg, #ffffff 50%, #ffffff 30%, #ffffff 70%, #ffffff 100%);
    z-index: -1;
}



.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}



.amin_success .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 24px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 1px 0px rgba(255, 255, 255, 0.4) inset;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 1px 0px rgba(255, 255, 255, 0.4) inset;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.card-icon i {
    font-size: 2.2rem;
    color: white;
}

.card h2 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.learn-more:hover {
    color: var(--primary-color);
    gap: 12px;
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 20%;
    animation-delay: -5s;
}

.shape:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-delay: -10s;
}

.shape:nth-child(4) {
    width: 120px;
    height: 120px;
    bottom: 10%;
    right: 10%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(90deg);
    }

    50% {
        transform: translateY(-40px) rotate(180deg);
    }

    75% {
        transform: translateY(-20px) rotate(270deg);
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    /* .container {
        grid-template-columns: 1fr;
        margin: 40px auto;
        gap: 25px;
    } */

    .card {
        padding: 25px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .card-icon i {
        font-size: 1.8rem;
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

/* prices */




body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Pricing Section */
.pricing-section {
    margin: 60px 0;
    padding: 50px;
    backdrop-filter: blur(20px);
    position: relative;
}

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

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.toggle {
    background: var(--primary-color);
    border-radius: 50px;
    color: #fff;
    padding: 12px 24px;
    border: 2px solid rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.toggle b {
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
}

.toggle b:last-child {
    color: var(--primary);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}


.tier {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(226, 232, 240, 0.3);
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 420px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #e2e8f0, #cbd5e1);
    transition: all 0.4s ease;
}

.tier:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.tier:hover::before {
    background: linear-gradient(90deg, var(--primary-color), #3b82f6);
}

.tier.popular {
    transform: scale(1.05);
    box-shadow: 0 30px 60px #ddd;
    border: 3px solid var(--accent);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 235, 0.5));
    position: relative;
}

.tier.popular::before {
    background: var(--primary-color);
}

.tier.popular::after {
    content: 'الأكثر شعبية';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: white;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px #fff;
}

.tier.popular:hover {
    transform: scale(1.05) translateY(-12px);
    /* box-shadow: 0 35px 70px var(--primary-color);/ */
}

.tier .title {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.tier.popular .title {
    color: var(--accent);
}

.price {
    font-size: 1.4rem;
    font-weight: 400;
    color: #0f172a;
    margin: 20px 0;
}

.price small {
    display: block;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 8px;
}

.features {
    flex: 1;
    text-align: start;
    list-style: none;
}

.features li {
    margin: 20px 0;
    color: #374151;
    line-height: 1.7;
    padding-left: 33px;
    position: relative;
    font-size: 13px;
}

.features li::before {
    content: "✓";
    color: #10b981;
    position: absolute;
    left: 0;
    font-weight: 900;
    font-size: 18px;
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 16px 5px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    /* min-width: 180px; */
}

.btn-primary_main {
    background: linear-gradient(135deg, var(--primary-color), #6183f4);
    color: white;
    font-size: 13px;
    box-shadow: 0 8px 25px rgba(10, 75, 120, 0.3);
}

.btn-primary_main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(10, 75, 120, 0.4);
    color: #fff;
}

.see-more-btn {
        display: inline-block;
    padding: 16px 5px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
        background: linear-gradient(135deg, var(--primary-color), #6183f4);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 75, 120, 0.3);
}

.note {
    font-size: 14px;
    color: var(--muted);
    text-align: center;
    margin: 30px 0 20px;
    padding: 20px;
    background: rgba(192, 215, 238, 0.8);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.5);
    margin-top: 40px;
}

.contact-section h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-section p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

    .pricing-section {
        padding: 30px 20px;
    }

    .pricing-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .pricing-header h3 {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tier {
        padding: 30px 20px;
        min-height: auto;
    }

    .tier.popular {
        transform: none;
    }

    .tier.popular:hover {
        transform: translateY(-8px);
    }

    .price {
        font-size: 2.5rem;
    }

    .contact-section {
        padding: 30px 20px;
    }
}

/* Animation */
.fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

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

.nav-item a.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}


/*banner */

.banner {
    background: var(--primary-color);
    border-radius: 20px;
    margin: 40px 0;
    padding: 40px;
    /* max-width: 900px; */
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(30, 93, 216, 0.3);
}

.banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(30px);
}

.banner .content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
    z-index: 2;
    gap: 30px;
}

.banner .text-content {
    /* flex: 1; */
    color: white;
}

.banner .main-title {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.banner .subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.banner .description {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    max-width: 400px;
}

.cta-button {
    background: var(--primary-light);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--primary-color);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-color);
    background: var(--primary-light);
}

.cta-button:active {
    transform: translateY(0);
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.wave {
    position: absolute;
    top: -50px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 6s ease-in-out infinite;
}

.wave2 {
    position: absolute;
    bottom: -80px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .main-title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 20px;
    }

    .description {
        font-size: 14px;
        max-width: 100%;
    }

    .banner {
        padding: 30px 20px;
    }
}

/*  */



.content-section {
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.professionals-section .content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    border-radius: 2px;
}

.professionals-section .main-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.professionals-section .subtitle {
    font-size: 28px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 25px;
}

.professionals-section .description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
}

.professionals-section .cta-link {
    color: #3b82f6;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.professionals-section .cta-link:hover {
    color: #2563eb;
    transform: translateY(-1px);
}

.professionals-section .cta-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.professionals-section .cta-link:hover::after {
    transform: scaleX(1);
}

.professionals-section .professionals-section {
    padding: 0;
    background: white;
    overflow: hidden;
}

.professionals-section .professionals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 20px;
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(248, 250, 252) 100%);
    position: relative;
    overflow: hidden;
    padding: 20px;
    text-align: center;
}

.professionals-section .professional {
    flex: 1;
    max-width: 120px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.professionals-section .professional:hover {
    transform: translateY(-10px);
}

.professionals-section .professional-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background-size: cover;
    background-position: center;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.professional:hover .professional-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.prof-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.prof-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.prof-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.prof-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.prof-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.prof-6 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.prof-7 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.prof-8 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.prof-9 {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.professional-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.professional-title {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    margin-top: 8px;
}

/* Floating elements for visual appeal */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.floating-2 {
    top: 60%;
    right: 15%;
    animation-delay: -4s;
}

.professionals-section .floating-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: -1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .professionals-section .main-title {
        font-size: 32px;
    }

    .professionals-section .subtitle {
        font-size: 22px;
    }

    .professionals-section .description {
        font-size: 16px;
    }

    .professionals-section .content-section {
        padding: 40px 20px 30px;
    }

    .professionals-section .professional {
        max-width: 80px;
    }

    .professionals-section .professional-avatar {
        width: 60px;
        height: 60px;
    }

    .professionals-section .professional-icon {
        font-size: 18px;
    }
}

/* contact */


.contact {
    margin: 100px 0;
}

@keyframes float {

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

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


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

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

.contact .contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact .card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 1s ease-out forwards;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact .card:nth-child(1) {
    animation-delay: 0.2s;
}

.contact .card:nth-child(2) {
    animation-delay: 0.4s;
}

.contact .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.contact .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

.contact .card h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact .card p {
    margin: 10px 0;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.contact .card p strong {
    color: #333;
    font-weight: 600;
}

.contact.work-time {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.contact .work-time::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.contact .work-time h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact .work-time p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.contact form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUp 1s ease-out 0.8s both;
    position: relative;
    overflow: hidden;
}

.contact form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.contact form h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact form label {
    display: block;
    margin: 20px 0 8px;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.contact form input,
form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.contact form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.contact form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact form button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contact form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.contact form button:hover::before {
    left: 100%;
}

.contact form button:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {


    .contact h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .contact .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact .card,
    .work-time,
    form {
        padding: 25px;
    }

    .contact form h3 {
        font-size: 1.5rem;
    }
}

.contact .floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.contact .floating-shapes::before,
.contact .floating-shapes::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.contact .floating-shapes::before {
    top: 20%;
    right: -100px;
    animation-delay: -5s;
}

.contact .floating-shapes::after {
    bottom: 20%;
    left: -100px;
    animation-delay: -10s;
}

/* wrap_csss */


.wrap_csss {
    margin: 100px 0;
}


@keyframes float {

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

    25% {
        transform: translateY(-20px) rotate(1deg);
    }

    50% {
        transform: translateY(-10px) rotate(-1deg);
    }

    75% {
        transform: translateY(-30px) rotate(0.5deg);
    }
}


/* Header Styles */
.section-head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.wrap_csss .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.wrap_csss .section-kicker::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: left 0.6s;
}

.wrap_csss .section-kicker:hover::before {
    left: 100%;
}

.wrap_csss .section-kicker::after {
    content: '⭐';
    margin-left: 8px;
}

.wrap_csss .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0 10px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.wrap_csss .section-sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-top: 10px;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Grid */
.wrap_csss .grid {
    display: grid;
    gap: 30px;
    animation: staggerIn 1.2s ease-out 0.3s both;
}

@media (min-width: 768px) {
    .wrap_csss .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wrap_csss .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@keyframes staggerIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* Card Styles */
.wrap_csss .card {
    background: var(--card);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 35px;
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.05);
    isolation: isolate;
}

.wrap_csss .card:nth-child(1) {
    animation-delay: 0.1s;
}

.wrap_csss .card:nth-child(2) {
    animation-delay: 0.3s;
}

.wrap_csss .card:nth-child(3) {
    animation-delay: 0.5s;
}

.wrap_csss .card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1);
}

.wrap_csss .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    border-radius: 24px 24px 0 0;
}

.wrap_csss .card:nth-child(2)::before {
    background: var(--primary-color);
}

.wrap_csss .card:nth-child(3)::before {
    background: var(--primary-color);
}

.wrap_csss .card::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.wrap_csss .card:hover::after {
    transform: scale(1.5);
    opacity: 0.8;
}

/* Badge Styles */
.wrap_csss .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 10px var(--primary-color);
    position: relative;
    overflow: hidden;
    width: max-content;
}

.wrap_csss .card:nth-child(2) .badge {
    box-shadow: 0 8px 10px var(--primary-color);
    box-shadow: 0 8px 25px var(--primary-color);
}

.wrap_csss .card:nth-child(3) .badge {
    background: var(--primary-color);
    box-shadow: 0 8px 10px var(--primary-color);
}

.wrap_csss .badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.wrap_csss .badge:hover::before {
    left: 100%;
}

.wrap_csss .badge svg {
    width: 18px;
    height: 18px;
    opacity: 0.95;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Metric Styles */
.wrap_csss .metric {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin: 25px 0 15px;
}

.wrap_csss .metric .value {
    /* font-size: clamp(2.5rem, 4vw, 3.5rem); */
    font-size: clamp(2.5rem, 4vw, 2.5rem);
    line-height: 1;
    font-weight: 500;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.wrap_csss .metric .suffix {
    font-size: 20px;
    color: var(--primary-light);
    font-weight: 800;
    margin-bottom: 4px;
}

/* Typography */
.wrap_csss .card h3 {
    margin: 0 0 15px;
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.wrap_csss .card p {
    margin: 0;
    color: #333;
    line-height: 1.7;
    font-size: 15px;
}

/* Floating elements */
.wrap_csss .floating-elements {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

      .page-banner {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    image-rendering: auto;
    color: #fff;
    text-align: center;
}

.page-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
}

.page-banner .banner-content {
    position: relative;
    z-index: 2;
}

.page-banner .page-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}


.wrap_csss .floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    animation: floatSlow 20s ease-in-out infinite;
}

.wrap_csss .floating-elements::before {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -150px;
    animation-delay: -10s;
}

.wrap_csss .floating-elements::after {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: -100px;
    animation-delay: -15s;
}

@keyframes floatSlow {

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

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

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

    75% {
        transform: translateY(-40px) translateX(10px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wrap_csss {
        padding: 40px 15px;
    }

    .wrap_csss .section-head {
        margin-bottom: 40px;
    }

    .wrap_csss .card {
        padding: 25px;
    }

    .wrap_csss .grid {
        gap: 20px;
    }
}

/* Loading animation */
.wrap_csss .card {
    animation: cardSlideUp 0.8s ease-out both;
}

@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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










/* =================== Navbar =================== */
.top-header {
    background-color: #f8f9fa;
    padding: 10px 0;
}

.main_btn .button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

/* =================== Popup =================== */
.popup-right {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
    transform: translateX(100%);
    overflow: hidden;
}

.popup-right.open {
    transform: translateX(0);
    /* يظهر */
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
}

.popup-header button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.popup-body {
    padding: 15px;
}

/* Responsive */
@media (max-width: 576px) {
    .popup-right {
        width: 100%;
    }
}

/*  */

.footer {
    background: var(--primary-color);
    color: #fff;
    padding: 40px 0 20px;
    /* font-family: Arial, sans-serif; */
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
}

.footer-links h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
}

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

.footer-links ul li {
    margin-bottom: 6px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #ffffff;
    padding-top: 10px;
    font-size: 14px;
    margin: 0 auto;
    color: #ffffff;
}

@media(min-width:1600px) {
    .card_main {
        margin-top: 90px !important;
        padding: 10px;
    }

}

.card_main {
    margin-top: 50px;
    padding: 10px;
}

@media(min-width:1600px) {
    .card_main h2 {
        font-size: 30px !important;
        margin-bottom: 20px;
        color: rgb(24, 28, 50);
        font-weight: bold;
    }
}

.card_main h2 {
    font-size: 23px;
    margin-bottom: 20px;
    color: rgb(24, 28, 50);
    font-weight: bold;
}

.card_main h2::before {
    content: ">";
    position: absolute;
    left: 5%;
    top: 20%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--primary-light);
}

.card_main p {
    color: rgb(135, 137, 150);
    font-size: 12px;
    line-height: 19px;
    margin: 0px;
}

.card_main:hover {
    background-color: #f8f5f5e4;
}

.popup-right::before {
    content: "";
    background-image: url(../img/home-cover.png);
    background-size: cover;
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-position: 0 -43px;
}


/*  */

.app-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 20px;
}

@media (max-width: 1200px) {
    .app-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .app-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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


.app-card {
    background: #ffffff;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    z-index: 999;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.app-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.app-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
}

.feature-img-icon {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}

.agreement-title {
    font-size: 1.8rem;
    font-weight: 600;
}

.agreement-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}



#industryTabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    border-radius: 20px;
    border: none;
}

#industryTabs .nav-item {
    margin: 0;
}

#industryTabs .nav-link {
    padding: 14px 28px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: #6c757d;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

#industryTabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

#industryTabs .nav-link:hover::before {
    left: 100%;
}

#industryTabs .nav-link:hover {
    color: #0d6efd;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.2);
}

#industryTabs .nav-link.active {
    color: white;
    background: linear-gradient(135deg, #0d6efd 0%, #0056d2 100%);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
    transform: translateY(-2px);
}

#industryTabs .nav-link.active::after {
    content: '✓';
    margin-right: 8px;
    font-weight: bold;
}

@media (max-width: 768px) {
    #industryTabs {
        padding: 15px;
        gap: 8px;
    }

    #industryTabs .nav-link {
        padding: 10px 20px;
        font-size: 13px;
    }
}

.gradient-style #industryTabs .nav-link {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
}

.gradient-style #industryTabs .nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.minimal-style #industryTabs {
    background: transparent;
    padding: 0;
    gap: 8px;
}

.minimal-style #industryTabs .nav-link {
    background: transparent;
    border: 2px solid #dee2e6;
    box-shadow: none;
    color: #495057;
}

.minimal-style #industryTabs .nav-link:hover {
    border-color: #0d6efd;
    background: rgba(13, 110, 253, 0.05);
}

.minimal-style #industryTabs .nav-link.active {
    background: #0d6efd;
    border-color: #0d6efd;
}

.colorful-style #industryTabs {
    gap: 16px;
    background: white;
}

.colorful-style #industryTabs .nav-link {
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.colorful-style #industryTabs .nav-link:nth-child(1).active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.colorful-style #industryTabs .nav-link:nth-child(2).active {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.colorful-style #industryTabs .nav-link:nth-child(3).active {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.colorful-style #industryTabs .nav-link:nth-child(4).active {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.colorful-style #industryTabs .nav-link:nth-child(5).active {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.colorful-style #industryTabs .nav-link:nth-child(6).active {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.colorful-style #industryTabs .nav-link:nth-child(7).active {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
}

.colorful-style #industryTabs .nav-link:nth-child(8).active {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6a00 100%);
}

.colorful-style #industryTabs .nav-link:nth-child(9).active {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #333;
}

.colorful-style #industryTabs .nav-link:nth-child(10).active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}


/* App-specific colors and icons */

    .pricing-header {
      margin-bottom: 40px;
    }

    .pricing-header h2 {
      color: white;
      font-size: 2.5rem;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .pricing-header p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.1rem;
    }

    .pricing-toggle {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border-radius: 50px;
      padding: 8px;
      display: inline-flex;
      gap: 8px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      list-style: none;
      position: relative;
    }

    .toggle-item {
      position: relative;
      z-index: 1;
    }

    .toggle-btn {
      background: transparent;
      border: none;
      color: rgb(0, 0, 0);
      font-size: 1.1rem;
      font-weight: 600;
      padding: 14px 40px;
      border-radius: 40px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .toggle-btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .toggle-btn:hover::before {
      width: 300px;
      height: 300px;
    }

    .toggle-btn:hover {
      transform: translateY(-2px);
      color: rgb(30, 30, 30);
    }

    .toggle-btn.active {
      background: white;
      color: #667eea;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      transform: scale(1.05);
    }

    .toggle-btn.active::before {
      display: none;
    }

    .save-badge {
      background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
      color: rgb(0, 0, 0);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 700;
      position: absolute;
      top: -35px;
      right: -10px;
      box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
      animation: bounce 2s infinite;
    }

    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-5px);
      }
    }
