@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

:root {
    --primary: #e8267e;
    --secondary: #381181;
    --accent: #7c3aed;
    --background: #0f172a;
    --text-light: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
}

body {
    background: linear-gradient(135deg, #1f0159, #1f0159);
    color: var(--text-light);
    overflow-x: hidden;
}



.trusted-by {
    margin-top: 20px;
}

.trusted-text {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 15px;
}

.brand-logos {
    display: flex;
    gap: 30px;
    align-items: center;
}

.brand-logo {
    opacity: 0.5;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    height: 30px;
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.hero-visual {
    position: relative;
    height: 600px;
}

.phone-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 600px;
    background: #111827;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border: 10px solid #e8237c;

}

.phone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, #0f172a, #1e293b);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #1f2937;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.app-ui {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    padding: 40px 20px 15px;
    background: #e8237c;
    backdrop-filter: blur(10px);
}

.app-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    text-align: center;
}

.app-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.app-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
}

.app-card {
    background: rgba(31, 41, 55, 0.5);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
}

.card-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #e8237c, #e8237c);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.card-body {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.app-button {
    background: linear-gradient(45deg, var(--accent), var(--primary));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    margin: 10px 0;
}

.app-nav {
    padding: 15px;
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.nav-item i {
    font-size: 16px;
    margin-bottom: 5px;
}

.nav-item.active {
    color: var(--secondary);
}

.phone-reflections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.reflection {
    position: absolute;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 40px;
}

.reflection-1 {
    top: -5%;
    left: -10%;
    width: 120%;
    height: 40%;
    transform: rotate(-45deg);
    opacity: 0.4;
}

.reflection-2 {
    bottom: -20%;
    right: -10%;
    width: 70%;
    height: 40%;
    transform: rotate(-45deg);
    opacity: 0.2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 20px;
    background: rgba(31, 41, 55, 0.7);
    backdrop-filter: blur(5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    animation: float 6s infinite ease-in-out;
}

.floating-element-1 {
    top: 10%;
    right: -55px;
    width: 240px;
    animation-delay: 0.5s;
}

.floating-element-2 {
    bottom: 45%;
    left: -30px;
    width: 200px;
    animation-delay: 1s;
}

.section-title::after {
    background: #e8237c;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.element-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #e8237c, #e8237c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.element-content {
    flex: 1;
}

.element-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.element-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.floating-notification {
    position: absolute;
    bottom: 100px;
    right: -20px;
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    width: 240px;
    display: flex;
    gap: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideIn 0.5s ease-out forwards, float 5s 1s infinite ease-in-out;
    transform: translateX(100%);
    z-index: 4;
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #e8237c, #e8237c);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.notification-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.code-blocks {
    position: absolute;
    bottom: -30px;
    left: -40px;
    transform: rotate(-10deg);
    z-index: 1;
}

.code-block {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 10px;
    padding: 15px;
    font-family: monospace;
    font-size: 12px;
    color: #a5f3fc;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.code-line {
    display: flex;
    margin-bottom: 5px;
}

.code-line-number {
    color: rgba(255, 255, 255, 0.3);
    width: 25px;
    flex-shrink: 0;
}

.code-keyword {
    color: #c084fc;
}

.code-function {
    color: #38bdf8;
}

.code-string {
    color: #4ade80;
}

.code-comment {
    color: #64748b;
}

.mouse-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.5), transparent);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: screen;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0% {
        top: 10px;
        opacity: 1;
    }

    50% {
        top: 30px;
        opacity: 0.5;
    }

    100% {
        top: 10px;
        opacity: 1;
    }
}

