/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6700a3;
    --secondary: #bf1ac6;
    --primary-purple: #8B5CF6;
    --secondary-purple: #A855F7;
    --dark-purple: #6D28D9;
    --light-purple: #C4B5FD;
    --purple-gradient: linear-gradient(135deg, #6700a3f2 0%, #6700a3f2 50%, #C084FC 100%);
    --purple-gradient-dark:  #9C27B0;
    --purple-gradient-light: linear-gradient(135deg, #DDD6FE 0%, #E9D5FF 50%, #F3E8FF 100%);
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --shadow-purple: rgba(139, 92, 246, 0.3);
    --over-f: #F3E8FF;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: white;
    text-decoration: bold;
    overflow-x: hidden;
    background: linear-gradient(135deg, #8B5CF6 0%, #c89af3 50%, #C084FC 100%);
}

.loader {
    position: fixed;
    inset: 0;
    background: var(--purple-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    animation: progress 1.5s ease-in-out infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes progress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
    align-content: center;
    text-decoration: none;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #6700a357;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--purple-gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-purple);
}

.partner-btn {
    background-color: #9b27b056;
    color: white !important;
    border: 2px solid #ffffff75;

}

.driver-btn {
    background: var(--purple-gradient-dark);
    color: white !important;
}

.language-selector label {
    background: var(--light-purple);
    color: var(--dark-purple);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector label:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-mobile {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;

    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero-section {
    max-height: 100vh;
    position: relative;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* background: var(--purple-gradient-light); */
    background-color: #ffffff;
    padding-top: 120px;
}

/* .hero-section::before {
    position: absolute;
    z-index: 1;
    top: -50px;
    left: -40px;
    content: "";
    width: calc(100% + 60px);
    height: calc(90% + 60px);
    max-height: 100dvh;
    border-radius: 0 0 15rem 0;
    background: var(--purple-gradient);
    transform: rotate(4.3deg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 45px;
    animation: heroFloat 6s ease-in-out infinite;
} */
 
.hero-section::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: -50px;
    left: -40px;
    width: calc(100% + 60px);
    height: calc(90% + 60px);
    max-height: 100dvh;
    border-radius: 0 0 15rem 0;
    background: var(--purple-gradient), url('/img/wb.webp');
    background-blend-mode: overlay;
    background-repeat: no-repeat, repeat;
    background-size: cover, 400px 400px;
    background-position: center 45px, center;
    transform: rotate(4.3deg);
    animation: heroFloat 6s ease-in-out infinite;
}

/* .hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(168, 85, 247, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(196, 181, 253, 0.2) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
} */

.hero-container {
    top: -100px;
    position: relative;
    z-index: 2;
    max-width: 1200px;

    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: white;
    animation: fadeInLeft 1s ease-out;
}

.hero-content h1 {
    text-align: right;
    padding-right: 80px;
    color: white;
      font-size: 3.8rem;
    font-weight: 800;
    text-shadow: 10px 1px 8px #6700a3f2;

}

.hero-content p {
    padding-right: 80px;
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.app-buttons {
    display: flex;
    gap: 18px;
    margin-top: 20px;
    justify-content: center;
}

.app-btn {
    padding-top: 10px;
    align-items: center;
    gap: 14px;
    background: var(--purple-gradient-dark);
    border: none;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.18);
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s;
    text-decoration: none;
    height: 130px;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.papp-btn {
    padding-top: 10px;
    align-items: center;
    gap: 14px;
    background: white;
    border: none;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.18);
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s;
    text-decoration: none;
    height: 130px;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.app-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.28);
}

.papp-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.28);
}

.app-btn img {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.10);
    object-fit: contain;
}

