/*
Purpose: Main stylesheet for Minds4AI homepage
Author: AI Assistant
Last Modified: 2025-01-27
*/

/* Font Declarations */
@font-face {
    font-family: 'Mokoto';
    src: url('../assets/fonts/Mokoto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(143, 79, 240, 0.2);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #8f4ff0;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo span {
    color: #ffffff;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8f4ff0;
}

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

.nav-menu .dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu .dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.98);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(143, 79, 240, 0.3);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(143, 79, 240, 0.2);
    color: #8f4ff0;
    border-left-color: #8f4ff0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}



/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
    #000000 0%,
    #100d28 70%,
    #3d0e82 99%,
    #3d0e82 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.ai-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-icon:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    text-align: center;
    margin-bottom: 0.5rem;
}

.hero-logo-img {
    width: 500px;
    height: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

/* Hero Sparkles Strip Container */
.hero-sparkles-strip {
    position: relative;
    width: 100%;
    height: 120px;
    margin-top: -0.5rem;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero h1 strong {
    background: linear-gradient(135deg, #ffffff 0%, #3d0e82 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #3d0e82;
    color: white;
    border-color: #8f4ff0;
}

.btn-primary:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(143, 79, 240, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #8f4ff0;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #8f4ff0;
    border-color: #8f4ff0;
}

.btn-outline:hover {
    background: #8f4ff0;
    color: white;
    transform: translateY(-2px);
}

/* Empowering Business Section */
.empowering-section {
    padding: 80px 0;
    background: linear-gradient(135deg,
    #000000 0%,
    #100d28  100%);
    text-align: center;
}

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

.empowering-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dfdfdf;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.empowering-content p {
    font-size: 1.2rem;
    color: #dfdfdf;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.empowering-section .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
/* ===== CHAT SECTION ===== */
.chat-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.chat-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.chat-header {
    margin-bottom: 40px;
}

.chat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    animation: bounce 2s ease-in-out infinite;
}

.chat-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.chat-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.chat-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    color: #25d366;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #128c7e;
}

.btn-whatsapp i {
    font-size: 24px;
}

.btn-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    color: #8f4ff0;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #100d28;
}

.btn-email i {
    font-size: 24px;
}

.chat-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    opacity: 0.9;
}

.feature i {
    font-size: 20px;
}

/*email*/

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #100d28 0%, #3d0e82 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}


.contact-content h4 {
    color: #2d3748;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-content a {
    color: #8f4ff0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-content a:hover {
    color: #100d28;
}


/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(143,79,240,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    opacity: 0.5;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.intro-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-weight: 700;
    line-height: 1.2;
}

.intro-text p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #8f4ff0;
    width: 40px;
    height: 40px;
    background: #f3f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-item span {
    font-weight: 600;
    color: #1e293b;
}

.ai-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
}

.dashboard-mockup i {
    font-size: 3rem;
    color: #8f4ff0;
    text-align: center;
    padding: 1rem;
    background: #f3f0ff;
    border-radius: 15px;
}

/* Offerings Section */
.offerings-section {
    padding: 80px 0;
    background: white;
}

.offerings-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offering-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #100d28 0%, #3d0e82 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.offering-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.offering-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* AI for All Section */
.ai-for-all-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    text-align: center;
}

.ai-for-all-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ai-for-all-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ai-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.ai-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.ai-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8f4ff0 0%, #3d0e82 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.ai-card .card-icon i {
    font-size: 2rem;
    color: white;
}

.ai-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.ai-card p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 1rem;
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
    background: #f8fafc;
}

.use-cases-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.case-slide {
    min-width: 100%;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 1rem;
}

.case-slide.active {
    display: block;
}

.case-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #100d28 0%, #3d0e82 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.case-icon i {
    font-size: 2.5rem;
    color: white;
}

.case-slide h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.case-slide p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-link {
    color: #8f4ff0;
    text-decoration: none;
    font-weight: 600;
}

