﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: #ffffff;
    color: #111827;
}

/* Hero section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient( to bottom, #ffffff, rgba(20, 184, 166, 0.08), #ffffff );
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.blob-teal {
    width: 280px;
    height: 280px;
    background: rgba(45, 212, 191, 0.2);
    top: 80px;
    left: 40px;
}

.blob-coral {
    width: 360px;
    height: 360px;
    background: rgba(251, 146, 60, 0.2);
    top: 160px;
    right: 80px;
}

.blob-lavender {
    width: 320px;
    height: 320px;
    background: rgba(196, 181, 253, 0.2);
    bottom: 80px;
    left: 33%;
}

/* Layout */

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Content */
.content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #99f6e4;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    font-size: 14px;
    width: fit-content;
    color:black;
    font-weight:normal;
}

.title {
    font-size: 88px;
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.title span {
    display: block;
}

.gradient-text {
    background: linear-gradient( to right, #0d9488, #06b6d4, #2563eb );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 200;
    margin-top: 8px;
}

.description {
    font-size: 20px;
    color: #4b5563;
    max-width: 520px;
    line-height: 1.6;
}

/* Buttons */
.actions {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.btn {
    padding: 12px 32px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: #111827;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: #1f2937;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #374151;
}

.btn-secondary:hover {
    background: #f9fafb;
    color: #374151;
}

/* Right visual */
.visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.card {
    position: absolute;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s ease;
}

.card-1 {
    width: 60%;
    height: 160px;
    /*background: linear-gradient(to bottom right, #2dd4bf, #22d3ee);*/
    top: 0;
    right: 0;
    animation: floatTop 3s ease-in-out infinite alternate;
}

.card-1:hover {
    transform: rotate(3deg);
}
@keyframes floatTop {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

.card-2 {
    width: 55%;
    height: 192px;
    /*background: linear-gradient(to bottom right, #fb923c, #ec4899);*/
    bottom: 80px;
    left: 0;
    animation: floatTop 3s ease-in-out infinite alternate;
}

.card-2:hover {
    transform: rotate(-3deg);
}

.card-3 {
    width: 50%;
    height: 150px;
    /*background: linear-gradient(to bottom right, #c4b5fd, #a855f7);*/
    top: 33%;
    right: 25%;
    animation: floatTop 3s ease-in-out infinite alternate;
}

.card-3:hover {
    transform: scale(1.05);
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: #0d9488;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .visual {
        display: none;
    }

    .title {
        font-size: 64px;
    }
}




/*Section 2*/

.products {
    background: #ffffff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cardDesign {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cardDesign:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cardDesign h3 {
    font-size: 24px;
    font-weight: 700;
}

.cardDesign p {
    color: #374151;
    line-height: 1.6;
}

.cardDesign ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    color: #374151;
    margin:0;
    padding:0;
}

.card-bg {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    opacity: 0.1;
}

.cardMindSpace {
    background: linear-gradient(to bottom right, #eff6ff, #ecfeff);
}

.icon.blue,
.card-bg.blue {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.cardMindMail {
    background: linear-gradient(to bottom right, #faf5ff, #fdf2f8);
}

.icon.purple,
.card-bg.purple {
    background: linear-gradient(to bottom right, #8b5cf6, #ec4899);
}

.cardMindWeb {
    background: linear-gradient(to bottom right, #eef2ff, #faf5ff);
}

.icon.indigo,
.card-bg.indigo {
    background: linear-gradient(to bottom right, #6366f1, #8b5cf6);
}

/* Responsive */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.divider {
    width: 160px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(to right, #2472fb, #71c7fb, #34d399);
}

.solutionsTitle{
    font-size:3rem;
}
.description {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.7;
    max-width: 80%;
}


/*End Section 2*/

/*Section 3*/
.features {
    padding: 50px 0;
    background:#f4f4f4;
}


.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-title {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(to right, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.features-subtitle {
    font-size: 20px;
    color: #4b5563;
    max-width: 720px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.feature-card:hover .icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: #4b5563;
    line-height: 1.6;
}

.hover-bg {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover .hover-bg {
    opacity: 0.1;
}

.icon.blue,
.hover-bg.blue {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.icon.yellow,
.hover-bg.yellow {
    background: linear-gradient(to bottom right, #f59e0b, #f97316);
}

.icon.purple,
.hover-bg.purple {
    background: linear-gradient(to bottom right, #8b5cf6, #ec4899);
}

.icon.green,
.hover-bg.green {
    background: linear-gradient(to bottom right, #22c55e, #10b981);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-title {
        font-size: 42px;
    }
}

/*End Section 3*/



/*Section 4*/
.cta-section {
    padding: 5rem 1rem;
    display: flex;
    justify-content: center;
}

.cta-container {
    max-width: 80%;
    width: 100%;
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: #f4f4f4;
    z-index: 1;
    opacity: 0.1
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAxMCAwIEwgMCAwIDAgMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS1vcGFjaXR5PSIwLjEiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+') no-repeat center;
    z-index: 2;
}

.cta-content {
    position: relative;
    padding: 3rem;
    z-index: 3;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media(min-width: 600px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary1 {
    background-color: #fff;
    color: #06b6d4;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-primary1:hover {
    background-color: white;
    color:black;
}

.btn1 svg {
    width: 20px;
    height: 20px;
}

/*End Section 4*/