/* Features Section */
.features-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.feature-icon {
    font-size: 30px;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.feature-detail i {
    color: #e22279;
    font-size: 1.1rem;
}

.feature-detail span {
    font-size: 0.95rem;
    color: var(--text-dim);
}

.feature-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 30px;
    opacity: 0.1;
    transform: rotate(15deg);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-bg {
    transform: rotate(0deg) scale(1.2);
    opacity: 0.15;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #200357, #210359);
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.process-item {
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-item:hover {
    transform: translateY(-10px);
}

.process-item:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.3);
}

.process-number {
    width: 80px;
    height: 80px;
   background: linear-gradient(45deg, #e8237c, #e8237c80);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.process-description {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Technologies Section */
.technologies-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.technology-item {
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.4), rgba(15, 23, 42, 0.4));
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.technology-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.technology-icon {
    width: 60px;
    height: 60px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
}

.technology-item:hover .technology-icon {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    transform: scale(1.1);
}

.technology-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.technology-tag {
    font-size: 0.8rem;
    color: var(--text-dim);
    padding: 3px 10px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 20px;
    margin-top: 10px;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.portfolio-item {
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.4), rgba(15, 23, 42, 0.4));
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.portfolio-image {
    height: 200px;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.9));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-buttons {
    display: flex;
    gap: 10px;
}

.portfolio-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-btn:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

.portfolio-content {
    padding: 20px;
}

.portfolio-category {
    font-size: 0.8rem;
    color: var(--secondary);
    margin-bottom: 10px;
    display: inline-block;
    padding: 3px 10px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 20px;
}

.portfolio-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-description {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 15px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-tag {
    font-size: 0.7rem;
    color: var(--text-dim);
    padding: 3px 10px;
    background: rgba(31, 41, 55, 0.4);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.portfolio-tag:hover {
    background: var(--primary);
    color: white;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(to top, var(--background), #0c1322);
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    margin-top: 60px;
    padding: 0 50px;
}

.testimonial-item {
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.4), rgba(15, 23, 42, 0.4));
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    height: 100%;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: rgba(124, 58, 237, 0.1);
    line-height: 1;
}

.testimonial-content {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.author-rating {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.rating-star {
    color: #fbbf24;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-container {
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.2);
    max-width: 1000px;
    margin: 0 auto;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgdmlld0JveD0iMCAwIDEwMCAxMDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTExIDE4YzMuODY2IDAgNy0zLjEzNCA3LTdzLTMuMTM0LTctNy03LTcgMy4xMzQtNyA3IDMuMTM0IDcgNyA3em00OCAyNWMzLjg2NiAwIDctMy4xMzQgNy03cy0zLjEzNC03LTctNy03IDMuMTM0LTcgNyAzLjEzNCA3IDcgN3ptLTQzLTdjMS42NTcgMCAzLTEuMzQzIDMtM3MtMS4zNDMtMy0zLTMtMyAxLjM0My0zIDMgMS4zNDMgMyAzIDN6bTYzIDMxYzEuNjU3IDAgMy0xLjM0MyAzLTNzLTEuMzQzLTMtMy0zLTMgMS4zNDMtMyAzIDEuMzQzIDMgMyAzek0zNCA5MGMxLjY1NyAwIDMtMS4zNDMgMy0zcy0xLjM0My0zLTMtMy0zIDEuMzQzLTMgMyAxLjM0MyAzIDMgM3ptNTYtNzZjMS42NTcgMCAzLTEuMzQzIDMtM3MtMS4zNDMtMy0zLTMtMyAxLjM0My0zIDMgMS4zNDMgMyAzIDN6TTEyIDg2YzIuMjEgMCA0LTEuNzkgNC00cy0xLjc5LTQtNC00LTQgMS43OS00IDQgMS43OSA0IDQgNHptMjgtNjVjMi4yMSAwIDQtMS43OSA0LTRzLTEuNzktNC00LTQtNCAxLjc5LTQgNCAxLjc5IDQgNCA0em0yMy0xMWMyLjc2IDAgNS0yLjI0IDUtNXMtMi4yNC01LTUtNS01IDIuMjQtNSA1IDIuMjQgNSA1IDV6bS02IDYwYzIuMjEgMCA0LTEuNzkgNC00cy0xLjc5LTQtNC00LTQgMS43OS00IDQgMS43OSA0IDQgNHptMjkgMjJjMi43NiAwIDUtMi4yNCA1LTVzLTIuMjQtNS01LTUtNSAyLjI0LTUgNSAyLjI0IDUgNSA1ek0zMiA2M2MyLjc2IDAgNS0yLjI0IDUtNXMtMi4yNC01LTUtNS01IDIuMjQtNSA1IDIuMjQgNSA1IDV6bTU3LTEzYzIuNzYgMCA1LTIuMjQgNS01cy0yLjI0LTUtNS01LTUgMi4yNC01IDUgMi4yNCA1IDUgNXptLTktMjFjMS4xMDUgMCAyLS44OTUgMi0ycy0uODk1LTItMi0yLTIgLjg5NS0yIDIgLjg5NSAyIDIgMnpNNjAgOTFjMS4xMDUgMCAyLS44OTUgMi0ycy0uODk1LTItMi0yLTIgLjg5NS0yIDIgLjg5NSAyIDIgMnpNMzUgNDFjMS4xMDUgMCAyLS44OTUgMi0ycy0uODk1LTItMi0yLTIgLjg5NS0yIDIgLjg5NSAyIDIgMnpNMTIgNjBjMS4xMDUgMCAyLS44OTUgMi0ycy0uODk1LTItMi0yLTIgLjg5NS0yIDIgLjg5NSAyIDIgMnoiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wMykiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==');
    opacity: 0.5;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-feature i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.cta-feature span {
    font-size: 1rem;
    color: var(--text-dim);
}

.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
}

.cta-orb-1 {
    top: -10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: var(--primary);
    opacity: 0.1;
}

.cta-orb-2 {
    bottom: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: var(--accent);
    opacity: 0.1;
}

/* Footer */
.footer {
    background: #0c1322;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.footer-description {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(31, 41, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    transform: translateY(-5px);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 12px;
}

.footer-link a {
    color: var(--text-dim);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-link a i {
    font-size: 0.8rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(31, 41, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-text {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.footer-newsletter {
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 50px 0 0 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.5);
    color: white;
    font-size: 0.9rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-button {
    background: linear-gradient(45deg, var(--accent), var(--primary));
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 20px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    filter: brightness(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.copyright a {
    color: var(--secondary);
    text-decoration: none;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-link {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--secondary);
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-content {
        padding: 0 40px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }

    .hero-text {
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .trusted-by {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        height: 500px;
        margin-top: 50px;
    }

    .floating-elements,
    .code-blocks {
        display: none;
    }

    .floating-notification {
        display: none;
    }

    .cta-container {
        padding: 40px 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        height: auto;
        padding: 0 20px;
    }

    .hero-badge {
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .brand-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-title {
        font-size: 24px;
    }

    .process-line {
        display: none;
    }

    .cta-feature {
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 19px;
        line-height: 1.7rem;
        margin-bottom: 10px;
    }

    .trusted-by {
        margin-top: 30px;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .features-container,
    .process-grid,
    .portfolio-grid {
        gap: 20px;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-grid {
        gap: 30px;
    }
}


.features-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.features-orb-1 {
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary);
    opacity: 0.1;
}

.features-orb-2 {
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: var(--accent);
    opacity: 0.1;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #e8237c, #e8237ca8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon {
    font-size: 30px;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    color: #21045b;
}

.feature-description {
    font-size: 1rem;
    color: #21045b;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;

}

.feature-detail i {
    color: #e22279;
    font-size: 1.1rem;
}

.feature-detail span {
    font-size: 0.95rem;
    color: #21045b;
}

.feature-box:hover .feature-detail {
    transform: translateX(5px);
}

.feature-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 30px;
    opacity: 0.1;
    transform: rotate(15deg);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-bg {
    transform: rotate(0deg) scale(1.2);
    opacity: 0.15;
}

.features-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
    }

    .feature-box {
        max-width: 400px;
        margin: 0 auto;
    }
}


.process-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #200357, #210359);
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.process-item {
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.process-number {
    width: 70px;
    height: 70px;
   background: linear-gradient(45deg, #e8237c, #e8237c80);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.process-item:hover .process-number {
    transform: scale(1.1) rotate(10deg);
}

.process-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #211261;
}

.process-description {
    font-size: 0.95rem;
    color: #211261;
    line-height: 1.6;
}

.process-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-item:hover::before {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .process-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .process-item {
        padding: 30px 20px;
    }
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .pricing-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-container {
        gap: 20px;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .pricing-note {
        flex-direction: column;
        text-align: center;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 10px;
    }
}

@media (max-width: 576px) {
    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-toggle {
        flex-wrap: wrap;
    }
}

.btnform {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-container h3 {
    text-align: left;
    padding-bottom: 10px;
}

#analysis-form label {
    float: left;
}

.popup-form,
.thank-you-message {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1f2937;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    width: 100%;
    max-width: 400px;
}

.popup-form .form-container,
.thank-you-message {
    text-align: center;
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: #0f172a;
    color: white;
}

.popup-form button,
.thank-you-message button {
    margin-top: 10px;
}

.footer-section {
    opacity: 1;
}
#homePage_version .servicecontainer {
    width: 90%;
    margin: 0 auto;
}
#homePage_version .rowss {
    display: flex;
    flex-wrap: wrap;
}
#homePage_version .colmd3 {
    width: 25%;
    margin-bottom: 25px;
}