@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-color: #0a0a12;
    --dark-bg: #080810;
    --card-bg: rgba(20, 20, 35, 0.3);
    --text-color: #ffffff;
    --primary: #e8237c;
    --secondary: #7000ff;
    --accent: #ff3a8c;
    --highlight: #00f5d4;
    --blur-size: 80px;
}

body {
    background: linear-gradient(135deg, rgb(31, 1, 89), rgb(31, 1, 89));
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
}

.hero-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    /* background: linear-gradient(to top, var(--bg-color), transparent); */
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(var(--blur-size));
    mix-blend-mode: screen;
    opacity: 0.8;
    z-index: 0;
    will-change: transform, opacity;
}

.blob-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center, rgba(50, 69, 255, 0.7), rgba(50, 69, 255, 0) 70%);
    top: -20%;
    right: -10%;
    animation: blobFloat 25s ease-in-out infinite alternate;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.7), rgba(112, 0, 255, 0) 70%);
    bottom: -15%;
    left: -5%;
    animation: blobFloat 30s ease-in-out 2s infinite alternate-reverse;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(255, 58, 140, 0.5), rgba(255, 58, 140, 0) 70%);
    top: 50%;
    left: 25%;
    animation: blobFloat 20s ease-in-out 1s infinite alternate;
}

.blob-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at center, rgba(0, 245, 212, 0.5), rgba(0, 245, 212, 0) 70%);
    top: 30%;
    right: 25%;
    animation: blobFloat 22s ease-in-out 3s infinite alternate-reverse;
}

/* Noise texture overlay */
.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence baseFrequency='0.9' seed='0'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.035;
    z-index: 10;
    pointer-events: none;
}

/* Enhanced 3D animated grid */
.grid-container {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    transform-style: preserve-3d;
    perspective: 1000px;
    z-index: 0;
}

.grid {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotateX(60deg) rotateZ(0deg);
    background-size: 60px 60px;
    background-image:
        radial-gradient(circle at 30px 30px, rgba(255, 255, 255, 0.05) 2px, transparent 0px);
    animation: gridMove 60s linear infinite;
    opacity: 0.5;
}

/* Main Content Area */
.hero-content-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
    padding: 80px 0;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    padding: 0;
    position: relative;
    margin-top: 100px;
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.17, 0.67, 0.3, 0.98) forwards 0.2s;
}

.badge-container {
    position: relative;
    display: inline-block;
}

.badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    border: 1px solid rgba(50, 69, 255, 0.3);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 300% 300%;
    border-radius: 50px;
    z-index: -1;
    animation: gradientMove 4s linear infinite;
    opacity: 0.3;
}

.badge-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 30px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulseDot 3s infinite;
}

.dot-1 {
    background: var(--primary);
    animation-delay: 0s;
}

.dot-2 {
    background: var(--secondary);
    animation-delay: 0.5s;
}

.dot-3 {
    background: var(--accent);
    animation-delay: 1s;
}

/* Main Hero Content */
.hero-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    /* align-items: center; */
}

/* Text Content */
.hero-text {
    position: relative;
    z-index: 5;
}

.hero-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.hero-title-wrapper {
    overflow: hidden;
    position: relative;
}

.hero-title-line {
    display: block;
    transform: translateY(100%);
    opacity: 0;
    animation: slideUp 0.9s cubic-bezier(0.17, 0.67, 0.3, 0.98) forwards;
    margin-bottom: 10px;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.highlight {
    background: var(--primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    opacity: 0.3;
    border-radius: 3px;
}

.hero-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.17, 0.67, 0.3, 0.98) forwards 0.6s;
}

/* Enhanced Benefits Section */
.benefits-container {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.17, 0.67, 0.3, 0.98) forwards 0.8s;
}