.app-btn .app-labels {
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.app-btn .app-label-top {
        align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
    color: #f3e8ff;
    font-weight: 400;
    margin-bottom: 2px;
}

.app-btn .app-label-bottom {
        align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
}


.app-btn .app-labels {
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.papp-btn .app-label-top {
        align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
    color: #9C27B0;
    font-weight: 400;
    margin-bottom: 2px;
}

.papp-btn .app-label-bottom {
        align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.15rem;
    color: #9C27B0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-phone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

.phone-image {
    width: 60%;
    height: auto;

}

.phone-container {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1F2937 0%, #374151 100%);
    border-radius: 40px;
    padding: 20px;
    /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3); */
    animation: phoneFloat 4s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--purple-gradient);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.phone-content {
    padding: 40px 20px;
    color: white;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.phone-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Services Section */
.services-section {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #F1F5F9;
    position: relative;
    overflow: hidden;
}

/* .services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    transform: skew(0deg, -3deg);
    transform-origin: top left;
} */



.services-section .container {
    position: relative;
    z-index: 2;
}

.services-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--purple-gradient);
    border-radius: 2px;
}


.service-card {
    background: white;
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    /* box-shadow: 0 15px 35px rgba(139, 92, 246, 0.1); */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    max-width: 400px;
}


.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #DDD6FE 0%, #E9D5FF 50%, #F3E8FF 100%);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.2);
}

.service-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.3));
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    background: var(--purple-gradient);
    color: #6D28D9;
    /* FINE */
    background-clip: text;
}

.service-card:hover p {
    color: black;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.service-btn {
    display: inline-block;
    background: var(--purple-gradient);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    /* fine */
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #6D28D9;
    transition: left 0.3s ease;
}

.service-btn:hover::before {
    left: 0;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-purple);
}

.service-btn span {
    position: relative;
    z-index: 1;
}

/* Coverage Section */
/* Coverage Section */
.driver {
    padding-bottom: 30px;
    background: white;
    color: rgb(0, 0, 0);
    text-align: center;
    position: relative;
    overflow: hidden;
}


.partner {
    padding-bottom: 30px;
    background: #9C27B0;
    color: rgb(255, 255, 255);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* .coverage-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    /transform: skew(0deg, -4deg);
    transform-origin: top left;
} */
/*line 1
/*.coverage-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
    transform: skew(0deg, 4deg);
    transform-origin: bottom right;
}*/

.coverage-section .container {
    position: relative;
    z-index: 2;
}

.coverage-section h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.coverage-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.coverage-section p {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Partnership Section */
.partnership-section {
    padding: 120px 0;
    background: var(--text-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.partnership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 50%); */
    pointer-events: none;
}
/* .partnership-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
    height: 80px;
    background: var(--over-f); 
    /transform: skew(0deg, 2deg);
    z-index: 2;
    pointer-events: none;
} */

.partnership-section .container {
    position: relative;
    z-index: 2;
}

.partnership-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #FFFFFF 0%, var(--light-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partnership-section > .container > p {
    text-align: center;
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto 80px;
    line-height: 1.7;
}

.partnership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.partnership-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.partnership-card:hover::before {
    left: 100%;
}

.partnership-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-purple);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

.partnership-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partnership-card p {
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.7;
    font-size: 1.1rem;
}

.partnership-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #C084FC 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partnership-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--purple-gradient-dark);
    transition: left 0.3s ease;
}

.partnership-btn:hover::before {
    left: 0;
}

.partnership-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--shadow-purple);
}

.partnership-btn span {
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: var(--over-f);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;

    /* transform: skew(0deg, -4deg); */
    transform-origin: top left;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--purple-gradient-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 25px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--light-purple);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 30px 35px;
    background: none;
    border: none;
    text-align: right;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: var(--primary-purple);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-question:hover {
    background: var(--purple-gradient-light);
    color: var(--dark-purple);
}

.faq-item.active .faq-question {
    background: var(--purple-gradient);
    color: white;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
    color: white;
}

/* Update these CSS rules for .faq-answer */


.faq-answer {
    margin-left: 10px;
    margin-right: 10px;
    
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    text-align: right;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.7;
    color: var(--text-light);
}

.faq-more {
    text-align: center;
    margin-top: 80px;
}

.faq-more h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.faq-link {
    display: inline-block;
    background: var(--purple-gradient);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--purple-gradient-dark);
    transition: left 0.3s ease;
}

.faq-link:hover::before {
    left: 0;
}

.faq-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-purple);
}

.faq-link span {
    position: relative;
    z-index: 1;
}