.case-link:hover {
    text-decoration: underline;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: #8f4ff0;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #7c3aed;
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.testimonials-slider {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    color: #8f4ff0;
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0d4f7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #8f4ff0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        #000000 0%, 
        #100d28 70%, 
        #3d0e82 99%, 
        #3d0e82 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    background: white;
    color: #8f4ff0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #8f4ff0;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(16, 13, 40, 0.98);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(143, 79, 240, 0.3);
        padding: 2rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile menu overlay */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
        z-index: -1;
        backdrop-filter: blur(1px);
    }
    
    /* Prevent body scroll when menu is open */
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Mobile Dropdown Styles */
    .nav-menu .dropdown {
        position: relative;
    }
    
    .nav-menu .dropdown > a::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.8rem;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }
    
    .nav-menu .dropdown.active > a::after {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(61, 14, 130, 0.3);
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }
    
    .dropdown-menu a {
        padding: 1rem 2rem;
        border-left: none;
        border-bottom: 1px solid rgba(143, 79, 240, 0.2);
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .hero-logo-img {
        width: 400px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dashboard-mockup {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .empowering-section {
        padding: 60px 0;
    }
    
    .empowering-content h3 {
        font-size: 2rem;
    }
    
    .empowering-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ai-for-all-section {
        padding: 60px 0;
    }
    
    .ai-for-all-title {
        font-size: 2.5rem;
    }
    
    .ai-for-all-subtitle {
        font-size: 1.1rem;
    }
    
    .ai-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ai-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        width: 300px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .offering-card,
    .case-slide {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .empowering-section {
        padding: 40px 0;
    }
    
    .empowering-content h3 {
        font-size: 1.75rem;
    }
    
    .empowering-content p {
        font-size: 0.95rem;
    }
}

/* Ambition Section */
.ambition-section {
    padding: 80px 0;
    background: #0b1220;
}

.ambition-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.ambition-subtitle {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 2.5rem;
    color: #cbd5e1;
    font-size: 1.125rem;
}

.ambition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ambition-card {
    background: #0f172a;
    border: 1px solid rgba(143,79,240,0.25);
    border-radius: 16px;
    padding: 2rem;
    color: #e2e8f0;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.ambition-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8f4ff0 0%, #a855f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.ambition-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.ambition-card p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.ambition-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ambition-list li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #cbd5e1;
    margin: 0.35rem 0;
}

.ambition-list li::before {
    content: "\f105"; /* Font Awesome angle-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #a855f7;
}

@media (max-width: 768px) {
    .ambition-title { font-size: 2.2rem; }
    .ambition-subtitle { font-size: 1rem; }
}

/* Agents Page Styles */
.agents-types-section {
    padding: 5rem 0;
    background: var(--surface-color);
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.agent-type-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.agent-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.agent-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.agent-icon i {
    font-size: 2rem;
    color: white;
}

.agent-type-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.agent-type-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.agent-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.agent-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.agent-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.how-it-works-section {
    padding: 5rem 0;
    background: white;
}

.process-steps {
    margin-top: 3rem;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.agent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
}

.agent-card {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.agent-card.active {
    border-left-color: var(--primary-color);
    background: rgba(126, 34, 206, 0.05);
}

.agent-status {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.agent-card.active .agent-status {
    background: var(--primary-color);
    animation: pulse 2s infinite;
}

.agent-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Mobile Responsiveness for Agents */
@media (max-width: 768px) {
    .agents-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .agent-type-card {
        padding: 2rem;
    }
    
    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-content {
        text-align: center;
    }
}

.ai-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.ai-card p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.testimonials-slider {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    color: #8f4ff0;
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0d4f7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #8f4ff0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        #000000 0%, 
        #100d28 70%, 
        #3d0e82 99%, 
        #3d0e82 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    background: white;
    color: #8f4ff0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #8f4ff0;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(16, 13, 40, 0.98);
        width: 100%;
        text-align: center;
        align-items: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(143, 79, 240, 0.3);
        padding: 2rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile menu overlay */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
        z-index: -1;
        backdrop-filter: blur(1px);
    }
    
    /* Prevent body scroll when menu is open */
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Mobile Dropdown Styles */
    .nav-menu .dropdown {
        position: relative;
    }
    
    .nav-menu .dropdown > a::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.8rem;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }
    
    .nav-menu .dropdown.active > a::after {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(61, 14, 130, 0.3);
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }
    
    .dropdown-menu a {
        padding: 1rem 2rem;
        border-left: none;
        border-bottom: 1px solid rgba(143, 79, 240, 0.2);
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .hero-logo-img {
        width: 400px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dashboard-mockup {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .empowering-section {
        padding: 60px 0;
    }
    
    .empowering-content h3 {
        font-size: 2rem;
    }
    
    .empowering-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ai-for-all-section {
        padding: 60px 0;
    }
    
    .ai-for-all-title {
        font-size: 2.5rem;
    }
    
    .ai-for-all-subtitle {
        font-size: 1.1rem;
    }
    
    .ai-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ai-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        width: 300px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .offering-card,
    .case-slide {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .empowering-section {
        padding: 40px 0;
    }
    
    .empowering-content h3 {
        font-size: 1.75rem;
    }
    
    .empowering-content p {
        font-size: 0.95rem;
    }
}

/* Ambition Section */
.ambition-section {
    padding: 80px 0;
    background: #0b1220;
}

.ambition-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.ambition-subtitle {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 2.5rem;
    color: #cbd5e1;
    font-size: 1.125rem;
}

.ambition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ambition-card {
    background: #0f172a;
    border: 1px solid rgba(143,79,240,0.25);
    border-radius: 16px;
    padding: 2rem;
    color: #e2e8f0;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.ambition-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8f4ff0 0%, #a855f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.ambition-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.ambition-card p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.ambition-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ambition-list li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #cbd5e1;
    margin: 0.35rem 0;
}

.ambition-list li::before {
    content: "\f105"; /* Font Awesome angle-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #a855f7;
}

@media (max-width: 768px) {
    .ambition-title { font-size: 2.2rem; }
    .ambition-subtitle { font-size: 1rem; }
}

.ai-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.ai-card p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.testimonials-slider {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    color: #8f4ff0;
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0d4f7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #8f4ff0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        #000000 0%, 
        #100d28 70%, 
        #3d0e82 99%, 
        #3d0e82 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    background: white;
    color: #8f4ff0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #8f4ff0;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(16, 13, 40, 0.98);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(143, 79, 240, 0.3);
        padding: 2rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile menu overlay */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
        z-index: -1;
        backdrop-filter: blur(1px);
    }
    
    /* Prevent body scroll when menu is open */
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Mobile Dropdown Styles */
    .nav-menu .dropdown {
        position: relative;
    }
    
    .nav-menu .dropdown > a::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.8rem;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }
    
    .nav-menu .dropdown.active > a::after {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(61, 14, 130, 0.3);
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }
    
    .dropdown-menu a {
        padding: 1rem 2rem;
        border-left: none;
        border-bottom: 1px solid rgba(143, 79, 240, 0.2);
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .hero-logo-img {
        width: 400px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dashboard-mockup {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .empowering-section {
        padding: 60px 0;
    }
    
    .empowering-content h3 {
        font-size: 2rem;
    }
    
    .empowering-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ai-for-all-section {
        padding: 60px 0;
    }
    
    .ai-for-all-title {
        font-size: 2.5rem;
    }
    
    .ai-for-all-subtitle {
        font-size: 1.1rem;
    }
    
    .ai-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ai-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        width: 300px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .offering-card,
    .case-slide {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .empowering-section {
        padding: 40px 0;
    }
    
    .empowering-content h3 {
        font-size: 1.75rem;
    }
    
    .empowering-content p {
        font-size: 0.95rem;
    }
}

/* Ambition Section */
.ambition-section {
    padding: 80px 0;
    background: #0b1220;
}

.ambition-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.ambition-subtitle {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 2.5rem;
    color: #cbd5e1;
    font-size: 1.125rem;
}

.ambition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.ambition-card {
    background: #0f172a;
    border: 1px solid rgba(143,79,240,0.25);
    border-radius: 16px;
    padding: 2rem;
    color: #e2e8f0;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.ambition-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8f4ff0 0%, #a855f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.ambition-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.ambition-card p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.ambition-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ambition-list li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #cbd5e1;
    margin: 0.35rem 0;
}

.ambition-list li::before {
    content: "\f105"; /* Font Awesome angle-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #a855f7;
}

@media (max-width: 768px) {
    .ambition-title { font-size: 2.2rem; }
    .ambition-subtitle { font-size: 1rem; }
}

.ai-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.ai-card p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.testimonials-slider {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.3rem;
    font-style: italic;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    color: #8f4ff0;
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0d4f7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #8f4ff0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        #000000 0%, 
        #100d28 70%, 
        #3d0e82 99%, 
        #3d0e82 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    background: white;
    color: #8f4ff0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #8f4ff0;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(16, 13, 40, 0.98);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(143, 79, 240, 0.3);
        padding: 2rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile menu overlay */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
        z-index: -1;
        backdrop-filter: blur(1px);
    }
    
    /* Prevent body scroll when menu is open */
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Mobile Dropdown Styles */
    .nav-menu .dropdown {
        position: relative;
    }
    
    .nav-menu .dropdown > a::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.8rem;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }
    
    .nav-menu .dropdown.active > a::after {
        transform: rotate(180deg);
    }
}

/* ===== AGENTS PAGE STYLES MOVED TO styles/agents.css ===== */

/* ===== NEW HOME PAGE SECTIONS ===== */

/* Hero AI Section */
#hero-ai {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: white;
}

#hero-ai h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

#hero-ai h1 strong {
    background: linear-gradient(135deg, #ffffff 0%, #3d0e82 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#hero-ai p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto;
    color: #b0b0b0;
    line-height: 1.6;
}

/* AI Accessible Section */
#ai-accessible {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
}

#ai-accessible h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

#ai-accessible p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    line-height: 1.7;
}

/* AI Values Section */
#ai-values {
    padding: 4rem 2rem;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #8f4ff0 0%, #3d0e82 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.value-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #8f4ff0 0%, #3d0e82 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* AI Solutions Section */
#ai-solutions {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: white;
    text-align: center;
}

#ai-solutions h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

#ai-solutions > p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
}

.solution-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(143, 79, 240, 0.3);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8f4ff0 0%, #3d0e82 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.solution-icon i {
    font-size: 1.5rem;
    color: white;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
}

.solution-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-card ul {
    list-style: none;
    padding: 0;
}

.solution-card ul li {
    color: #d0d0d0;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.solution-card ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #8f4ff0;
    font-size: 0.8rem;
}

.solution-cta-btn {
    display: block;
    background: linear-gradient(135deg, #8f4ff0 0%, #3d0e82 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 1.5rem auto 0;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-align: center;
    width: fit-content;
}

.solution-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(143, 79, 240, 0.4);
    background: linear-gradient(135deg, #a05ff5 0%, #4d1a92 100%);
    text-decoration: none;
    color: white;
}

/* CTA Section Styles */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 50%, #3d0e82 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
}

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

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Floating Animation */
.floating-icon {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card,
    .solution-card {
        padding: 2rem 1.5rem;
    }
    
    #hero-ai,
    #ai-accessible,
    #ai-values,
    #ai-solutions {
        padding: 2.5rem 1rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .intro-text h2 {
        font-size: 2.2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .floating-icon {
        display: none;
    }
}