.benefits-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.benefits-title::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin-right: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-item {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.benefit-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: 0 auto;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--primary));
    color: var(--text-color);
    border: none;
    box-shadow: 0 10px 25px rgba(50, 69, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(50, 69, 255, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.btn-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Enhanced Wireframe Display */
.wireframe-display {
    position: relative;
    z-index: 3;
}

.wireframe-canvas {
    position: relative;
    width: 100%;
    height: 600px;
    perspective: 2000px;
    transform-style: preserve-3d;
}

/* Wireframe Components */
.wireframe-component {
    position: absolute;
    border-radius: 20px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transform-style: preserve-3d;
    overflow: hidden;
    opacity: 0;
    z-index: 2;
}

/* Main UI (Desktop) */
.main-ui {
    width: 500px;
    height: 350px;
    top: 120px;
    left: 50%;
    transform: translateX(-55%) rotateY(-20deg) rotateX(10deg) rotateZ(-5deg);
    animation: fadeScaleMain 1s cubic-bezier(0.17, 0.67, 0.3, 0.98) forwards 0.5s;
    z-index: 3;
}

/* Components */
.ui-component {
    position: absolute;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    z-index: 4;
}

.component-1 {
    width: 200px;
    height: 160px;
    top: 50px;
    right: -30px;
    transform: rotateY(15deg) rotateX(-5deg) rotateZ(5deg);
    animation: fadeComponent 0.8s cubic-bezier(0.17, 0.67, 0.3, 0.98) forwards 1.2s;
}

.component-2 {
    width: 180px;
    height: 140px;
    bottom: 50px;
    right: 0px;
    transform: rotateY(15deg) rotateX(5deg) rotateZ(-2deg);
    animation: fadeComponent 0.8s cubic-bezier(0.17, 0.67, 0.3, 0.98) forwards 1.4s;
}

.component-3 {
    width: 160px;
    height: 240px;
    top: 80px;
    left: -40px;
    transform: rotateY(-15deg) rotateX(5deg) rotateZ(2deg);
    animation: fadeComponent 0.8s cubic-bezier(0.17, 0.67, 0.3, 0.98) forwards 1.6s;
}

/* UI Content */
.ui-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    overflow: hidden;
}

/* Main UI Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.ui-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.ui-logo {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.ui-nav {
    display: flex;
    gap: 15px;
}

.nav-items {
    width: 40px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.ui-hero {
    display: flex;
    gap: 20px;
    height: 120px;
}

.ui-hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ui-heading {
    width: 80%;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
}

.ui-text {
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.ui-button {
    width: 120px;
    height: 30px;
    background: #e4227a;
    border-radius: 8px;
}

.ui-hero-right {
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.ui-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    flex: 1;
}

.grid-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.grid-title {
    width: 70%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.grid-desc {
    width: 90%;
    height: 50px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 5px;
}

/* Component content */
.component-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    padding: 15px;
}

.comp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
}

