/* 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: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(45deg, #1F2937 0%, #1F2937 100%);
}

.loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #6700a3 0%, #6700a3 50%, #C084FC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99099;
    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: 150px;
    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;
}

/* 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;
    font-size: 1.2rem;
    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;
    /* background: var(--purple-gradient); */
    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 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background-color: #F1F5F9;
    padding-top: 80px;
} */

.hero-section {
    max-height: 200vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* background: var(--purple-gradient-light); */
    background-color: #F1F5F9;
    padding-top: 120px;
}



.hero-section::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: -80px;
    left: -40px;
    width: calc(100% + 60px);
    height: calc(100% + 30px);
    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;
}

@media (max-width: 768px) {
    .hero-section::before {
        top: -100px;
        left: -25px;
        width: calc(100% + 40px);
        height: 90vh;
        max-height: 140dvh;
    }
}



/* .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 {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 50px; */
    padding-right: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
        text-align: center;
    }
}

.hero-content {
    color: white;
    animation: fadeInLeft 1s ease-out;
}

@media (min-width: 768px) {
    .hero-content {
        padding-top: 0px;
        padding-bottom: 0px;
        padding-right: 50px;
    }
    .hero-content p {
        text-align: left;
    }
     }

.hero-content h1 {
    font-size: 55px;
    font-weight: 800;
    padding-bottom: 30px;

    text-shadow: 10px 1px 8px #6700a3f2;



}

@media (min-width: 768px) {
    .hero-content p {
        
        font-size: 30px;
        font-style: bold;
        padding-right: 80px;
        padding-bottom: 30px;
    }
    .hero-content p {
        text-align: left;
        font-size: 10px;
        font-style: bold;
       padding-right: 80px;
    }
    .app-buttons {
        padding-right: 80px;
    }

      }




.hero-content h2 {
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgb(255, 255, 255);
    text-shadow: 10px 1px 8px #000000f2;
}



.app-buttons {
    display: flex;
    gap: 18px;
    margin-top: 20px;
    justify-content: flex-start;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--purple-gradient-dark);
    border: none;
    border-radius: 18px;
    padding: 12px 28px 12px 22px;
    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: 70px;
    min-width: 150px;
    position: relative;
    overflow: hidden;

}

.app-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 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-btn .app-label-top {
    font-size: 0.85rem;
    color: #f3e8ff;
    font-weight: 400;
    margin-bottom: 2px;
}

.app-btn .app-label-bottom {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 650;
}

.hero-phone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
    animation: phoneFloat 4s ease-in-out infinite;
}

.phone-image {
    width: 80%;
    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;
    padding-bottom: 30px;
    margin-top: -1px;

}



/* .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;
    backdrop-filter: blur(20px);
    /* 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: 500px;
}


.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: 5px;
    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 */
.coverage-section {
    padding: 0px 0;
    background: var(--purple-gradient-dark);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 100px;
    margin-top: -1px;

}

/* .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;
    margin-bottom: 50px;
    line-height: 1.7;
}

/* Partnership Section */
.partnership-section {
    padding: 0px 0px;
    background: var(--text-dark);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 100px;
}

.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 {
    text-align: center;
    align-items: center;
    align-content: center;
    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 p{
    text-align: center;
}
.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-right: 30px;
    margin-left: 30px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .partnership-cards {
        margin-right: 100px;
    margin-left: 100px;
    }
}

.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(255, 174, 0, 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(255, 174, 0, 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: #ffc400;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partnership-card:hover h3 {
    background: rgb(233, 69, 255);
    -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-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 80px;
}

.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: 18px;
    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: 2000px;
}

.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 {
    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 fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    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;
    }

    .phone-image {
    width: 60%;


}

    .hero-phone {
        order: 2;
    }

    .hero-content {
        order: 1;
    }

    .hero-content h1 {
        font-size: 25px;
    }

    .hero-content h2 {
        font-size: 20px;
    }
    .hero-content p {
        font-size: 10px;
    }

    .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: 25px;
    }

    .hero-content p {
        font-size: 10px;
    }

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

/* svg */
        .c-svg {
            top: -10px;
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 80px;
        }
        

.p-svg {
                top: -20px;
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 80px;
    

}

.f-svg {
    position: relative;
    display: block;

    height: 0px;
    transform: translateY(-120px);
}
.wave-svg {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
}

.w-svg {
    position: relative;
    display: block;
    width: 100%;
    height: 55px;
}

.aasvg {
    width: 100%;
    transform: translateY(130px);
}


/* Add this to your style.css */
/* Add this to your style.css */

/* Privacy Page Specific Styles */
.privacy-section {
    padding: 120px 0 80px;
    background: var(--over-f);
    position: relative;
    margin-top: 80px;
}

.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: white;
    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-section {
        padding: 100px 0 60px;
    }

    .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 {
    padding: 120px 0 80px;
    background: #F1F5F9;
    position: relative;
    margin-top: 80px;
}

.p-title {
    text-align: center;
    padding-bottom: 60px;
}

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

.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: 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 */
.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--purple-gradient);
    transform: skewY(-4deg);
    transform-origin: top left;
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 100px 0 60px;
    }

    .privacy-title {
        font-size: 2.2rem;
    }

    .privacy-item {
        padding: 30px 20px;
    }

    .privacy-item h2 {
        font-size: 1.5rem;
    }
}

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

.map-svg {
    position: relative;
    display: block;
    width: 100%;
    height: 300px;
    margin-top: 20px;
}


