/* Prysm8 Website - Main Styles */

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

/* Removed scroll-behavior to prevent conflicts with JS scrolling */

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #000;
    overflow-x: hidden;
}

/* Mobile-specific body adjustments */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }
    
    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
}

/* Background Effects */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at center, 
                rgba(255, 0, 110, 0.125) 0%, 
                rgba(131, 56, 236, 0.10) 25%, 
                rgba(58, 134, 255, 0.075) 50%, 
                rgba(6, 255, 165, 0.05) 75%, 
                transparent 100%), 
                #000;
    transition: background 0.5s ease;
}



/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 0, 110, 0.3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.5));
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b, #fb5607);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-flow 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
    cursor: pointer;
    text-decoration: none;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(51, 51, 51, 0.8);
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-favicon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 0 8px rgba(255, 0, 110, 0.3));
    opacity: 0.9;
}

.nav-toggle:hover {
    background: linear-gradient(90deg, #ff006e, #8338ec);
    border: 2px solid #ff006e;
    color: #fff;
}

.nav-toggle:hover .nav-favicon {
    transform: scale(1.2) rotate(15deg);
    filter: drop-shadow(0 0 15px rgba(255, 0, 110, 0.8)) drop-shadow(0 0 25px rgba(131, 56, 236, 0.4));
    opacity: 1;
}

.nav-toggle.active {
    background: linear-gradient(90deg, #ff006e, #8338ec);
    border: 2px solid #ff006e;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 0, 110, 0.3);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    list-style: none;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-links.dropdown-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links li {
    margin: 0;
    text-align: left;
}

.nav-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 0;
    background: transparent;
    border: none;
}

.nav-links a:hover {
    background: linear-gradient(45deg, rgba(255, 0, 110, 0.2), rgba(131, 56, 236, 0.2));
    border-left: 3px solid #ff006e;
    color: #fff;
    transform: translateX(5px);
}

/* Main Content */
main {
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 2rem;
}

.hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 10;
}

.hero-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    display: block;
    object-fit: contain;
    animation: fade-in 5s ease-out;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b, #fb5607);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-flow 4s ease-in-out infinite;
    text-shadow: 0 0 50px rgba(255, 0, 110, 0.5);
    line-height: 1.1;
}

.hero .subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
    background-size: 400% 400%;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: rainbow-flow 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 25px 60px rgba(255, 0, 110, 0.6);
    animation: rainbow-flow 2s ease-in-out infinite;
}

/* Section Styles */
.section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: 100px;
    position: relative;
    z-index: 1;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-flow 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
}

/* Content Sections */
.content-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Reduce spacing between hero and first content section by 50% */
.hero + .content-section {
    padding-top: 2rem;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

/* Mobile responsive for services grid */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

.service-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    flex: 0 0 350px;
    max-width: 350px;
    z-index: 2;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b);
    background-size: 400% 400%;
    animation: rainbow-flow 4s ease-in-out infinite;
}

/* Hover animation removed */

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.5));
    transition: all 0.3s ease;
}

/* Service icon hover animation removed */

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.click-indicator {
    font-size: 0.95rem;
    color: #06ffa5;
    font-weight: 600;
    text-align: center;
    padding: 0.75rem;
    background: rgba(6, 255, 165, 0.1);
    border: 1px solid rgba(6, 255, 165, 0.2);
    border-radius: 8px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.service-card:hover .click-indicator {
    background: rgba(6, 255, 165, 0.2);
    border-color: rgba(6, 255, 165, 0.4);
    transform: translateX(3px);
}

/* Feature Grids */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    justify-content: center;
}

/* Responsive for feature-grid */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
    }
}

/* AI Application Development - 3x2 Grid with centered 4th card */
.ai-feature-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
}

.ai-feature-grid .feature-card {
    flex: none;
    max-width: none;
}

.ai-feature-grid .feature-card:nth-child(4) {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    max-width: 350px !important;
    width: 350px !important;
    margin: 0 auto !important;
    justify-self: center !important;
}

/* Tablet responsive for AI feature grid */
@media (max-width: 1024px) and (min-width: 769px) {
    .ai-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-feature-grid .feature-card:nth-child(4) {
        grid-column: 1 / span 2;
        justify-self: center;
        max-width: 400px;
    }
}

/* Mobile responsive for AI feature grid */
@media (max-width: 768px) {
    .ai-feature-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .ai-feature-grid .feature-card:nth-child(4) {
        grid-column: 1 !important;
        grid-row: auto !important;
        max-width: calc(100% - 2rem) !important;
        width: calc(100% - 2rem) !important;
        justify-self: center !important;
    }
}

.feature-card {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    flex: 0 0 350px;
    max-width: 350px;
    z-index: 2;
    opacity: 0.9;
}


/* Value Props */
.value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.value-prop {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}


