:root {
    --primary: #FFFFFF;
    --secondary: #970EFA;
    --tertiary: #2e0252;
    --accent: #050208;
    --white: #FFFFFF;
    --black: #000000;
    --text-primary: #E3F4F6;
    --text-secondary: #ACB6BF;
    --highlight: #9747FF;
    --cyan: #75E6FF;
    --magenta: #970EFA;
    --light-background: #D8ECF0;
    --gray: #E3F4F6;
    --background: #000000;
    --background-secondary: #1a1a1a;
    --magenta-dark: #7c4dff;
    --magenta-darker: #2a104d;
    --magenta-darker-hover: #3a176a;
}

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

body {
    min-height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: #fff;
    padding: 40px 20px;
    padding-top: 80px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
}

.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;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

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

.nav-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-logo span {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover, .nav-link:focus {
    color: var(--magenta);
}

.nav-button {
    background: var(--magenta);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.nav-button:hover {
    background: var(--magenta-dark);
}

/* Hero Section */
.hero-section {
    width: 100%;
    padding: 80px 0;
    /* margin-bottom: 60px; */
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #fff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.2s forwards;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
    margin-top: 10px;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.4s forwards;
}

.hero-buttons {
    display: flex;
    margin-bottom: 40px;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.6s forwards;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-button {
    background: var(--magenta-darker);
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.primary-button:hover {
    background: var(--magenta-darker-hover);
    transform: translateY(-2px);
}

.secondary-button {
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--magenta);
    transition: all 0.2s;
}

.secondary-button:hover {
    background: var(--magenta);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--magenta);
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
}

.hero-image {
    flex: 1;
}

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

/* Features Section */
.features-section {
    width: 100%;
    padding: 10px 0;
    text-align: center;
}

.features-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 16px;
    transition: transform 0.2s;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(45deg, var(--magenta) 0%, var(--magenta-dark) 100%);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: scaleIn 0.8s ease-out 0.2s forwards;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.4s forwards;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Hide Learn More button specifically in CTA section */
.cta-section .secondary-button {
    display: none;
}

/* Footer */
.footer {
    width: 100%;
    background: var(--background-secondary);
    padding: 40px 0;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
}

.footer-section h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-section p a {
    color: var(--magenta);
    text-decoration: none;
}

.footer-section p a:hover {
    text-decoration: underline;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: var(--magenta);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--primary);
}

.social-links a i {
    font-size: 20px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-secondary);
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--magenta);
}

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

.nav-dropdown-button {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
}

.nav-dropdown-button:hover {
    color: var(--magenta);
}

.nav-dropdown-button svg {
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-button svg {
    transform: rotate(180deg);
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
}

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

.nav-dropdown-link {
    display: block;
    padding: 8px 16px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.2s;
}

/* Trusted Section */
.trusted-section {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, var(--magenta) 0%, var(--magenta-dark) 100%);
}

.trusted-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-logo {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.trusted-logo:hover {
    opacity: 1;
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 40px;
    }

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

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

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

    .nav-link {
        font-size: 18px;
    }

    .nav-button {
        width: 100%;
        text-align: center;
    }

    .hamburger-menu {
        display: flex;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-dropdown-content {
        position: static;
        background: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-dropdown.active .nav-dropdown-content {
        display: block;
    }

    .nav-dropdown-link {
        padding: 12px 0;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .primary-button, .secondary-button {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .services-section {
        padding: 60px 20px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .features-section h2 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 28px;
    }
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        transform: translateY(30px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

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

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

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

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

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

.animate-scale {
    animation: scaleIn 0.8s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Apply animations to existing elements */
.hero-content h1 {
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.2s forwards;
}

.hero-content p {
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.4s forwards;
}

.hero-buttons {
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.6s forwards;
}

.feature-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-section {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

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

/* Add animation to social media icons */
.social-links a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--primary);
}

/* Add animation to buttons */
.btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Add animation to feature icons */
.feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Add animation to team member cards */
.team-member {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
}

.team-member.visible {
    opacity: 1;
    transform: translateY(0);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Add animation to testimonial cards */
.testimonial-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Use Cases Page Styles */
.use-case-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.use-case-section.intro-section {
    padding-top: 80px;
    padding-bottom: 60px;
    text-align: center;
    border-bottom: none;
}

.use-case-section.intro-section .use-case-content p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.use-case-section:last-of-type {
    border-bottom: none;
}

.use-case-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.use-case-section.intro-section .container {
    grid-template-columns: 1fr;
}

.use-case-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--magenta);
}

.use-case-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary);
}

.use-case-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.use-case-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.use-case-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.use-case-content ul li {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.use-case-content ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--magenta);
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 1.2rem;
}

.use-case-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    object-fit: cover;
    max-height: 450px;
}

/* Services Section on Use Case Page */
.services-section {
    width: 100%;
    padding: 100px 0 100px 0;
    background-color: var(--accent);
    text-align: center;
}

.services-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary);
}

.services-section > .container > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    width: 100%;
    padding: 0 32px;
    margin-top: 30px;
}

.service-card {
    background-color: var(--background-secondary);
    padding: 48px 32px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    z-index: 2;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--magenta);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 0;
}

/* New styles for service icons */
.service-icon {
    font-size: 3em;
    color: var(--magenta);
    margin-bottom: 25px;
    display: block;
}

.learn-more {
    display: inline-block;
    background-color: var(--magenta);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.learn-more::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 10px;
    transition: transform 0.2s ease;
}

.learn-more:hover {
    color: var(--magenta-dark);
    transform: translateX(2px);
}

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

/* Responsive adjustments for Use Case Page */
@media (max-width: 992px) {
    .use-case-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .use-case-image {
        margin-top: 30px;
        order: -1;
    }

    .use-case-content ul {
        display: inline-block;
        text-align: left;
    }

    .use-case-content ul li {
        padding-left: 30px;
    }
}

@media (max-width: 768px) {
    .use-case-section {
        padding: 40px 0;
    }
    .use-case-section.intro-section {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    .use-case-content h1 {
        font-size: 2.8rem;
    }
    .use-case-content h2, .services-section h2 {
        font-size: 2rem;
    }
    .use-case-content h3, .service-card h3 {
        font-size: 1.4rem;
    }
    .services-section {
        padding: 60px 20px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        place-items: center;
    }
}