.comp-title {
    width: 70px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.comp-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.comp-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comp-item {
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 5px;
}

.comp-image {
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

/* Mobile UI */
.mobile-component {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    padding: 15px;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 20px;
}

.mobile-logo {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menus {
    width: 20px;
    height: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-line {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.5px;
}

.mobile-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-block {
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.mobile-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-item {
    width: 100%;
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

/* Animated Connection Lines */
.connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connection-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.8s;
}

/* Animated Elements */
.animated-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.animated-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    animation: floatElement 20s ease-in-out infinite alternate, fadeIn 0.5s ease forwards;
}

.element-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 2s, 2s;
}

.element-2 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    right: 5%;
    animation-delay: 2.2s, 2.2s;
}

.element-3 {
    width: 40px;
    height: 40px;
    top: 10%;
    right: 15%;
    animation-delay: 2.4s, 2.4s;
}

.element-4 {
    width: 50px;
    height: 50px;
    bottom: 25%;
    left: 15%;
    animation-delay: 2.6s, 2.6s;
}

/* Animation Keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeScaleMain {
    from {
        opacity: 0;
        transform: translateX(-55%) rotateY(-20deg) rotateX(10deg) rotateZ(-5deg) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(-55%) rotateY(-20deg) rotateX(10deg) rotateZ(-5deg) scale(1);
    }
}

@keyframes fadeComponent {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-20px, -20px) scale(1.05);
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 60px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.5;
    }
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatElement {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-20px) rotate(var(--rotate, 5deg));
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        padding: 0 30px;
    }

    .hero-main {
        gap: 50px;
    }

    .main-ui {
        width: 450px;
        height: 320px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-main {
        grid-template-columns: 1fr;
    }

    .hero-text {
        order: 1;
    }

    .wireframe-display {
        order: 2;
    }

    .wireframe-canvas {
        height: 500px;
    }

    .main-ui {
        left: 50%;
        top: 100px;
        transform: translateX(-50%) rotateY(-5deg) rotateX(5deg) rotateZ(0deg);
    }

    .component-1 {
        right: 20px;
    }

    .component-3 {
        left: 20px;
    }

    .component-2 {
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        padding: 60px 0;
    }

    .hero-header {
        margin-bottom: 50px;
    }

    .hero-title {
        font-size: clamp(1.5rem, 4vw, 3.5rem);
    }

    .benefits-grid {
        gap: 15px;
    }

    .wireframe-canvas {
        height: 400px;
    }

    .main-ui {
        width: 90%;
        max-width: 400px;
        height: 280px;
    }

    .component-1,
    .component-2 {
        display: none;
    }

    .component-3 {
        width: 120px;
        height: 200px;
        top: 50px;
        left: 10px;
    }

    .animated-element {
        display: none;
    }

    .cta-buttons {
        flex-direction: row;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 0 20px;
        margin-top: 50px;
    }

    .hero-description {
        font-size: 14px;
    }

    .wireframe-canvas {
        height: 350px;
    }

    .main-ui {
        height: 250px;
    }

    .component-3 {
        display: none;
    }

    .badge-dots {
        display: none;
    }
}


.services-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--dark-bg);
    overflow: hidden;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
    margin-top: 15px;
}

.section-title-line {
    display: block;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Services Cards Grid */
.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Service Card */
.service-card {
    height: 100%;
    perspective: 1000px;
}

.service-card-inner {
    position: relative;
    background: rgba(20, 20, 35, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    z-index: 1;
}

.service-card:hover .service-card-inner {
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-number {
    color: rgba(255, 255, 255, 0.05);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.07);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

/* Service Features */
.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(50, 69, 255, 0.1);
    border-radius: 50%;
    color: var(--primary);
    margin: 0;
}

.feature-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Card Background Blob */
.service-card-blob {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(50, 69, 255, 0.2), rgba(112, 0, 255, 0.05) 70%);
    filter: blur(50px);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.service-card:nth-child(1) .service-card-blob {
    background: radial-gradient(circle at center, rgba(50, 69, 255, 0.2), rgba(50, 69, 255, 0) 70%);
}

.service-card:nth-child(2) .service-card-blob {
    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.2), rgba(112, 0, 255, 0) 70%);
}

.service-card:nth-child(3) .service-card-blob {
    background: radial-gradient(circle at center, rgba(255, 58, 140, 0.2), rgba(255, 58, 140, 0) 70%);
}

.service-card:nth-child(4) .service-card-blob {
    background: radial-gradient(circle at center, rgba(0, 245, 212, 0.2), rgba(0, 245, 212, 0) 70%);
}

.service-card:hover .service-card-blob {
    opacity: 1;
}

/* Services CTA */
.services-cta {
    position: relative;
    background: rgba(20, 20, 35, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    text-align: center;
}

.services-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.services-cta-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 200px;
    background: linear-gradient(90deg, rgba(50, 69, 255, 0.3), rgba(112, 0, 255, 0.3));
    filter: blur(100px);
    border-radius: 100px;
    z-index: 1;
    opacity: 0.5;
}

/* Floating Dots Animation */
.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.dot-group {
    position: absolute;
    display: flex;
    gap: 15px;
}

.dot-group-1 {
    top: 15%;
    right: 10%;
    animation: floatDots 25s ease-in-out infinite alternate;
}

.dot-group-2 {
    bottom: 20%;
    left: 8%;
    animation: floatDots 20s ease-in-out infinite alternate-reverse;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.5;
}

.dot-group-1 .dot:nth-child(2) {
    background: var(--secondary);
    animation-delay: 0.3s;
}

.dot-group-1 .dot:nth-child(3) {
    background: var(--accent);
    animation-delay: 0.6s;
}

.dot-group-2 .dot:nth-child(1) {
    background: var(--accent);
}

.dot-group-2 .dot:nth-child(2) {
    background: var(--primary);
    animation-delay: 0.3s;
}

.dot-group-2 .dot:nth-child(3) {
    background: var(--highlight);
    animation-delay: 0.6s;
}

.dot {
    animation: pulseDot 3s infinite;
}

@keyframes floatDots {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-20px, 20px) rotate(5deg);
    }
}