.value-prop-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 4s ease-in-out infinite;
}

.value-prop h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff006e, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Testimonials */
.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

/* Mobile responsive for testimonials */
@media (max-width: 768px) {
    .testimonials {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

.testimonial {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.5s ease;
    flex: 0 0 350px;
    max-width: 350px;
    z-index: 2;
}


.testimonial::before {
    content: '"';
    font-size: 5rem;
    color: rgba(255, 0, 110, 0.3);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: serif;
}

.testimonial-content {
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.testimonial-author {
    font-weight: 700;
    background: linear-gradient(135deg, #3a86ff, #06ffa5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stars {
    color: #ffbe0b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

/* Mobile responsive for contact grid */
@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

.contact-item {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    flex: 0 0 300px;
    max-width: 300px;
    z-index: 2;
    text-decoration: none;
    color: inherit;
}

.contact-item:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(255, 0, 110, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(255, 0, 110, 0.3);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
    background-size: 400% 400%;
    animation: rainbow-flow 4s ease-in-out infinite;
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.5));
    transition: all 0.4s ease;
}

.contact-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item a {
    color: #06ffa5;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
    transform: scale(1.05);
}

/* Content Containers with Proper Z-Index */
.value-highlight {
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.1), rgba(58, 134, 255, 0.1));
    border: 1px solid rgba(6, 255, 165, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-highlight {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
    border: 1px solid rgba(255, 0, 110, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 1.5rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.deployment-option {
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.cta-section {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.pros, .cons {
    padding: 1.5rem;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.example-card {
    background: rgba(58, 134, 255, 0.1);
    border: 1px solid rgba(58, 134, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
@keyframes rainbow-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes fade-in {
    0% { 
        opacity: 0;
    }
    100% { 
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(10deg); }
    66% { transform: translateY(10px) rotate(-10deg); }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0%, 100% { 
        opacity: 0.3;
        box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
    }
    50% { 
        opacity: 0.8;
        box-shadow: 0 0 40px rgba(255, 0, 110, 0.8);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* Mobile Menu Toggle Button - Hidden by default */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 44px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    position: relative;
    border-radius: 6px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-nav-links {
    display: none;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.hamburger-line {
    display: block;
    height: 3px;
    width: 28px;
    background: #ffffff;
    border-radius: 1.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: #06ffa5;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #06ffa5;
}

.mobile-menu-toggle.active {
    background: rgba(6, 255, 165, 0.2);
    border-color: rgba(6, 255, 165, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-dropdown {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        flex-shrink: 0 !important;
    }
    
    nav {
        padding: 1rem 1rem !important;
        overflow-x: visible !important;
        max-width: 100% !important;
    }
    
    .logo-container {
        flex-shrink: 0 !important;
        margin-right: auto !important;
    }
    
    /* Force all card types to full width on mobile */
    .service-card,
    .feature-card,
    .platform-card,
    .contact-item,
    .testimonial,
    .tech-category {
        flex: 1 1 100% !important;
        max-width: calc(100% - 2rem) !important;
        width: calc(100% - 2rem) !important;
        margin: 0 auto !important;
    }
    
    .mobile-nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 1.5rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-bottom: 2px solid rgba(255, 0, 110, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
        list-style: none;
        display: flex;
    }
    
    .mobile-nav-links.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav-links li {
        margin: 0;
        text-align: center;
        width: 100%;
    }
    
    .mobile-nav-links a {
        display: block;
        padding: 1.2rem 2rem;
        margin: 0.2rem 1rem;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
        border: 1px solid transparent;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-links a:hover,
    .mobile-nav-links a:focus {
        background: linear-gradient(45deg, rgba(255, 0, 110, 0.2), rgba(131, 56, 236, 0.2));
        border-color: rgba(255, 0, 110, 0.4);
        transform: translateX(5px);
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 44px;
        height: 36px;
    }
    
    .hamburger-line {
        width: 24px !important;
        height: 3px !important;
        background: #ffffff !important;
        margin: 2px 0 !important;
        display: block !important;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-dropdown {
        display: block !important;
    }
}

/* Responsive layout for value props */
@media (max-width: 1024px) {
    .value-props {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .value-props {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
    }
}

@media (max-width: 500px) {
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Common Utility Classes for Inline Styles */
.no-decoration {
    text-decoration: none;
    color: inherit;
}

.center-text {
    text-align: center;
}

.left-text {
    text-align: left;
}

.highlight-text {
    color: #06ffa5;
    font-weight: 600;
}

.large-text {
    font-size: 1.2rem;
}

.margin-bottom-sm {
    margin-bottom: 0.5rem;
}

.margin-bottom-md {
    margin-bottom: 1rem;
}

.margin-bottom-lg {
    margin-bottom: 2rem;
}

.margin-bottom-xl {
    margin-bottom: 3rem;
}

.padding-left-sm {
    padding-left: 1rem;
}

.padding-left-md {
    padding-left: 1.5rem;
}

.padding-left-lg {
    padding-left: 2rem;
}

/* ===== AI Demo Page Styles ===== */

/* AI Demo specific main layout */
.ai-demo-main {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
}

/* Chat Container */
.chat-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.chat-header {
    text-align: center;
    margin-bottom: 1rem;
}

.chat-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-flow 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
}

.chat-header p {
    font-size: 1rem;
    opacity: 0.9;
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
}

/* Chat Interface */
.chat-interface {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 80%;
    padding: 1rem 1.5rem;
    border-radius: 18px;
    position: relative;
    animation: messageSlide 0.3s ease-out;
}

.message.ai {
    align-self: flex-start;
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.2), rgba(58, 134, 255, 0.2));
    border: 1px solid rgba(6, 255, 165, 0.3);
}

.message.user {
    align-self: flex-end;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(131, 56, 236, 0.2));
    border: 1px solid rgba(255, 0, 110, 0.3);
}

.message-sender {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.message.ai .message-sender {
    color: #06ffa5;
}

.message.user .message-sender {
    color: #ff006e;
}

.typing-indicator {
    display: none;
    align-self: flex-start;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.1), rgba(58, 134, 255, 0.1));
    border: 1px solid rgba(6, 255, 165, 0.2);
    border-radius: 18px;
    max-width: 80px;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #06ffa5;
    border-radius: 50%;
    animation: typingDot 1.4s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

/* Chat Input */
.chat-input-container {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.chat-input-wrapper {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: 1rem;
    resize: none;
    max-height: 120px;
    min-height: 50px;
    transition: all 0.3s ease;
}

.chat-input:focus {
    outline: none;
    border-color: rgba(6, 255, 165, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.chat-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.send-button {
    background: linear-gradient(45deg, #ff006e, #8338ec);
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
    height: 50px;
}

.send-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 110, 0.3);
}

.send-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.quick-action {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-action:hover {
    background: linear-gradient(45deg, #06ffa5, #3a86ff);
    border-color: #06ffa5;
}

/* Consultation CTA Section */
.consultation-cta {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
    border: 1px solid rgba(255, 0, 110, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-flow 4s ease-in-out infinite;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
    justify-content: center;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 0 0 250px;
    max-width: 250px;
    position: relative;
    z-index: 2;
}

.benefit-icon {
    font-size: 1.5rem;
}

.benefit span:last-child {
    font-weight: 600;
}

.cta-note {
    font-size: 1rem;
    color: #06ffa5;
    font-weight: 600;
    margin-top: 1.5rem;
}

/* Chat-specific animations */
@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Scrollbar Styling for Chat */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ff006e, #8338ec);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #06ffa5, #3a86ff);
}

/* ===== AI Application Development Page Styles ===== */

.tech-item {
    background: rgba(0, 0, 0, 0.75);
    border-left: 4px solid #3a86ff;
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
    flex: 0 0 300px;
    max-width: 300px;
}

.deployment-title {
    font-weight: 700;
    color: #06ffa5;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.metric-highlight {
    background: linear-gradient(45deg, #ff006e, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

@media (max-width: 768px) {
    .tech-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* ===== AI Business Process Development Page Styles ===== */

.reference-link {
    color: #06ffa5;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reference-link:hover {
    color: #3a86ff;
    text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

/* ===== Custom App Development Page Styles ===== */

.platform-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    justify-content: center;
}

/* Mobile responsive for platform grid */
@media (max-width: 768px) {
    .platform-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

.platform-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    text-align: center;
    flex: 0 0 350px;
    max-width: 350px;
    position: relative;
    z-index: 2;
}


.platform-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.platform-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff006e, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: #06ffa5;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #06ffa5;
}

.process-step {
    background: rgba(0, 0, 0, 0.75);
    border-left: 4px solid #3a86ff;
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 0 15px 15px 0;
}

.process-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
    justify-content: center;
}

/* Mobile responsive for tech stack */
@media (max-width: 768px) {
    .tech-stack {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
}

.tech-category {
    background: rgba(0, 0, 0, 0.75);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 0 0 280px;
    max-width: 280px;
    position: relative;
    z-index: 2;
}

.tech-category h4 {
    color: #3a86ff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    padding: 0.3rem 0;
    color: #ccc;
}

.tech-list li::before {
    content: "▸ ";
    color: #06ffa5;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ===== Engineering Consulting Page Styles ===== */

.market-stat {
    background: linear-gradient(45deg, #3a86ff, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    font-size: 1.3rem;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    justify-content: center;
}

.service-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: #3a86ff;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    justify-content: center;
}

.expertise-item {
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    flex: 0 0 300px;
    max-width: 300px;
    position: relative;
    z-index: 2;
}

/* Expertise item hover animation removed */

.expertise-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: #06ffa5;
}

.expertise-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #06ffa5;
}

.testbed-example {
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.1), rgba(58, 134, 255, 0.1));
    border: 1px solid rgba(6, 255, 165, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.testbed-title {
    font-weight: 700;
    color: #06ffa5;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Engineering-specific mobile responsive */
@media (max-width: 768px) {
    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .expertise-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* ===== Infrastructure Design Page Styles ===== */

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.deployment-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    justify-content: center;
}

.deployment-card {
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.1), rgba(58, 134, 255, 0.1));
    border: 1px solid rgba(6, 255, 165, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    flex: 0 0 450px;
    max-width: 450px;
    position: relative;
    z-index: 2;
}

.pros {
    background: rgba(6, 255, 165, 0.1);
    border: 1px solid rgba(6, 255, 165, 0.2);
}

.cons {
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid rgba(255, 0, 110, 0.2);
}

.pros h4 {
    color: #06ffa5;
    margin-bottom: 1rem;
}

.cons h4 {
    color: #ff006e;
    margin-bottom: 1rem;
}

.platform-logo {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Infrastructure-specific mobile responsive */
@media (max-width: 768px) {
    .deployment-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .platform-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* ===== IT Support Page Styles ===== */

.service-tier {
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.1), rgba(58, 134, 255, 0.1));
    border: 1px solid rgba(6, 255, 165, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.tier-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #06ffa5;
    margin-bottom: 1rem;
}

.tier-price {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff006e, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.monitoring-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    justify-content: center;
}

.monitoring-card {
    background: rgba(0, 0, 0, 0.75);
    border-left: 4px solid #06ffa5;
    padding: 2rem;
    border-radius: 0 15px 15px 0;
    flex: 0 0 300px;
    max-width: 300px;
    position: relative;
    z-index: 2;
}

.uptime-stat {
    display: inline-block;
    background: linear-gradient(45deg, #06ffa5, #3a86ff);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    margin: 0.5rem 0;
}

/* IT Support mobile responsive */
@media (max-width: 768px) {
    .monitoring-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* ===== Additional Hover Effects for Links (excluding header) ===== */

/* Enhanced service card hover with ripple effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(6, 255, 165, 0.2) 0%, transparent 70%);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Service card after hover animation removed */



/* General content link hover effects (excluding header and nav) */
main a:not(.service-card):not(.contact-item):not(.cta-button):not(.logo-container),
footer a {
    position: relative;
    transition: all 0.3s ease;
}

main a:not(.service-card):not(.contact-item):not(.cta-button):not(.logo-container):hover,
footer a:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(6, 255, 165, 0.6);
}

main a:not(.service-card):not(.contact-item):not(.cta-button):not(.logo-container)::after,
footer a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #06ffa5, #3a86ff);
    transition: width 0.3s ease;
}

main a:not(.service-card):not(.contact-item):not(.cta-button):not(.logo-container):hover::after,
footer a:hover::after {
    width: 100%;
}

/* Only enhance linked platform cards (if they exist as links) */
a.platform-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(6, 255, 165, 0.15);
}

/* Only add glow effect to icons within linked elements */
/* Service icon hover animation removed */

a.platform-card:hover .platform-icon {
    animation: pulse-glow 1.5s ease-in-out infinite;
    transform: scale(1.15);
}

.contact-item:hover .contact-icon {
    transform: scale(1.3) rotateY(180deg);
    filter: drop-shadow(0 0 25px rgba(6, 255, 165, 0.8));
    animation: pulse-glow 1.5s ease-in-out infinite;
}

/* Quick action button hover */
.quick-action:hover {
    background: linear-gradient(45deg, #06ffa5, #3a86ff);
    border-color: #06ffa5;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(6, 255, 165, 0.3);
}

/* ===== Website Development Page Styles ===== */

.ai-integration-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    justify-content: center;
}

.ai-card {
    background: linear-gradient(135deg, rgba(6, 255, 165, 0.1), rgba(58, 134, 255, 0.1));
    border: 1px solid rgba(6, 255, 165, 0.2);
    border-radius: 15px;
    padding: 2rem;
    flex: 0 0 300px;
    max-width: 300px;
    position: relative;
    z-index: 2;
}

.ai-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #06ffa5;
    margin-bottom: 1rem;
}

.conversion-stat {
    display: inline-block;
    background: linear-gradient(45deg, #06ffa5, #3a86ff);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    margin: 0.5rem 0;
}

.example-showcase {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.1), rgba(58, 134, 255, 0.1));
    border: 1px solid rgba(131, 56, 236, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.showcase-title {
    font-weight: 700;
    color: #8338ec;
    margin-bottom: 1rem;
}

/* Website Development mobile responsive */
@media (max-width: 768px) {
    .ai-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}