/* Footer */
/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 0px 0 0px;
    position: relative;
    overflow: hidden;
    padding-bottom: 15px;
}
/* .footer::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 80px;
    background-color: #F3E8FF;
    /* transform: skewY(-2deg); */
    /* z-index: 2;
} */

.footer .container {
    position: relative;
    z-index: 2;
    
}

.footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}
.footer-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-links {
    flex-direction: column;
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: var(--light-purple);
    transform: translateY(-2px);
}



/* Mobile Menu Styles */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--purple-gradient);
    z-index: 1001;
    transition: right 0.4s ease;
    padding: 100px 30px 30px;
    overflow-y: auto;
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px);}
    to   { opacity: 1; transform: translateY(0);}
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFloat {
    0%, 100% {
        transform: rotate(4.3deg) translateY(0px);
    }
    50% {
        transform: rotate(4.3deg) translateY(-10px);
    }
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    70% {
        transform: scale(0.9);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo {
        order: 1;
    }
    
    .logo-mobile {
        display: block;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .logo-mobile img {
        height: 60px;
        width: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-phone {
        order: 2;
    }

    .hero-content {
        order: 1;
    }

    .hero-content h1 {
        text-align: center;
        padding-right: 0px;
        font-size: 2.8rem;
    }

    .hero-content p {
        padding-right: 0px;
        font-size: 1.2rem;
    }

    .app-buttons {
        justify-content: center;
    }

    .phone-container {
        width: 250px;
        height: 500px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 40px 25px;
    }

    .partnership-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .partnership-card {
        padding: 40px 25px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    /* Adjust section effects for mobile */
    /* .services-section::before,
    .services-section::after,
    .coverage-section::before,
    .coverage-section::after,
    .faq-section::before {
        transform: skew(0deg, -2deg);
    } */

    .services-section h2,
    .coverage-section h2,
    .partnership-section h2,
    .faq-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .phone-container {
        width: 200px;
        height: 400px;
    }

    .service-card,
    .partnership-card {
        padding: 30px 20px;
    }

    .faq-question {
        padding: 25px 30px;
        font-size: 1.1rem;
    }

    .faq-answer p {
        padding: 0 30px 25px;
    }

    .services-section h2,
    .coverage-section h2,
    .partnership-section h2,
    .faq-section h2 {
        font-size: 1.8rem;
    }
}

/* Additional Creative Effects */
.service-card:nth-child(even) {
    animation-delay: 0.2s;
}

.service-card:nth-child(odd) {
    animation-delay: 0.1s;
}

.partnership-card:first-child {
    animation: slideInFromLeft 1s ease-out;
}

.partnership-card:last-child {
    animation: slideInFromRight 1s ease-out;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--purple-gradient);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Loading Animation */
body.loading {
    overflow: hidden;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--purple-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 600ms linear;
    background-color: rgba(255, 255, 255, 0.6);
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Button Effects */
.service-btn, .partnership-btn, .faq-link {
    position: relative;
    overflow: hidden;
}

/* Glowing Effect */
.glow {
    box-shadow: 0 0 20px var(--shadow-purple);
    animation: pulse 2s infinite;
}

/* Parallax Elements */
.parallax-element {
    will-change: transform;
}

/* Make all service cards the same height and align content */
.services-swiper .swiper-slide {
    margin-top: 50px;
    display: flex;
    height: auto;
}

.services-swiper .service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 420px; /* Adjust as needed for your design */
}

.services-swiper .service-card p {
    flex-grow: 1;
}

#ai-bot-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
}

#ai-bot-btn {
    background: var(--purple-gradient, linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%));
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.18);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s, transform 0.3s;
    outline: none;
}

#ai-bot-btn:hover {
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.28);
    transform: scale(1.07);
}

#ai-bot-frame-container {
    display: none;
    margin-bottom: 15px;
    animation: fadeInUp 0.4s;
}

#ai-bot-widget.active #ai-bot-frame-container {
    display: block;
}

#ai-bot-frame {
    width: 350px;
    height: 480px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.18);
    border: none;
    background: #fff;
}

@media (max-width: 500px) {
    #ai-bot-frame {
        width: 95vw;
        height: 60vh;
    }
    #ai-bot-widget {
        left: 10px;
        bottom: 10px;
    }
}