/* Animation Classes */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 100px 0;
    }

    .services-header {
        margin-bottom: 60px;
    }

    .services-cta {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .services-cards {
        gap: 20px;
        margin-bottom: 60px;
    }

    .service-card-inner {
        padding: 30px 25px;
    }

    .services-cta {
        padding: 40px 30px;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .services-container {
        padding: 0 20px;
    }

    .services-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 14px !important;
    }

    .service-card-inner {
        padding: 25px 20px;
    }

    .service-number {
        font-size: 3rem;
        top: 15px;
        right: 20px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .services-cta {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .cta-text {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}


.testimonials-section {
    position: relative;
    padding: 120px 0;

    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Testimonials Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Testimonial Card */
.testimonial-card {
    position: relative;
    background: rgba(20, 20, 35, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.featured-testimonial {
    transform: scale(1.05);
    background: rgba(30, 30, 50, 0.4);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.featured-testimonial:hover {
    transform: translateY(-10px) scale(1.05);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.testimonial-quote {
    margin-bottom: 20px;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    flex: 1;
}

.testimonial-rating {
    margin-top: auto;
}

.star-rating {
    display: flex;
}

.star {
    color: #ffd700;
    font-size: 18px;
    margin-right: 2px;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-color);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
}

.author-position {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Testimonial Background Blob */
.testimonial-blob {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    z-index: -1;
    transition: all 0.6s ease;
}

.testimonial-card:nth-child(1) .testimonial-blob {
    background: radial-gradient(circle at center, rgba(50, 69, 255, 0.8), rgba(50, 69, 255, 0) 70%);
}

.testimonial-card:nth-child(2) .testimonial-blob {
    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.8), rgba(112, 0, 255, 0) 70%);
}

.testimonial-card:nth-child(3) .testimonial-blob {
    background: radial-gradient(circle at center, rgba(255, 58, 140, 0.8), rgba(255, 58, 140, 0) 70%);
}

.testimonial-card:hover .testimonial-blob {
    opacity: 0.2;
}

/* Testimonial Navigation Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 30px;
    border-radius: 10px;
}

.dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.4);
}

/* Background Elements */
.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

/* .circle-1 {
    top: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(50, 69, 255, 0.5), rgba(50, 69, 255, 0) 70%);
}

.circle-2 {
    bottom: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.5), rgba(112, 0, 255, 0) 70%);
} */
.section-title::after {
    display: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonials-container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-testimonial {
        grid-column: span 2;
        transform: scale(1);
    }

    .featured-testimonial:hover {
        transform: translateY(-10px) scale(1);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-testimonial {
        grid-column: auto;
    }

    .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .testimonials-container {
        padding: 0 20px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }
}


.pricing-section {
    position: relative;
    padding: 50px 0 0 0;

    overflow: hidden;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

/* Pricing Toggle */
.pricing-toggle {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 5px;
    margin-top: 20px;
}

.toggle-option {
    padding: 10px 20px;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.toggle-option.active {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 500;
}

.save-badge {
    position: absolute;
    top: -10px;
    right: -15px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

/* Pricing Cards Grid */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Pricing Card */
.pricing-card {
    position: relative;
    height: 100%;
    perspective: 1000px;
}

.pricing-card-inner {
    position: relative;
    background: rgba(20, 20, 35, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
}

.pricing-card:hover .pricing-card-inner {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Popular Plan Styling */
.pricing-card.popular {
    position: relative;
    z-index: 2;
}

.pricing-card.popular .pricing-card-inner {
    border: 1px solid rgba(112, 0, 255, 0.3);
    box-shadow: 0 15px 40px rgba(112, 0, 255, 0.15);
    transform: translateY(-15px) scale(1.03);
}

.pricing-card.popular:hover .pricing-card-inner {
    transform: translateY(-25px) scale(1.03);
    box-shadow: 0 25px 50px rgba(112, 0, 255, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    z-index: 2;
    white-space: nowrap;
}

/* Plan Details */
.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-plan-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
}

.pricing-amount {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 5px;
    opacity: 0.8;
}

.pricing-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.pricing-period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 5px;
}

.pricing-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.pricing-feature.disabled {
    color: rgba(255, 255, 255, 0.4);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    margin-right: 12px;
    color: var(--primary);
}

.pricing-feature.disabled .feature-icon {
    color: rgba(255, 255, 255, 0.4);
}

/* Pricing Button */
.pricing-button {
    padding: 14px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.primary-button {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border: none;
    box-shadow: 0 10px 20px rgba(50, 69, 255, 0.3);
}

.primary-button:hover {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    box-shadow: 0 15px 30px rgba(50, 69, 255, 0.4);
}

/* Pricing Note */
.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 60px;
}

.note-icon {
    flex-shrink: 0;
    margin-top: 3px;
}

.note-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}



/* Background Elements */
.pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.pricing-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-size: 60px 60px;
    background-image:
        radial-gradient(circle at 30px 30px, rgba(255, 255, 255, 0.03) 2px, transparent 0px);
    opacity: 0.3;
    transform: rotate(15deg);
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.pricing-blob-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center, rgba(50, 69, 255, 0.6), rgba(50, 69, 255, 0) 70%);
    top: -20%;
    right: -20%;
}

.pricing-blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.6), rgba(112, 0, 255, 0) 70%);
    bottom: -10%;
    left: -10%;
}

/* Card Background Blob */
.pricing-blob {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    z-index: 0;
    transition: all 0.6s ease;
}

.pricing-card:nth-child(1) .pricing-blob {
    background: radial-gradient(circle at center, rgba(50, 69, 255, 0.4), rgba(50, 69, 255, 0) 70%);
}

.pricing-card:nth-child(2) .pricing-blob {
    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.4), rgba(112, 0, 255, 0) 70%);
}

.pricing-card:nth-child(3) .pricing-blob {
    background: radial-gradient(circle at center, rgba(255, 58, 140, 0.4), rgba(255, 58, 140, 0) 70%);
}

.pricing-card:hover .pricing-blob {
    opacity: 0.2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .pricing-section {
        padding: 100px 0;
    }

    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .pricing-card.popular {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 0;
    }

    .pricing-header {
        margin-bottom: 60px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        grid-column: auto;
        transform: scale(1);
    }

    .pricing-card.popular .pricing-card-inner {
        transform: translateY(-10px);
    }

    .pricing-card.popular:hover .pricing-card-inner {
        transform: translateY(-15px);
    }
}

@media (max-width: 576px) {
    .pricing-container {
        padding: 0 20px;
    }

    .pricing-section {
        padding: 60px 0;
    }

    .pricing-card-inner {
        padding: 30px 20px;
    }

    .pricing-toggle {
        flex-direction: column;
        gap: 15px;
        background: transparent;
        padding: 0;
    }

    .toggle-option {
        width: 100%;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
    }

    .toggle-option.active {
        transform: scale(1.05);
    }

    .save-badge {
        position: static;
        display: inline-block;
        margin-left: 8px;
    }

    .pricing-note {
        padding: 15px;
    }

    .faq-question {
        align-items: flex-start;
    }

    .question-text {
        font-size: 1rem;
        line-height: 1.4;
    }
}

#wireframing {
    background-color: transparent;
    padding: 120px 0 0 0;
    border: none;
}

.services-section {
    padding: 2rem 0;
    background: transparent;
}

.ux-ui_service {
    padding: 50px 0;
}

.ux-ui_service h2 {
    color: #d81c6f;
    font-size: 40px;
    margin: 10px 0;
    position: relative;
}

.ux-ui_service h2::after {
    content: "";
    position: absolute;
    top: 56px;
    left: 50%;
    background-color: #fff;
    height: 2px;
    display: block;
}

/* mobile page vestion  */

.features-section {
    padding: 70px 0 30px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.gradient-text {
    background: linear-gradient(45deg, #e8237c, #e8237c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

#features h2::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: #e8237c;
    border-radius: var(--border-radius-full);
    box-shadow: 0 3px 10px rgba(99, 102, 241, 0.3);
}

.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-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-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-icon {
    font-size: 30px;
    color: white;
}

.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;
}

#features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.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-box:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.feature-box:hover .feature-bg {
    transform: rotate(0deg) scale(1.2);
    opacity: 0.15;
}

/* featured home page  */
section.section-services {
    padding: 0 0;
}

#homePage_version .rowss {
    display: flex;
    flex-wrap: wrap;
}

#homePage_version .colmd3 {
    width: 25%;
    margin-bottom: 25px;
}