.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 {
  font-size: 2.5rem;
  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, #16a509 0%, #1ac645 100%);
  padding: 1rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 20px -5px rgba(22, 165, 9, 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%, #1ac645 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(22, 165, 9, 0.3);
  }
  50% {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(22, 165, 9, 0.5);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 10px 20px -5px rgba(22, 165, 9, 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;
  }
}

.tourirtdot {
    transform: translateY(350px) translateX(-180px);
    background-color: #7b00ff;
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    margin-top: 20px;
    border-radius: 50%;
}

.tourirtdot:hover {
    transform: translateY(350px) translateX(-180px) scale(1.5);
    background-color: #7b00ff;
}


.oujdadot {
    transform: translateY(200px);
    background-color: white;
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    margin-top: 20px;
    border-radius: 50%;
}

.oujdadot:hover {
    transform: translateY(180px);

    background-color: #7b00ff;
}

.nadordot {
    transform: translateY(200px);
    background-color: white;
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    margin-top: 20px;
    border-radius: 50%;
}

.odot {
    stroke: #9C27B0;
    fill: #ffc400;
      cursor: pointer;
  transition: filter 0.2s;

}

.odot:hover {
    fill: #9C27B0;
    stroke: #ffc400;
     filter: drop-shadow(0 0 8px #8B5CF6);
}

.odot-tooltip {
  max-height: fit-content;
  position: absolute;
  background: #fff;
  color: #8B5CF6;
  border: 1.5px solid #8B5CF6;
  border-radius: 10px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 18px rgb(138, 92, 246);
  z-index: 100;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.2s;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    z-index: 100;
}
.map-container {
    max-width: 500px;
    max-height: 500px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card img {
    max-width: 50%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .cursor-trail {
        display: none;
    
    }
    }

    /* Pagination Dots */
.services-pagination {
  margin-top: 24px;
  text-align: center;
  position: static;
}

.swiper-pagination-bullet {
  background: #8B5CF6;
  opacity: 0.3;
  width: 12px;
  height: 12px;
  margin: 0 5px !important;
  border-radius: 50%;
  transition: opacity 0.2s, transform 0.2s;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
  background: linear-gradient(90deg, #8B5CF6 0%, #A855F7 100%);
}

/* Navigation Arrows (desktop only) */
.services-prev,
.services-next {
  color: #8B5CF6;
margin: -100px;
  border-radius: 50%;


  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  font-size: 1.7rem;
  transition: background 0.2s, color 0.2s, transform 0.18s;
  border: none;
  outline: none;
}

.services-prev { left: -22px; }
.services-next { right: -22px; }

.services-prev::after,
.services-next::after {
  font-size: 1.7rem;
}

@media (max-width: 900px) {
  .services-prev,
  .services-next {
    display: none !important;
  }
}


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

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

.map-container svg path {
  stroke: #9C27B0 !important;
  stroke-width: 1 !important;
}

.map-container svg {
    rotate: -3deg !important;
  width: 100vw;
  max-width: 500px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .hero-section {
     /* or whatever fixed height works best for you */
    padding-top: 100px;
  }

  .hero-section::before {
    height: 550px; /* slightly less than full height so phone overflows */
    transform: rotate(0deg); /* prevent rotation warping layout */
    border-radius: 0 0 150px 0;
    top: -50px;
    left: -80px;
    width: 125%;
  }

  .hero-phone {
    margin-top: -40px; /* pull it up into the before section */
    z-index: 3;
  }

  .phone-image {
    width: 300px;
    height: auto;
  }
  .app-btn .app-label-top {
    font-size: 0.75rem;
    color: #f3e8ff;
    font-weight: 300;
    margin-bottom: 2px;
}
  
}

/* @media (max-width: 400px) {
    .footer-social {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px 10px;
        justify-items: center;
        justify-content: center; 
    }
    .footer-social > *:nth-last-child(-n+3):nth-child(n+5) {
        grid-column: span 4;
        justify-self: center;
    }
} */


/* Responsive hero section for common device sizes */

@media (min-width: 1000px) {
 
    .hero-section {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* background: var(--purple-gradient-light); */
    background-color: #F1F5F9;
    padding-top: 120px;
}



.hero-section::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: -100px;
    left: -40px;
    width: calc(100% + 60px);
    height: calc(100% + 50px);
    max-height: 900dvh;
    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;
}
.phone-image {
    max-width: 50%;
    height: auto;

}
    .hero-content h1 {
        font-size: 35px;
    }
    .hero-content h2 {
        font-size: 18px;
    }
.app-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--purple-gradient-dark);
    border: none;
    border-radius: 18px;
    padding: 12px 28px 12px 22px;
    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: 70px;
    min-width: 160px;
    position: relative;
    overflow: hidden;

}

.hero-phone {

    top: -10px;

 }

 .hero-content h1 {
    line-height: 1.2;
    margin-bottom: 20px;

}
.hero-content h2 {
    margin-bottom: 30px;
 }
 
 }

.wave-svg {
  display: block;
  width: 100%;
  line-height: 0;
  margin-bottom: -5px;
}

@media (min-width: 900px) {
 
         .hero-content h1 {
        font-size: 35px;
    }
    .hero-content h2 {
        font-size: 18px;
    }

    .app-btn .app-label-top {
    font-size: 0.85rem;
    color: #f3e8ff;
    font-weight: 400;
    margin-bottom: 2px;
}

.app-btn .app-label-bottom {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 650;
}

.app-btn {
    min-width: 180px;


}


}

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