/* svg */
.c-svg {
            top: -0px;
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 80px;
        }

.p-svg {
    transform: translateY(-120px);

}

.f-svg {
    transform: translateY(-120px);
}

.aasvg {

    transform: translateY(-100px);
}
.w-svg {
    position: relative;
    display: block;
    width: 100%;
    height: 55px;
}

/* Add this to your style.css */
/* Add this to your style.css */

/* Privacy Page Specific Styles */


.breadcrumb {
    text-align: right;
    padding: 20px 0;
    color: var(--text-light);
    margin-bottom: 40px;
}

.breadcrumb a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--dark-purple);
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-item {
    background: rgb(14, 13, 13);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

.privacy-item h2 {
    color: var(--dark-purple);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.privacy-item h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--purple-gradient);
    border-radius: 2px;
}

.privacy-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.privacy-item ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.privacy-item ul li {
    color: var(--text-light);
    padding: 10px 30px 10px 0;
    position: relative;
    font-size: 1.1rem;
}

.privacy-item ul li::before {
    content: '•';
    color: var(--primary-purple);
    position: absolute;
    right: 0;
    font-size: 1.5rem;
}

@media (max-width: 768px) {


    .privacy-title {
        font-size: 2.2rem;
    }

    .privacy-item {
        padding: 30px 20px;
    }

    .privacy-item h2 {
        font-size: 1.5rem;
    }
}/* Add these styles to your style.css */
.privacy-section {
   
    color: #1F2937;
    background: #FFFFFF;
    position: relative;
}

.p-title {
    text-align: center;
    padding-bottom: 0px;
}

.breadcrumb {
    text-align: right;
    padding: 20px;
    color: var(--text-light);
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
    margin: 20px auto;
    max-width: 1000px;
}

.breadcrumb a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--dark-purple);
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    padding-bottom: 1px;
}

