* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    min-height: 100vh;
    background-color: #0a061e;
    background-image: url('../assets/faded-bg.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1512px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: transparent;
    transition: background-color 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.navbar.scrolled {
    background-color: rgba(10, 6, 30, 0.95);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
}

.navbar::before {
    display: none;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo img {
    height: 55px;
    width: auto;
}

.nav-logo span {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0.8rem;
    position: relative;
    border-radius: 6px;
}

.nav-links a i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-links a:hover i {
    transform: translateY(-2px) rotate(5deg);
    color: #54249f;
}

.nav-links a.active {
    color: #ffffff;
    font-weight: 600;
    background: linear-gradient(135deg, #54249f, #7c3aed);
    box-shadow: 0 4px 15px rgba(84, 36, 159, 0.3);
}

.nav-links a.active i {
    color: #ffffff;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sign-in {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: bold;
}

.sign-in:hover {
    color: #007bff;
}

.language-selector {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selected {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(to right, #e2ddd2, #80737d);
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-selected:hover {
    background: linear-gradient(to bottom, #f0f0f0, #e8e8e8);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 180px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    padding: 0.8rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    overflow: hidden;
}

.language-dropdown:before {
    content: '';
    position: absolute;
    top: -4px;
    right: 15px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 2px;
    transform: rotate(45deg);
    z-index: -1;
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.04);
}

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

.language-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.2rem;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    position: relative;
}

.language-option:hover {
    background-color: #f5f5f5;
}

.language-option.active {
    background-color: #f0f0f0;
    font-weight: 600;
}

.language-option.active:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #e2ddd2, #80737d);
}

.flag-icon {
    width: 24px;
    height: 16px;
    border-radius: 2px;
}

.language-selected span {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.language-selected i {
    font-size: 0.8rem;
    color: #1a1a1a;
    margin-left: 0.2rem;
    transition: transform 0.3s ease;
}

.language-selector:hover .language-selected i {
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    z-index: 2;
}

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

.tag-line {
    display: inline-block;
    background: #54249f;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.tag-line span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    font-style: italic;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    color: #b4b4b4;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.highlight {
    color: white;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(to right, #e2ddd2, #80737d);
    color: #1a1a1a;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(to bottom, #f0f0f0, #e8e8e8);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: none;
    text-decoration: underline;
    text-underline-offset: 5px;
    padding: 0.8rem 1rem;
}

.btn-secondary:hover {
    background: transparent;
    color: #a742f0;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    z-index: 1;
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 2rem;
        margin-top: 50px;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

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

.underline {
    position: relative;
    display: inline-block;
}

.underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 3px;
}

.trusted-brands {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.trusted-brands h2 {
    color: white;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.logos-container {
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 2rem;
}

.all-logos {
    width: 100%;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.all-logos:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .trusted-brands {
        padding: 2rem 0;
    }

    .trusted-brands h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .logos-container {
        padding: 0 1rem;
    }
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 101;
}

@media (max-width: 968px) {
    .container {
        padding: 0;
    }

    .navbar {
        padding: 1rem;
    }

    .mobile-menu-btn {
        display: block;
    }
    
    .close-menu-btn {
        display: flex;
    }

    .nav-logo {
        padding-left: 0.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: rgba(10, 6, 30, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        backdrop-filter: blur(10px);
        z-index: 101;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-auth {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 1rem;
    }

    .sign-in {
        width: 100%;
        padding: 1rem 0;
    }

    .language-selector {
        width: 100%;
        justify-content: center;
    }
}

/* Integration Section */
.integration {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

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

.section-tag {
    display: inline-block;
    background: #54249f;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.integration h2 {
    color: white;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight-text {
    display: inline-block;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 4px;
    background: white;
    border-radius: 2px;
}

.integration p {
    color: #b4b4b4;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.integration p strong {
    color: white;
}

.integration-image {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.integration-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .integration {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }

    .integration h2 {
        font-size: 2rem;
    }

    .integration-content {
        margin-bottom: 0;
    }

    .integration-image {
        width: 100%;
        justify-content: center;
        margin-bottom: 2rem;
    }
}


.services {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-image: url('../assets/services-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(221, 221, 223, 0.97);
    z-index: -1;
}

.services-header {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.services h2 {
    color: #0a061e;
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.highlight-brand {
    font-weight: bold;
    color: #0a061e;
}

.services-description {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-description strong {
    color: #0a061e;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: #371d5f;
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(84, 36, 159, 0.3);
}

.service-image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

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

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 4rem 1rem;
    }

    .services h2 {
        font-size: 2rem;
    }

    .services-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-image img {
        height: 180px;
    }
}


.ai-features {
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
    color: white;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.ai-features-header {
    flex: 1;
    max-width: 500px;
    margin-bottom: 0;
}

.explore-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: background 0.3s ease;
}

.explore-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ai-features h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: white;
}

.ai-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.ai-description strong {
    color: white;
    font-weight: 600;
}

.features-grid {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: rgba(62, 41, 96, 0.2);
    border-radius: 2.7px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    min-height: 216px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-card::before {
    content: '';
    position: absolute;
    left: 21.6px;
    top: 27px;
    width: 2.7px;
    height: 162px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 9px;
}

.feature-card::after {
    content: '';
    position: absolute;
    left: 21.6px;
    top: 119px;
    width: 4.5px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 36px;
}

.feature-icon {
    width: 43.2px;
    height: 43.2px;
    margin-left: 36.9px;
    margin-bottom: 0.5rem;
}

.feature-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
    margin-left: 36.9px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    margin-left: 36.9px;
    max-width: 270px;
}

@media (max-width: 968px) {
    .ai-features {
        flex-direction: column;
        padding: 4rem 1rem;
        gap: 3rem;
    }

    .ai-features h2 {
        font-size: 2.5rem;
    }

    .ai-features-header {
        max-width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }

    .ai-description {
        font-size: 1.1rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-image: url('../assets/cta-bg.png');
    background-size: cover;
    background-position: top left;
    max-width: 1512px;
    margin: 50px auto;
    border-radius: 16px;
}

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

.cta-content {
    flex: 1.5;
    max-width: 650px;
}

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

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-image {
    flex: 1;
    max-width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image img {
    width: 100%;
    height: auto;
}

.btn-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(to right, #e2ddd2, #80737d);
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
    background: linear-gradient(to bottom, #f0f0f0, #e8e8e8);
    transform: translateY(-2px);
}

.btn-learn {
    display: inline-block;
    padding: 0.8rem 1rem;
    background: transparent;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.btn-learn:hover {
    color: #a742f0;
}

@media (max-width: 1024px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-image {
        max-width: 300px;
    }
}

.chatbot-experience {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6rem 2rem;
    position: relative;
    z-index: 2;
    gap: 4rem;
}

.chatbot-content {
    flex: 1;
    max-width: 550px;
}

.chatbot-explore-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: background 0.3s ease;
}

.chatbot-explore-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-content h2 {
    color: white;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
}

.chatbot-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.chatbot-content strong {
    color: white;
    font-weight: 600;
}

.explore-now-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(to right, #e2ddd2, #80737d);
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.explore-now-btn:hover {
    background: linear-gradient(to bottom, #f0f0f0, #e8e8e8);
    transform: translateY(-2px);
}

.chatbot-demo {
    flex: 1;
    max-width: 600px;
}

.chatbot-interface {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.chatbot-interface img {
    width: 100%;
    height: auto;
    display: block;
}

.chat-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 15px;
    height: 6px;
    background: #54249f;
    border-radius: 3px;
    opacity: 0.5;
}

.indicator.active {
    opacity: 1;
    width: 25px;
}

@media (max-width: 1024px) {
    .chatbot-experience {
        flex-direction: column;
        padding: 4rem 1rem;
        gap: 3rem;
    }

    .chatbot-content {
        max-width: 100%;
        text-align: center;
    }

    .chatbot-content h2 {
        font-size: 2.5rem;
    }

    .chatbot-demo {
        max-width: 100%;
    }
}

/* Testimonials Section */
.testimonials {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: white;
    background-image: url('../assets/testimonials-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 5rem;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(221, 221, 223, 0.97);
    z-index: -1;
}

.testimonials-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.testimonials h2 {
    font-size: 3rem;
    color: #1a0830;
    margin-bottom: 1.5rem;
}

.testimonials-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 3rem;
}

.testimonials-slider {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-card {
    background: #15141d;
    border-radius: 10px;
    padding: 2.5rem;
    color: white;
    text-align: left;
    position: relative;
    max-width: 400px;
    flex: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #282c46;
    transition: all 0.3s ease;
    z-index: 1;
    overflow: hidden;
}

.testimonial-card:hover, .testimonial-card.active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 25px;
    width: 57px;
    height: 41px;
    background-image: url('../assets/icons/quote.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.16;
}

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

.author-image {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
}

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

.author-info h4 {
    font-size: 1.2rem;
    margin: 0;
    color: #f6f6f7;
}

.author-info p {
    font-size: 0.9rem;
    margin: 0;
    color: #8f9abc;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.slider-arrow {
    width: 38px;
    height: 38px;
    background: #15141d;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #282c46;
}

.slider-arrow.prev i {
    color: #777;
}

.slider-arrow.next i {
    color: white;
}

.slider-arrow:hover {
    background: rgba(21, 20, 29, 0.9);
    transform: translateY(-2px);
}


.testimonial-blur-effect {
    display: none;
}


.testimonial-card::after {
    display: none;
}

.blur-purple, .blur-blue, .blur-green {
    display: none;
}

@media (max-width: 1200px) {
    .testimonials-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        max-width: 600px;
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    .testimonial-card.active {
        opacity: 1;
        transform: translateY(0);
    }
}


.faq-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: #0a061e;
    padding: 6rem 0;
    position: relative;
    z-index: 2;
    margin-top: 5rem;
    overflow: hidden;
}

.faq-container {
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-header {
    max-width: 800px;
    margin-bottom: 4rem;
    text-align: center;
}

.faq-header h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.faq-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.faq-content {
    display: flex;
    width: 100%;
    gap: 5rem;
}

.faq-column {
    flex: 1;
    max-width: 813px;
    position: relative;
}

.light-logo-bg {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-60%);
    width: 100%;
    height: 100%;
    background-image: url('../assets/light-logo.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 70%;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.faq-image {
    flex: 0.5;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-image img {
    width: 100%;
    max-width: 404px;
    border-radius: 10px;
    mix-blend-mode: lighten;
    height: auto;
    object-fit: contain;
}

.faq-image video {
    display: none;
}

.faq-question {
    background-color: rgba(21, 20, 29, 0.3);
    backdrop-filter: blur(15px);
    border: 2px solid #1f2245;
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.25);
    position: relative;
    z-index: 1;
}

.faq-question::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03);
    z-index: -1;
}

.question-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.question-title {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.question-number {
    color: white;
    font-weight: 600;
    opacity: 0.7;
}

.question-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.question-toggle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #380836 0%, #51057e 50%, #380836 100%);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.question-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: white;
    position: relative;
}

.question-toggle span.plus::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 22px;
    background-color: white;
    top: -10px;
    left: 10px;
}

.question-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.question-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    padding: 0 0 1.5rem 4.5rem;
}

.faq-question.active .question-answer {
    max-height: 500px;
    padding-top: 1rem;
}

.faq-question.active .question-toggle span.plus::after {
    display: none;
}

@media (max-width: 1200px) {
    .faq-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .faq-image {
        order: -1;
    }
    
    .light-logo-bg {
        background-size: 50%;
        opacity: 0.04;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .light-logo-bg {
        background-size: 70%;
        background-position: center bottom;
    }
}


.footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
    background: #230c48;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 0 0 30%;
    max-width: 30%;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
    width: 180px;
}

.footer-logo-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0.5rem;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff9e9 6.9%, #dbeef7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 6rem;
    flex: 0 0 65%;
    justify-content: space-between;
    padding-left: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column.contact {
    display: flex;
    flex-direction: column;
    position: relative;
}

.footer-column.social-policy {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-column h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-cta {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-cta-content {
    max-width: 70%;
}

.footer-cta h3 {
    color: white;
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-footer-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(to right, #e2ddd2, #80737d);
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.btn-footer-cta:hover {
    background: linear-gradient(to bottom, #f0f0f0, #e8e8e8);
    transform: translateY(-2px);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.43);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.footer-copyright {
    color: white;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 4px;
    border: 0.8px solid white;
    transition: all 0.3s ease;
}

.social-icon i {
    color: #56087D;
    font-size: 1.1rem;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.footer-policies {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-policies a {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-policies a:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
        flex: 0 0 100%;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo img {
        width: 220px;
    }
    
    .footer-description {
        max-width: 80%;
        margin: 1rem auto 0;
    }
    
    .footer-links {
        padding-left: 0;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-around;
        flex: 0 0 100%;
    }
    
    .footer-column.social-policy {
        align-items: flex-start;
        margin-top: 1rem;
        width: 100%;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-policies {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-logo img {
        width: 200px;
    }
    
    .footer-description {
        max-width: 95%;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column.social-policy {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-policies {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-cta-content {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
}


.pricing-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-image: url('../assets/services-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: -1;
}

.pricing-header {
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.pricing-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0a061e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: block;
}

.pricing-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0a061e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pricing-header p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-toggle-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 3rem;
    padding: 0;
}

.pricing-toggle {
    display: flex;
    width: 220px;
    height: 50px;
    border-radius: 12px;
    background: #ffffff;
    position: relative;
    box-shadow: 1px 3px 1px rgba(35, 29, 79, 0.46);
    background-image: linear-gradient(to right, #25243d, #390b6d);
    overflow: hidden;
}

.toggle-btn-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-btn-frame.active {
    background-image: url('../assets/services-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 9px;
    position: relative;
}

.toggle-btn-frame.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 9px;
    z-index: 1;
}

.toggle-btn {
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    letter-spacing: 1px;
    z-index: 2;
}

.toggle-btn-frame.active .toggle-btn {
    color: #33176a;
    font-weight: 700;
}

.pricing-plans {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    flex-wrap: wrap;
    position: relative;
}

.pricing-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(320px + 30px);
    right: calc(320px + 30px);
    height: 100%;
    background: #ffffff;
    border-radius: 16px;
    z-index: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card {
    padding: 2.5rem 2.5rem 5.5rem;
    max-width: 320px;
    width: 100%;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.popular {
    background: #371d5f;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
}

.popular-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #d7c1c9;
    border-radius: 4px;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #303653;
}

.pricing-amount, .pricing-card h3, .pricing-card p, .pricing-features {
    margin-bottom: 1.5rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.pricing-amount h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.pricing-card.popular .pricing-amount h2 {
    color: #ffffff;
}

.pricing-amount span {
    font-size: 1rem;
    color: #666666;
}

.pricing-card.popular .pricing-amount span {
    color: #b4b4b4;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.pricing-card.popular h3 {
    color: #ffffff;
}

.pricing-card p {
    font-size: 1rem;
    color: #666666;
}

.pricing-card.popular p {
    color: #b4b4b4;
}

.pricing-features {
    list-style: none;
    margin-bottom: 4rem;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: #444444;
    margin-bottom: 1rem;
}

.pricing-card.popular .pricing-features li {
    color: #ffffff;
}

.pricing-features i {
    color: #54249f;
    font-size: 1rem;
}

.pricing-card.popular .pricing-features i {
    color: #ffffff;
}

.btn-pricing {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    background: #391774;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    right: 2.5rem;
    width: calc(100% - 5rem);
}

.btn-pricing:hover {
    background: #4b2190;
    border-color: #54249f;
    transform: translateY(-2px);
}

.popular-btn {
    background: linear-gradient(to right, #e2ddd2, #80737d);
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.popular-btn:hover {
    background: #4b2190;
    border-color: #4b2190;
}

.pricing-faq {
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

.pricing-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-faq-header h2 {
    font-size: 2.5rem;
    color: #0a061e;
    margin-bottom: 1rem;
}

.pricing-faq-header p {
    color: #333;
    font-size: 1.1rem;
}

.pricing-faq-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-links a.active {
    color: #ffffff;
    font-weight: 600;
    background: linear-gradient(135deg, #54249f, #7c3aed);
    box-shadow: 0 4px 15px rgba(84, 36, 159, 0.3);
}

@media (max-width: 1024px) {
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-plans::before {
        display: none;
    }
    
    .pricing-card {
        max-width: 400px;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }
    
    .pricing-card, .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-header h1 {
        font-size: 2.2rem;
    }
    
    .pricing-faq-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 7rem 1rem 3rem;
    }
    
    .pricing-header h1 {
        font-size: 1.8rem;
    }
    
    .pricing-header p {
        font-size: 1rem;
    }
    
    .pricing-toggle-container {
        justify-content: center;
    }
    
    .pricing-container {
        align-items: center;
    }
    
    .pricing-toggle {
        width: 200px;
        height: 46px;
    }
    
    .toggle-btn {
        font-size: 0.65rem;
    }
}

.navbar.dark-bg {
    background-color: #09071d;
}

.benefits-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: #170f2d;
    padding: 6rem 0;
    position: relative;
    z-index: 2;
    margin-top: 3rem;
    margin-bottom: 3rem;
    overflow: hidden;
    border: 1px solid #53475F;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    z-index: -1;
}

.benefits-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-image: url('../assets/light-logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.5;
    z-index: -1;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
}

.benefits-section h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 4rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.5rem;
    position: relative;
}

.benefit-item i {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.2rem;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.7rem;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .benefits-section h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-section {
        padding: 4rem 1rem;
    }
    
    .benefits-section h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
}

.contact-hero {
    background-color: #0a061e;
    background-image: linear-gradient(rgba(10, 6, 30, 0.9), rgba(10, 6, 30, 0.98)), url('../assets/faded-bg.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 80px;
    color: white;
    position: relative;
}

.contact-hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.contact-hero p {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #B3B3B3;
}

.contact-form-container {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(17, 14, 50, 0.4);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-wrapper {
    display: flex;
    align-items: stretch;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(23, 20, 58, 0.6);
}

.contact-left {
    flex: 1;
    padding: 40px;
    position: relative;
}

.contact-left h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.contact-left p {
    font-size: 1rem;
    color: #B3B3B3;
    margin-bottom: 30px;
    text-align: left;
}

.contact-left .highlight {
    color: #583FF6;
    font-weight: 600;
}

.contact-right {
    flex: 1;
    background: linear-gradient(45deg, rgba(88, 63, 246, 0.1), rgba(183, 54, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-image {
    max-width: 100%;
    max-height: 90%;
}

#contactForm {
    width: 100%;
}

#contactForm .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

#contactForm .form-group {
    flex: 1;
}

#contactForm .form-group.full-width {
    width: 100%;
    margin-bottom: 20px;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

#contactForm input:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: #583FF6;
    box-shadow: 0 0 0 2px rgba(88, 63, 246, 0.2);
}

#contactForm textarea {
    min-height: 150px;
    resize: vertical;
}

.send-btn {
    width: 100%;
    padding: 15px;
    border: none;
    background: linear-gradient(to right, #e2ddd2, #80737d);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(88, 63, 246, 0.3);
}

.contact-info-section {
    padding: 80px 0;
    background-color: #0a061e;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
}

.contact-info-item {
    flex: 1;
    background: rgba(17, 14, 50, 0.6);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-info-item i {
    font-size: 2rem;
    color: #583FF6;
    margin-bottom: 15px;
}

.contact-info-item h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
}

.contact-info-item p {
    color: #B3B3B3;
    font-size: 1rem;
}


@media (max-width: 992px) {
    .contact-form-wrapper {
        flex-direction: column;
    }
    
    .contact-hero h1 {
        font-size: 2.8rem;
    }
    
    .contact-info-container {
        flex-wrap: wrap;
    }
    
    .contact-info-item {
        flex: 1 0 45%;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    #contactForm .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info-container {
        flex-direction: column;
    }
    
    .contact-info-item {
        flex: 1 0 100%;
    }
    
    .contact-form-container {
        padding: 10px;
    }
    
    .contact-left {
        padding: 30px 20px;
    }
}


.form-group.error input,
.form-group.error textarea {
    border-color: #ff3e3e;
    box-shadow: 0 0 0 2px rgba(255, 62, 62, 0.2);
}

.form-group.error::after {
    content: 'This field is required';
    color: #ff3e3e;
    font-size: 0.8rem;
    display: block;
    margin-top: 5px;
}

.form-group.error:has(#email)::after {
    content: 'Please enter a valid email address';
}

.form-success-message {
    background: linear-gradient(to right, rgba(88, 63, 246, 0.1), rgba(183, 54, 255, 0.1));
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    border-left: 3px solid #583FF6;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* AI Solutions Hero Section */
.ai-solutions-hero {
    padding: 120px 0 50px;
    background-color: #0a061e;
    background-image: url('../assets/ai-solutions.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.ai-solutions-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

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

.ai-solutions-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.ai-solutions-content p {
    font-size: 1.1rem;
    color: #B3B3B3;
    line-height: 1.7;
    margin-bottom: 35px;
}

.ai-solutions-content .highlight {
    color: #583FF6;
    font-weight: 600;
}

.ai-solutions-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.ai-solutions-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ai-solutions-image img {
    max-width: 100%;
    height: auto;
    animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.ai-solutions-stats {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-plus {
    font-size: 2rem;
    color: #583FF6;
    position: relative;
    top: -15px;
}

.stat-k {
    font-size: 2rem;
    color: #583FF6;
    position: relative;
    top: -10px;
}

.stat-item p {
    font-size: 1rem;
    color: #B3B3B3;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .ai-solutions-container {
        flex-direction: column;
        text-align: center;
    }
    
    .ai-solutions-content {
        max-width: 100%;
    }
    
    .ai-solutions-buttons {
        justify-content: center;
    }
    
    .ai-solutions-image {
        margin-top: 30px;
    }
    
    .ai-solutions-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .ai-solutions-hero {
        padding: 100px 0 40px;
    }
    
    .ai-solutions-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-item {
        flex: 1 0 40%;
    }
    
    .ai-solutions-content h1 {
        font-size: 2rem;
    }
    
    .ai-solutions-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stat-item {
        flex: 1 0 100%;
    }
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: transparent;
    margin: 60px auto;
    max-width: 1512px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
}

.about-content {
    flex: 1;
    padding-left: 0;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 0;
    margin-left: 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-left: 0;
    padding-left: 0;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 0;
    padding-left: 0;
}

.about-simple-image {
    flex: 1;
    max-width: 640px;
    height: auto;
}

@media (max-width: 1200px) {
    .about-container {
        gap: 40px;
    }
    
    .about-content {
        flex: 3;
    }
    
    .about-feature {
        gap: 15px;
    }
    
    .feature-text {
        flex: 1;
    }
    
    .about-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .about-content h2 {
        font-size: 28px;
    }
    
    .about-content > p {
        font-size: 16px;
    }
    
    .feature-text h3 {
        font-size: 18px;
    }
    
    .about-simple-image {
        margin-top: 40px;
        max-width: 100%;
    }
}

/* Features Section Styles */
.features-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-image: url('../assets/services-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 0; /* changed from 80px to 0 */
    height: 0; /* changed from 4px to 0 */
    background: none; /* removed gradient */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    padding: 0 40px;
    width: 100%;
    max-width: 1512px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 0 0 45%;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.feature-image img:hover {
    transform: translateY(-10px);
}

.feature-content {
    flex: 0 0 48%;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-content p {
    color: #010101;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .feature-row, .feature-row.reverse {
        flex-direction: column;
        margin-bottom: 60px;
        gap: 30px;
    }
    
    .feature-image, .feature-content {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .feature-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
}

@media (max-width: 1536px) {
    .features-section .section-header,
    .features-section .feature-row {
        max-width: 1280px;
    }
}

@media (max-width: 1280px) {
    .features-section .section-header,
    .features-section .feature-row {
        max-width: 1024px;
    }
}

.signin-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.signin-image {
    width: 55%;
    height: 100%;
    background-image: url('../assets/Image.png');
    background-size: cover;
    background-position: center;
}

.signin-form-container {
    width: 45%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
}

.signin-form {
    width: 500px;
    max-width: 90%;
    padding: 32px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(50px);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.05);
}

.signin-logo {
    text-align: center;
    margin-bottom: 24px;
}

.signin-logo img {
    width: 120px;
    height: auto;
}

.signin-title {
    margin-bottom: 12px;
}

.signin-title h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1c0c37;
    text-align: center;
    margin: 0;
}

.signin-subtitle {
    font-size: 18px;
    color: #666c7e;
    text-align: center;
    margin-bottom: 24px;
}

.signin-tabs {
    display: flex;
    background-color: #eef0f3;
    border-radius: 14px;
    margin-bottom: 24px;
    padding: 5px;
}

.signin-tab {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.signin-tab.active {
    background-color: #371d5f;
    color: white;
}

.signin-tab:not(.active) {
    color: #1c0c37;
}

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

.form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #1c0c37;
}

.form-input-container {
    position: relative;
}

.form-input {
    width: 100%;
    height: 56px;
    background-color: #f9f9fb;
    border: 1px solid #e0e3e9;
    border-radius: 12px;
    padding: 0 44px;
    font-size: 16px;
    color: #666c7e;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #371d5f;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 16px;
    font-size: 24px;
    color: #666c7e;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 16px;
    cursor: pointer;
    color: #666c7e;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox {
    width: 20px;
    height: 20px;
    background-color: #f9f9fb;
    border: 1px solid #e0e3e9;
    border-radius: 6px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.checkbox:checked {
    background-color: #371d5f;
    position: relative;
}

.checkbox:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 0;
    left: 4px;
}

.remember-text {
    font-size: 16px;
    color: #666c7e;
}

.forgot-password {
    font-size: 16px;
    color: #6f7c8f;
    text-decoration: none;
}

.forgot-password:hover {
    color: #371d5f;
}

.signin-button {
    width: 100%;
    height: 54px;
    background-color: #eef0f3;
    border: none;
    border-radius: 12px;
    color: #6f7c8f;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.signin-button:hover {
    background-color: #e0e3e9;
}

.signin-button.primary {
    background-color: #371d5f;
    color: white;
}

.signin-button.primary:hover {
    background-color: #4b2190;
}

.divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #6f7c8f;
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #c7cbd1;
}

.divider span {
    padding: 0 16px;
}

.social-signin {
    display: flex;
    gap: 12px;
}

.social-button {
    flex: 1;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #f9f9fb;
    border: 1px solid #e0e3e9;
    border-radius: 12px;
    color: #1c0c37;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 1px 2px rgba(13, 13, 18, 0.06);
}

.social-button:hover {
    background-color: #f0f0f5;
}

.social-icon {
    font-size: 20px;
}

.fa-google {
    color: #4285F4;
}

.fa-apple {
    color: #000;
}

@media (max-width: 992px) {
    .signin-container {
        flex-direction: column-reverse;
        height: auto;
        min-height: 100vh;
    }
    
    .signin-image,
    .signin-form-container {
        width: 100%;
    }
    
    .signin-image {
        height: 30vh;
    }
    
    .signin-form-container {
        padding: 40px 20px;
        height: auto;
    }
}

@media (max-width: 576px) {
    .signin-title h1 {
        font-size: 36px;
    }
    
    .signin-subtitle {
        font-size: 16px;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .forgot-password {
        align-self: flex-end;
    }
    
    .social-signin {
        flex-direction: column;
    }
    
    .signin-form {
        padding: 24px 16px;
    }
}

/* Dashboard Link Styles */
.dashboard-link {
    display: flex;
    align-items: center;
    color: #371d5f;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.dashboard-link i {
    margin-right: 5px;
    font-size: 16px;
}

.dashboard-link:hover {
    color: #4b2190;
}

@media (max-width: 992px) {
    .dashboard-link {
        display: none;
    }
}

/* Story Hero Section */
.story-hero {
    position: relative;
    padding: 160px 0px 0 80px;
    text-align: center;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 75%; 
    background: url('../assets/story-bg.png') no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    z-index: 1;
    
}

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

.hero-tag {
    display: inline-block;
    background: rgba(99, 55, 235, 0.2);
    color: #BB96FF;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.story-hero h1 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: url('../assets/services-bg.png');
    background-size: 150% auto;
    background-position: center bottom;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.2);
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
}

.story-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.dashboard-image {
    max-width: 1000px;
    margin: 30px auto 0;
    position: relative;
    padding: 0 20px;
    z-index: 3; /* Ensure the dashboard is above the gradient */
}

.dashboard-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive styles for story hero section */
@media (max-width: 992px) {
    .story-hero h1 {
        font-size: 36px;
        background: url('../assets/services-bg.png');
        background-size: 150% auto;
        background-position: center bottom;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.2);
        filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
    }
    
    .story-hero p {
        font-size: 16px;
    }
    
    .hero-gradient-bg {
        height: 60%; /* Updated to use percentage instead of fixed height */
    }
}

@media (max-width: 768px) {
    .story-hero {
        padding: 100px 0 50px;
    }
    
    .story-hero h1 {
        font-size: 30px;
        background: url('../assets/services-bg.png');
        background-size: 150% auto;
        background-position: center bottom;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.2);
        filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
    }
    
    .story-hero p {
        font-size: 15px;
    }
    
    .hero-gradient-bg {
        height: 60%; /* Updated to use percentage instead of fixed height */
    }
}

@media (max-width: 576px) {
    .story-hero {
        padding: 80px 0 40px;
    }
    
    .hero-tag {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
    
    .story-hero h1 {
        font-size: 24px;
        margin-bottom: 16px;
        background: url('../assets/services-bg.png');
        background-size: 150% auto;
        background-position: center bottom;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.2);
        filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
    }
    
    .story-hero p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .hero-gradient-bg {
        height: 60%; /* Updated to use percentage instead of fixed height */
    }
    
    .dashboard-image {
        padding: 0 10px;
        margin-top: 20px;
    }
}

.ai-chatbot-solutions {
    display: inline-block;
    background: #4e219c;
    padding: 12px 24px;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.ai-chatbot-solutions span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.5px;
}

.feature-text h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.about-tag {
    display: inline-block;
    background: #4e219c;
    padding: 12px 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.5px;
}

.feature-icon img {
    width: 100%;
    height: auto;
}

.about-content h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 40px;
}

/* Solutions Section */
.solutions-section {
    background-color: #0a061e;
    padding: 100px 0;
    text-align: center;
    margin: 0 auto;
    max-width: 1512px;
}

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

.solutions-section h2 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
}

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

.solutions-intro {
    max-width: 800px;
    margin-bottom: 60px;
}

.solutions-intro h3 {
    color: #BB96FF;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.solutions-intro p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
}

.solutions-intro strong {
    color: #ffffff;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
    text-align: left;
}

.solution-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.solution-divider {
    width: 80px;
    height: .5px;
    background-color: #ffffff;
    margin: 15px 0;
}

.solution-item.intro-item {
    background-color: transparent;
    padding-left: 0;
    min-height: auto;
}

.solution-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.solution-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.solution-item h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}

.solution-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.5;
    margin-top: 0;
}

@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto;
    }
    
    .solutions-section h2 {
        font-size: 36px;
    }
    
    .intro-item h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 70px 0;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .solutions-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .solution-item.intro-item {
        padding: 30px;
        text-align: center;
    }
    
    .intro-item h3 {
        font-size: 22px;
    }
    
    .intro-item p {
        font-size: 16px;
    }
}

.intro-item h3 {
    color: #BB96FF;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.intro-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
}

.intro-item strong {
    color: #ffffff;
}

.solution-item:hover:not(.intro-item) {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(78, 33, 156, 0.2);
}

/* Animations for Our Story Page */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero animations */
.ai-chatbot-solutions {
    animation: fadeInDown 0.6s ease-out forwards;
}

.story-hero h1 {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.story-hero p {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.dashboard-image {
    animation: scaleIn 1s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* About section animations */
.about-tag {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.about-content h2 {
    animation: fadeInLeft 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.about-content > p {
    animation: fadeInLeft 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.about-feature {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.about-feature:nth-child(1) {
    animation-delay: 0.4s;
}

.about-feature:nth-child(2) {
    animation-delay: 0.6s;
}

.about-feature:nth-child(3) {
    animation-delay: 0.8s;
}

.about-simple-image {
    animation: fadeInRight 0.8s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

/* Solutions section animations */
.solutions-section h2 {
    animation: fadeInUp 0.8s ease-out forwards;
}

.solution-item.intro-item {
    animation: fadeInLeft 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.solution-item:not(.intro-item) {
    animation: scaleIn 0.8s ease-out forwards;
    opacity: 0;
}

.solution-item:nth-child(2) {
    animation-delay: 0.3s;
}

.solution-item:nth-child(3) {
    animation-delay: 0.4s;
}

.solution-item:nth-child(4) {
    animation-delay: 0.5s;
}

.solution-item:nth-child(5) {
    animation-delay: 0.6s;
}

.solution-item:nth-child(6) {
    animation-delay: 0.7s;
}

/* CTA section animations */
.cta-section {
    animation: scaleIn 0.8s ease-out forwards;
}

.cta-content h2 {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.cta-content p {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.cta-buttons {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.cta-image {
    animation: fadeInRight 0.8s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

/* Add fadeInDown animation for completeness */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chatbot Showcase Section */
.chatbot-showcase {
    position: relative;
    width: 100vw;
    margin: 80px 0;
    padding: 0;
    background-color: #18132a;
    overflow: hidden;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.chatbot-header {
    text-align: center;
    padding: 60px 0 30px;
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
}

.chatbot-header h2 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    animation: fadeInUp 0.8s ease-out forwards;
    max-width: 900px;
    margin: 0 auto;
}

.chatbot-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 1512px;
    margin: 0 auto;
    margin-bottom: 100px;

}

.chatbot-content {
    position: absolute;
    top: 0;
    left: 0;
    padding: 40px 60px;
    max-width: 45%;
    z-index: 2;
    border-radius: 0 0 16px 0;
}

.chatbot-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    animation: fadeInLeft 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.btn-get-touch {
    display: inline-block;
    background: linear-gradient(to right, #e2ddd2, #80737d);
    color: #090117;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeInLeft 0.8s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
    margin-top: 15px;
}

.btn-get-touch:hover {
    background-color: #5e2ebb;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.chatbot-images {
    width: 100%;
    position: relative;
    z-index: 1;
}

.chatbot-main-image {
    width: 100%;
    height: auto;
    display: block;
    animation: fadeInRight 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.chatbot-decade {
    position: relative;
    padding: 18px 40px;
    z-index: 3;
    margin-top: -150px;
    margin-bottom: 20px;
    margin-right: 200px;
    border-radius: 8px;
    align-self: flex-end;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
    width: fit-content;
}

.chatbot-decade h3 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .chatbot-content {
        padding: 30px 40px;
        max-width: 50%;
    }
    
    .chatbot-header h2 {
        font-size: 34px;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .chatbot-content {
        position: relative;
        max-width: 100%;
        padding: 30px;
        border-radius: 0;
    }
    
    .chatbot-wrapper {
        flex-direction: column;
    }
    
    .chatbot-decade {
        float: none;
        margin-right: 0;
        text-align: center;
        margin-top: 0;
        margin-bottom: 30px;
        padding: 12px 30px;
    }
}

@media (max-width: 768px) {
    .chatbot-header h2 {
        font-size: 28px;
    }
    
    .chatbot-content p {
        font-size: 16px;
    }
    
    .chatbot-decade h3 {
        font-size: 16px;
    }
}



.metric {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.metric-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    margin-right: 10px;
}

.quick-start {
    background-color: #8e44ad;
}

.client-sat {
    background-color: #3498db;
}

.speed {
    background-color: #9b59b6;
}

.retention {
    background-color: #e74c3c;
}

.reviews {
    background-color: #dbc6f5;
}

.metric-name {
    font-size: 14px;
    color: #555;
    width: 150px;
}

.metric-bar {
    height: 5px;
    background-color: #eee;
    flex: 1;
    border-radius: 3px;
    margin: 0 10px;
    position: relative;
}

.metric-bar::before {
    content: "";
    position: absolute;
    height: 100%;
    background-color: #6c2de8;
    border-radius: 3px;
}

.quick-start + .metric-name + .metric-bar::before {
    width: 19%;
}

.client-sat + .metric-name + .metric-bar::before {
    width: 22%;
}

.speed + .metric-name + .metric-bar::before {
    width: 46%;
}

.retention + .metric-name + .metric-bar::before {
    width: 22%;
}

.reviews + .metric-name + .metric-bar::before {
    width: 11%;
}

.metric-percentage {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: right;
    width: 30px;
}

.team-performance-details {
    display: flex;
    justify-content: space-between;
}

.performance-note {
    background-color: #f8f8fc;
    padding: 10px 15px;
    border-radius: 6px;
}

.performance-note h4 {
    font-size: 14px;
    color: #555;
    margin: 0;
    font-weight: 600;
}

.performance-note.highlight {
    background-color: #f0eaff;
    border-left: 4px solid #6c2de8;
}

.team-members-list {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.team-members-list h3 {
    font-size: 18px;
    font-weight: 600;
    color: #444;
    margin-top: 0;
    margin-bottom: 20px;
}

.team-table {
    width: 100%;
    border-collapse: collapse;
}

.table-header {
    display: flex;
    background-color: #f8f8fc;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 12px 0;
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.table-row {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.table-cell {
    flex: 1;
    padding: 0 10px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
}

.action-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #777;
    cursor: pointer;
    transform: rotate(90deg);
}

@media (max-width: 1200px) {
    .team-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .team-performance {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .team-stats {
        grid-template-columns: 1fr;
    }
    
    .team-performance {
        grid-column: span 1;
    }
    
    .team-table {
        overflow-x: auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .team-management-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .add-member-btn {
        margin-top: 15px;
    }
    
    .performance-chart {
        flex-direction: column;
    }
    
    .performance-metrics {
        margin-left: 0;
        margin-top: 20px;
        width: 100%;
    }
}

.chatbot-bottom {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.chatbot-images {
    width: 100%;
    position: relative;
    z-index: 1;
}

.chatbot-main-image {
    width: 100%;
    height: auto;
    display: block;
    animation: fadeInRight 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* CEO Message Section */
.ceo-message-section {
    padding: 100px 20px;
    background-color: #0a061e;
    position: relative;
    overflow: hidden;
}

.ceo-message-container {
    display: flex;
    max-width: 1512px;
    margin: 0 auto;
    align-items: center;
    gap: 80px;

}

.ceo-message-image {
    flex: 0 0 40%;
}

.ceo-message-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.ceo-message-content {
    flex: 0 0 55%;
}

.ceo-tag {
    display: inline-block;
    background: linear-gradient(to right, #e2ddd2, #80737d);
    color: #0a061e;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-style: italic;
}

.ceo-message-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

.ceo-message-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ceo-signature {
    font-style: italic;
    margin-top: 30px;
}

.ceo-name {
    font-weight: 700;
}

@media (max-width: 1024px) {
    .ceo-message-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .ceo-message-image {
        flex: 0 0 100%;
    }
    
    .ceo-message-content {
        flex: 0 0 100%;
    }
    
    .ceo-message-content h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .ceo-message-section {
        padding: 70px 20px;
    }
    
    .ceo-message-content h2 {
        font-size: 2rem;
    }
    
    .ceo-message-content p {
        font-size: 1rem;
    }
    
    .ceo-message-image img {
        max-width: 350px;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
}

/* Different animation delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

.delay-700 {
    transition-delay: 0.7s;
}

.delay-800 {
    transition-delay: 0.8s;
}

.delay-900 {
    transition-delay: 0.9s;
}

.delay-1000 {
    transition-delay: 1s;
}