#homePage_version .servicecontainer {
    width: 90%;
    margin: 0 auto;
}

.section-services::after {
    right: 86px;
    bottom: 0;
}

.section-services .header-section {
    top: 50px;
}

.badge-container {
    display: block;
}

.platform-tools-section h2 {
    margin-bottom: 0;
    margin-top: 20px;
}

.faqs {
    margin-top: 40px;
}

.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;
}

@media screen and (max-width:768px) {
    .hero-header {
        justify-content: center;
        margin-bottom: 20px;
    }

    .hero-title {
        margin-bottom: 10px;
    }

    .hero-main {
        gap: 0;
    }

    #features h2::after {
        top: 152px;
    }

    #homePage_version .colmd3 {
        width: 50%;
        margin-bottom: 25px;
    }

    .section-services .single-service {
        padding: 10px 10px;
    }

    .section-services .single-service .icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section-services .single-service .circle-before {
        width: 60px;
        height: 60px;
    }

    .section-header {
        margin-bottom: 10px;
    }

    .section-services .header-section {
        top: 11px;
    }

    .pricing-cards {
        margin-bottom: 0;
    }

}
/* .hero_cta {
    width: 50%;
} */
.hero_cta .feature-icon {
    font-size: 30px;
    color: white;
    background: #e8237c;
}
.hero_cta p{
    margin: 10px 0;
}