/* 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: #1F2937;
}

.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;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90000;
    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);
}


.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 */


/* Footer */
.footer .container {
    background-color: #1F2937;
    position: relative;
    z-index: 2;
    padding-bottom: 15px;
    width: 100%;
}

.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);
}

.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;
}


/* 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: 9999;
    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: 100100;
    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;
    }

    .hero-phone {
        order: 2;
    }

    .hero-content {
        order: 1;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        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 {
  
  transform: translateY(-120px);
}

.p-svg {
    transform: translateY(-120px);

}

.f-svg {
    transform: translateY(-120px);
}

.aasvg {

    transform: translateY(150px);
}

/* 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: 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-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 {
   
    background: #ffffff;
    position: relative;
    margin-top: 70px;
}

.p-title {
    text-align: center;
    padding-bottom: 0px;
}

.breadcrumb {
    position: fixed;
    top: 100px; /* Adjust if you have a fixed header */
    left: 40px;
    width: 260px;
    z-index: 1100;
    background: #F3E8FF;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.08);
    padding: 22px 18px 18px 18px;
    text-align: right;
    font-size: 1.05rem;
    transition: box-shadow 0.2s;
    max-height: 70vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.privacy-layout {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    gap: 40px;
}

.privacy-index {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}



.privacy-index a:hover,
.privacy-index a:focus {
    
    color: #8c00ff;
    transform: translateY(-2px) scale(1.04);
}

.privacy-container {
    flex: 1;
    margin-right: 320px; /* Space for the fixed sidebar */
    max-width: 1000px;
    padding: 0 20px;
    padding-bottom: 1px;
}

@media (max-width: 768px) {
        .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .privacy-layout {
        flex-direction: column;
        gap: 0;
    }
    .breadcrumb {
        position: static;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 24px auto;
        left: unset;
        top: unset;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.08);
        padding: 18px 10px;
        max-height: none;
        overflow: visible;
        display: block; /* Stack content vertically */
    }
    .privacy-index {
        text-align: center;
        align-items: center;
        justify-content: center;
        
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 14px;
        margin-top: 14px; /* Add space below breadcrumb */
        
    }
    .privacy-container {
        margin-right: 0;
    }
}

@media (min-width: 768px) {
    

    .privacy-item {
    padding-top: 100px;
    padding-bottom: 100px;

}
    /* Make privacy items on the right, sidebar on the left */
.privacy-layout {
    flex-direction: row-reverse; /* Sidebar left, content right */
}

.privacy-container {
    flex: 1;
    margin-left: 320px; /* Space for the fixed sidebar on the left */
    margin-right: 0;
    max-width: 1000px;
    padding: 0 20px;
    padding-bottom: 1px;
}

/* Breadcrumb sidebar stays on the left */
.breadcrumb {
    left: 40px;
    right: auto;
}
}

.w-svg {
    position: relative;
    display: block;
    width: 100%;
    height: 55px;
}

.aasvg {
    width: 100%;
    transform: translateY(-40px);
}

.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;
    }
} */