.privacy-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: var(--purple-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-item {
    background: white;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.privacy-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

.privacy-item h2 {
    color: var(--dark-purple);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.privacy-item h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--purple-gradient);
    border-radius: 2px;
}

.privacy-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.privacy-item ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.privacy-item ul li {
    color: var(--text-light);
    padding: 12px 35px 12px 0;
    position: relative;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.privacy-item ul li::before {
    content: '•';
    color: var(--primary-purple);
    position: absolute;
    right: 0;
    font-size: 1.5rem;
}

.privacy-item ul li:hover {
    transform: translateX(-5px);
    color: var(--dark-purple);
}

/* Add decorative SVG waves */



@media (min-width: 1024px) {
.logo-container {
  padding-top: 20px; /* Reduced from 100px */
    margin-bottom: 0;
}

  .container {
    padding-top: 50px;
 
  }

  .form-container {
    margin-top: 0; /* Remove top margin if any */
  }
}


.form-container {

    width: 100%;
    max-width: 100%;
    padding: 40px;
    transform: translateY(0);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.logo-container {
    text-align: center;

    animation: slideDown 0.6s ease-out;
}

.logo-container img {
    max-width: 300px;
    height: auto;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

h1 {
    text-align: center;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 2.2em;
    animation: slideDown 0.6s ease-out;
}

.form-group {
    text-align: right;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    animation: slideUp 0.6s ease-out;
}

input, select, textarea {
    text-align: right;
    background: #ffffff;
    border: 2px solid transparent;
    border-color: #6700a3;
    border-radius: 12px;
    padding: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--secondary-purple);
    box-shadow: 0 0 0 4px rgba(156, 39, 176, 0.15);
    transform: translateY(-2px);
}

button {
    background: #9C27B0;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 27, 154, 0.2);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 27, 154, 0.3);
}

button:active {
    transform: translateY(0);
}

.radio-group {
    display: flex;
    flex-direction: row;
    justify-content: right;
    gap: 20px;
    align-items: right;
   
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.radio-label {
    align-items: right;
    display: flex;
    gap: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 35px;
    
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"] {
    position: absolute;
    align-items: right;
    display: flex;
    align-items: center;    
    opacity: 0;
}

.radio-label::before {
    content: '';
    position: absolute;
    right: 0;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
}

.radio-label::after {
    content: '';
    position: absolute;
    right: 6px;
    top: 4px;  /* Added top position */
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #6700a3;
    transform: scale(0);
    transition: all 0.3s ease;
}

.radio-label:hover::before {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(106, 27, 154, 0.2);
}

.radio-label input[type="radio"]:checked + .radio-label::before {
    border-color: var(--secondary-purple);
    box-shadow: 0 0 10px rgba(106, 27, 154, 0.2);
}

.radio-label input[type="radio"]:checked + .radio-label::after {
    transform: scale(1);
    background: var(--gradient);
}

.radio-label:has(input[type="radio"]:checked)::after {
    transform: scale(1);
}

.birthdate-container {
    display: flex;
    gap: 10px;
}

.birthdate-container select {
    flex: 1;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes radioCheck {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.error-container, .success-message {
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 500;
    animation: slideIn 0.4s ease-out;
    
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .form-container {
        padding: 25px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    .radio-group {
        /* flex-direction: column; */
        gap: 15px;
    }
}

@media (min-width: 1024px) {
    #registration-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* Make submit button span full width */
    #registration-form .form-group:last-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    /* Make conditional fields span full width */
    #delivery-fields, #partner-fields {
        grid-column: 1 / -1;
    }

    /* Adjust error and success message containers */
    .error-container, .success-message {
        grid-column: 1 / -1;
    }
}

/* Adjust spacing for the two-column layout */
@media (min-width: 1024px) {
    .form-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-purple);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
    font-family: 'Tajawal', sans-serif;
}

.back-button:hover {
    transform: translateX(-5px);
    background: white;
    box-shadow: 0 4px 15px rgba(106, 27, 154, 0.2);
}

.back-button svg {
    width: 20px;
    height: 20px;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .back-button {
        top: 10px;
        left: 10px;
        padding: 8px 16px;
        font-size: 14px;
    }
}

#other-partner {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    font-size: 1rem;
    margin-top: 0.5rem;
}

#other-partner:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(83, 9, 165, 0.1);
}

#other-partner::placeholder {
    color: #999;
}

.checkbox-container {
    color: white;
    display: flex;
    align-items: right;
    gap: 10px;
    margin: 1rem 0;
    direction: rtl;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: white;
    accent-color: rgb(179, 154, 154);
}

.checkbox-container label {
    font-size: 1rem;
    color: #000000;
    cursor: pointer;
}

.policy-link {
    color: rgb(84, 84, 177);
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 500;
}

.policy-link:hover {
    text-decoration: underline;
}

@media (min-width: 1024px) {
    .checkbox-container {
        justify-content: flex-end;
    }
    .checkbox-container label {
        text-align: right;
        width: auto;
        flex: 1 1 auto;
    }
    #other-partner-container {
        text-align: right;
    }
    #other-partner-container label {
        display: block;
        text-align: right;
    }
    #other-partner-container textarea {
        direction: rtl;
        text-align: right;
    }
}

.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 18px;
    justify-content: center;
}

.footer-social a {
    color: #fff;
    background: var(--primary-purple, #8B5CF6);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: background 0.2s, color 0.2s, transform 0.18s;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.10);
    text-decoration: none;
}

.footer-social a:hover {
    background: #fff;
    color: var(--primary-purple, #8B5CF6);
    transform: translateY(-3px) scale(1.08);
}

.footer-social a i {
    transition: transform 0.2s;
}

.footer-links p {
    color: #ffffff;
    text-decoration: underline;

    font-size: 1.2rem;
    margin-top: 10px;
    text-align: center;
}

.tit {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.u-svg {
    transform: translateY(10px);
}


.wave-svg {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
}

.image-with-mask {
    width: 100%;
    mask-repeat: no-repeat;
    mask-size: 100%;
}
.image-with-mask img {
    width: 80%;
    height: 80%;
    object-fit: cover;
}



.driver-steps,
.partner-steps {
           
            align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    margin: 40px 0 30px 0;
}

.driver-steps .step,
.partner-steps .step {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.10);
    padding: 32px 22px 24px 22px;
    width: 250px;
    height: 250px;

    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
    border: 2px solid transparent;
    position: relative;
}

.driver-steps .step:hover,
.partner-steps .step:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.18);
    border-color: #8B5CF6;
}

