/* Global Styles */
:root {
    --primary-color: #8A2BE2; /* Brighter purple */
    --primary-dark: #6A0DAD; /* Darker purple */
    --primary-light: #B980FF; /* Light purple */
    --secondary-color: #D442FF; /* Bright pink/purple */
    --secondary-dark: #B01FDE;
    --accent-color: #FF3366;
    --text-color: #FFFFFF;
    --text-light: #CCCCCC;
    --text-muted: #999999;
    --background-dark: #0A0A0A;
    --background-darker: #050505;
    --background-card: #1A1A1A;
    --background-card-hover: #222222;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --glow: 0 0 15px rgba(138, 43, 226, 0.5);
    --glow-pink: 0 0 15px rgba(212, 66, 255, 0.5);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --gradient-purple: linear-gradient(135deg, #8A2BE2 0%, #6A0DAD 100%);
    --gradient-pink: linear-gradient(135deg, #D442FF 0%, #B01FDE 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-purple);
    border-radius: 3px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.badge {
    display: none !important;
}

/* Header & Navigation */
header {
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
}

header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    color: var(--text-light);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-pink);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.cta-button {
    background: var(--gradient-purple);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-pink);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    box-shadow: var(--glow-pink);
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Mobile menu active state */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--background-white);
    padding: 20px;
    box-shadow: var(--shadow);
    z-index: 1000;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none !important;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(to right, var(--text-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content .highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.hero-content .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-color);
    opacity: 0.3;
    z-index: -1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.primary-button {
    background: var(--gradient-purple);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow);
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-pink);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.primary-button:hover::before {
    opacity: 1;
}

.primary-button:hover {
    box-shadow: var(--glow-pink);
    transform: translateY(-2px);
}

.secondary-button {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(138, 43, 226, 0.1);
    z-index: -1;
    transition: var(--transition);
}

.secondary-button:hover::before {
    width: 100%;
}

.secondary-button:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    filter: blur(120px);
    opacity: 0.2;
    z-index: -1;
    border-radius: 50%;
}

/* Features Section */
.features {
    padding: 70px 0;
    background-color: var(--background-darker);
    position: relative;
    overflow: hidden;
}

.features::before {
    display: none !important;
}

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

.feature-card {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(138, 43, 226, 0.1);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-purple);
    transition: var(--transition);
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: rgba(138, 43, 226, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    filter: blur(20px);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    display: none !important;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.stats-container {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 20px;
    background: var(--background-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(138, 43, 226, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    filter: blur(100px);
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
}

/* Services Section */
.services {
    padding: 50px 0;
    background-color: var(--background-darker);
    position: relative;
    overflow: hidden;
}

.services::before {
    display: none !important;
}

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

.service-card {
    background: var(--background-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(138, 43, 226, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-purple);
    z-index: 1;
}

.service-card:hover {
    border-color: rgba(138, 43, 226, 0.5);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    flex: 1;
    font-size: 0.95rem;
}

.learn-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: auto;
    transition: var(--transition);
}

.learn-more i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--primary-light);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    display: none !important;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(138, 43, 226, 0.1);
    height: 100%;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: -10px;
    left: 20px;
    color: rgba(138, 43, 226, 0.1);
    font-family: serif;
    z-index: 0;
}

.testimonial-card:hover {
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--text-color);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    font-style: normal;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--background-card);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(123, 97, 255, 0.3);
}

.dot:hover {
    background-color: rgba(123, 97, 255, 0.3);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    padding: 50px 0 70px;
    background-color: var(--background-darker);
    position: relative;
    overflow: hidden;
}

.contact::before {
    display: none !important;
}

.contact-content {
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.contact-info > p {
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--background-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    border: 1px solid rgba(123, 97, 255, 0.2);
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    flex: 1;
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(123, 97, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-purple);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(123, 97, 255, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(123, 97, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.07);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--background-darker);
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    opacity: 0.2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--background-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(123, 97, 255, 0.2);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 160px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(123, 97, 255, 0.2), transparent);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero .container,
    .about-content,
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content,
    .hero-image,
    .about-text,
    .about-image,
    .contact-info,
    .contact-form {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .cta-button {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-bottom {
        margin-top: 20px;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--background-dark);
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 1000;
        border-top: 1px solid rgba(123, 97, 255, 0.1);
        border-bottom: 1px solid rgba(123, 97, 255, 0.1);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Particle Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.3);
    animation: float 25s infinite ease-in-out;
    z-index: -1;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.2);
    will-change: transform;
}

/* Create different animation speeds for more dynamic effect */
.particle:nth-child(3n) {
    animation-duration: 35s;
}

.particle:nth-child(3n+1) {
    animation-duration: 45s;
}

.particle:nth-child(5n) {
    background: rgba(212, 66, 255, 0.25);
    box-shadow: 0 0 15px rgba(212, 66, 255, 0.15);
}

.particle:nth-child(7n) {
    background: rgba(255, 51, 102, 0.2);
    box-shadow: 0 0 12px rgba(255, 51, 102, 0.1);
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-100px) translateX(50px) rotate(90deg);
    }
    50% {
        transform: translateY(-50px) translateX(100px) rotate(180deg);
    }
    75% {
        transform: translateY(-150px) translateX(50px) rotate(270deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}

/* Timeline */
.timeline {
    margin: 40px 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
}

.timeline-item {
    padding-left: 40px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: 9px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondary-color);
    box-shadow: var(--glow-cyan);
    z-index: 1;
}

.timeline-content {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid rgba(123, 97, 255, 0.1);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(5px);
    border-color: rgba(123, 97, 255, 0.3);
    box-shadow: var(--shadow);
}

.timeline-content h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Newsletter Section */
.newsletter {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--background-dark);
}

.newsletter::before {
    display: none !important;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(138, 43, 226, 0.1);
    box-shadow: var(--shadow);
}

.newsletter-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-purple);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.newsletter-text p {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 500px;
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.2);
    background-color: rgba(255, 255, 255, 0.07);
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form .primary-button {
    white-space: nowrap;
}

@media (max-width: 992px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .newsletter-content::before {
        width: 100%;
        height: 5px;
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }
    
    .newsletter-text p {
        margin: 0 auto 20px;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter {
        padding: 40px 0;
    }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.testimonial-card {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(138, 43, 226, 0.1);
    height: 100%;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: -10px;
    left: 20px;
    color: rgba(138, 43, 226, 0.1);
    font-family: serif;
    z-index: 0;
}

.testimonial-card:hover {
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--text-color);
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    font-style: normal;
}

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

/* Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.chatbot-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-purple);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: var(--glow);
}

.chatbot-button:hover::before {
    opacity: 1;
}

.chatbot-button i {
    animation: pulse 2s infinite;
}

/* Additional Media Queries */
@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline::before {
        left: 12px;
    }
    
    .timeline-dot {
        left: 6px;
        width: 12px;
        height: 12px;
    }
    
    .chatbot-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .services, .about, .contact {
        padding: 40px 0;
    }
    
    footer {
        padding: 40px 0 20px;
    }
} 