.driver-steps .step img,
.partner-steps .step img {
    width: 86px;
    height: 86px;
    object-fit: contain;
    margin-bottom: 18px;
    filter: brightness(0) saturate(100%) invert(18%) sepia(91%) saturate(7496%) hue-rotate(281deg) brightness(92%) contrast(101%);
    /* filter: brightness(0) saturate(100%) invert(18%) sepia(91%) saturate(7496%) hue-rotate(256deg) brightness(92%) contrast(101%);
    filter: drop-shadow(0 0 0 #8B5CF6) drop-shadow(0 0 16px #8B5CF6) brightness(1.1) saturate(1.2); */
}

.driver-steps .step h3,
.partner-steps .step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 10px;
    margin-top: 0;
}

.driver-steps .step p,
.partner-steps .step p {
    color: #6B7280;
    font-size: 1.05rem;
    text-align: center;
    margin: 0;
}

@media (max-width: 700px) {
    .driver-steps,
    .partner-steps {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .driver-steps .step,
    .partner-steps .step {
        width: 250px;
        height: 250px;

    }
}


.app-buttons .dv {
    width: 80px;
    filter: invert();
    height: 60px;
    object-fit: contain;
}

.app-buttons .sh {
        filter: brightness(0) saturate(100%) invert(18%) sepia(91%) saturate(7496%) hue-rotate(281deg) brightness(92%) contrast(101%);

    width: 60px;
    height: 60px;
        object-fit: contain;
        
}

.nav-link.partner-btn .pnav-btn-img {
    margin-right: 10px;
    width: 25px;
    height: 25px;
    object-fit: contain;
    margin-left: 8px;
    filter: invert();
    vertical-align: middle;
    box-shadow: 0 1px 4px rgba(139, 92, 246, 0.10);
    transition: transform 0.2s;
}

.nav-link.partner-btn .dnav-btn-img {
    width: 30px;
    height: 35px;
    object-fit: contain;
    margin-left: 8px;
    filter: invert();
    vertical-align: middle;
    box-shadow: 0 1px 4px rgba(139, 92, 246, 0.10);
    transition: transform 0.2s;
}

.nav-link.partner-btn:hover .dnav-btn-img,
.nav-link.partner-btn:hover .pnav-btn-img {
    transform: scale(1.12) rotate(-6deg);
}

@media (max-width: 768px) {
    .cursor-trail {
        display: none;
    
    }
    }


    .ai-assistant-bubble {
    position: fixed;
    left: 100px;
    bottom: 70px;
    z-index: 10000;
    background: #fff;
    color: #6700a3;
    border-radius: 18px 18px 18px 0;
    box-shadow: 0 4px 18px rgba(103,0,163,0.13);
    padding: 12px 22px;
    font-size: 1.08rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(20px) scale(0.98);
    min-width: 120px;
    max-width: 260px;
    white-space: pre-line;
    direction: rtl;
}
.ai-assistant-bubble.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
@media (max-width: 600px) {
    .ai-assistant-bubble {
        left: 70px;
        bottom: 60px;
        font-size: 0.98rem;
        padding: 10px 14px;
        min-width: 90px;
        max-width: 90vw;
    }
}

@media (max-width: 400px) {
    .footer-social a{
    color: #fff;
    background: var(--primary-purple, #8B5CF6);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: background 0.2s, color 0.2s, transform 0.18s;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.10);
    text-decoration: none;
    }
    
}
    /* .footer-social > *:nth-last-child(-n+3):nth-child(n+5) {
        grid-column: span 4;
        justify-self: center;
    }
} */

.about-dialog {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(31, 41, 55, 0.45);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.about-dialog.active {
    z-index: 900000;
    display: flex;
}

.about-dialog-content {
    background: #fff;
    border-radius: 22px;
    padding: 38px 32px 28px 32px;
    max-width: 400px;
    width: 90vw;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.18);
    position: relative;
    text-align: center;
    animation: fadeInUp 0.4s cubic-bezier(.4,2,.6,1);
}

.about-dialog-content h2 {
    color: black;
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 1.6rem;

    background-clip: text;
    font-weight: 800;
}

.about-dialog-content p {
    color: var(--text-light, #6B7280);
    font-size: 1.08rem;
    line-height: 1.7;
}

.about-dialog-close {
    position: absolute;
    top: 14px;
    left: 18px;
    background: none;
    border: none;
    font-size: 1.7rem;
    color: #a16ae8;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s;
}

.about-dialog-close:hover {
    color: #8B5CF6;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px);}
    to   { opacity: 1; transform: translateY(0);}
}


.dialog {
  display: none;
  position: fixed;
  padding-top: 150px;
  z-index: 99999999; /* Much higher z-index */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
  pointer-events: auto;
  /* Add these new properties */
  isolation: isolate; /* Create new stacking context */
  position: fixed !important; /* Force fixed position */
  overflow-y: auto; /* Allow scrolling */
  overscroll-behavior: contain; /* Prevent scroll leaking */
  
  
}

.dialog-content {
  position: relative;
  z-index: 99999999; /* Match parent z-index */
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  margin: 10vh auto;
  padding: 3rem;
  width: 90%;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transform: translateY(0);
  animation: slideIn 0.4s ease-out;
  overflow: hidden;
}

.dialog-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #5309a5, #bf1ac6);
}

.close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 24px;
  font-weight: bold;
  color: #ff4444;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,68,68,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close:hover {
  background: rgba(255,68,68,0.2);
  transform: rotate(90deg);
}

.coming-soon-text {
    padding-top: 20px;
  font-size: 2.0rem;
  background: linear-gradient(135deg, #5309a5 0%, #bf1ac6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.coming-soon-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
  text-align: center;
  margin-bottom: 2rem;
}

.social-links {
  margin-top: 2rem;
  
}

.social-b {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 22px;
  font-weight: bold;
  background: linear-gradient(135deg, #6700a3 0%, #6700a3 100%);
  padding: 1rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 20px -5px rgba(121, 9, 165, 0.3);
  transform: translateY(0);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: pulseGlow 3s infinite;
  text-align: center;
  min-height: 60px; /* Add fixed height */
}

.social-b .social-text {
  margin: 0;
  color: white;
  display: inline-block;
  vertical-align: middle;
}

.social-b .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}

.social-b img {
  filter: brightness(0) invert(1);
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

.social-b::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

/* Centered click bubble effect for social-b */
.click-bubble {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, #16a509 0%, #6700a3 80%, transparent 100%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 10;
}

@keyframes clickBubbleAnim {
  0% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.5);
  }
  60% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

@keyframes pulseGlow {
  0% {
    transform: translateY(0);
    box-shadow: 0 10px 20px -5px rgba(165, 9, 144, 0.3);
  }
  50% {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(255, 0, 234, 0.5);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 10px 20px -5px rgba(109, 2, 100, 0.3);
  }
}

@keyframes shine {
  0% {
    left: -50%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .dialog-content {
    margin: 5vh auto;
    padding: 2rem;
    min-height: 350px;
  }

  .coming-soon-text {
    font-size: 2rem;
  }

  .coming-soon-description {
    font-size: 1.1rem;
  }
}

.required {
    color: #ff0000;
    margin-right: 4px;
}

.dialog-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.dialog-btn {
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dialog-btn.confirm {
    background: #6700a3;
    color: white;
}

.dialog-btn.edit {
    background: #f3e8ff;
    color: #6700a3;
}

.dialog-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(103, 0, 163, 0.2);
}

#info-review {
    text-align: right;
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

#info-review .info-item {
    margin: 10px 0;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

#info-review .info-label {
    font-weight: 600;
    color: #6700a3;
    margin-left: 10px;
}

#info-review .info-item .info-get {
    color: #495057;
}

select,
.choices__inner {
    border: 2px solid #6700a3;
    border-radius: 8px;
    padding: 10px;
    font-size: 1rem;
    background: #fff;
    color: #333;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 8px;
}

.choices__inner {
    min-height: 44px;
}

.choices__list--multiple .choices__item {
    background: #f3e8ff;
    color: #6700a3;
    border-radius: 6px;
    margin: 2px 4px;
    padding: 6px 12px;
    font-weight: 500;
    border: 1px solid #a16ae8;
}