.tools-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tool-box {

    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tool-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(124, 58, 237, 0.3);
}

.tool-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #d81c6f, #1f0159);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
    position: relative;
    z-index: 1;
}

.tool-icon {
    font-size: 2.5rem;
    color: white;
}

.tool-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    /* color: white; */
}

.tool-description {
    font-size: 0.95rem;
    /* color: var(--text-dim); */
    line-height: 1.6;
}

.tool-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.tool-box:hover .tool-hover-effect {
    opacity: 1;
}


:root {

    --background: #0f172a;
    --text-light: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
}

body {
    background: linear-gradient(135deg, rgb(31, 1, 89), rgb(31, 1, 89));
    color: var(--text-light);
    overflow-x: hidden;
}

/* 
.hero-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgdHlwZT0iZnJhY3RhbE5vaXNlIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGQ9Ik0wIDBoMzAwdjMwMEgweiIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIuMDUiLz48L3N2Zz4=');
    opacity: 0.4;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
}

.glow-orb-1 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--accent);
    opacity: 0.3;
}

.glow-orb-2 {
    bottom: -200px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: var(--primary);
    opacity: 0.2;
}

.glow-orb-3 {
    top: 40%;
    left: 60%;
    width: 300px;
    height: 300px;
    background: var(--secondary);
    opacity: 0.15;
} */

.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 60px;
    padding-top: 130px;
}

.content-wrapper {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
    padding-top: 50px;
}

/* .hero-text {
    max-width: 600px;
} */

.hero-badge {
    display: inline-block;
    background: #e8237c;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-badge:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.hero-title {
    font-size: 3rem;
    line-height: 60px;
    margin-bottom: 30px;
    font-weight: 800;
    position: relative;
    text-align: center;
}

.gradient-text {
    background: #e8237c;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.underline-effect {
    position: relative;
}

.underline-effect:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    opacity: 0.3;
    z-index: -1;
    transform: skew(-15deg);
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    width: 100%;
}

div#fash {
    width: 375px;
}

div#gurgaon {
    width: 375px;
    position: absolute;
    right: 0;
    top: 0;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    justify-content: center;
}

/* .btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
} */

/* .btn-primary {
    background: linear-gradient(45deg, var(--accent), var(--primary));
    color: white;
} */

/* .btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
} */

.btn-primary:hover:before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(45deg, #e5237b, #d81c6f);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-5px);
}

.btn i {
    font-size: 1.2rem;
}

.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; */
    perspective: 1000px;
}

.browser-mockup {
    position: absolute;
    top: 28%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(-5deg) rotateX(5deg);
    width: 460px;
    max-width: 90%;
    background: #111827;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

.browser-mockup:hover {
    transform: translate(-50%, -50%) rotateY(0deg) rotateX(0deg);
}

.browser-header {
    background: #1f2937;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-controls {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.browser-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-red {
    background: #ef4444;
}

.control-yellow {
    background: #f59e0b;
}

.control-green {
    background: #10b981;
}

.browser-address {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
    color: var(--text-dim);
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-address i {
    font-size: 10px;
    color: #e5237b;
}

.browser-content {
    height: 400px;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.website-mockup {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.website-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.website-logo {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(45deg, #e5237b, #e5237b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.website-nav {
    display: flex;
    gap: 20px;
}

/* .nav-link {
    font-size: 14px;
    color: var(--text-dim);
} */

.nav-link.active {
    color: #e5237b;
    font-weight: 500;
}

.website-hero {
    padding: 40px 20px;
    text-align: center;
}

.website-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.website-subtitle {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.website-cta {
    background: linear-gradient(45deg, var(--accent), var(--primary));
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    display: inline-block;
}

.website-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.website-feature {
    background: rgba(31, 41, 55, 0.5);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #e5237b, #e5237b);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 18px;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text {
    font-size: 12px;
    color: var(--text-dim);
}

.browser-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: 10px;
}

.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;
}

.layers-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.layer-element {
    position: absolute;
    border-radius: 10px;
    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;
    transition: all 0.3s ease;
}

.layer-1 {
    top: -30px;
    right: -80px;
    width: 180px;
    height: 180px;
    transform: rotate(8deg);
    background: rgba(31, 41, 55, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    animation: float 6s infinite ease-in-out;
}

.layer-2 {
    bottom: 80px;
    left: -50px;
    width: 150px;
    height: 150px;
    transform: rotate(-5deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: float 6s 2s infinite ease-in-out;
}

.layer-3 {
    bottom: -40px;
    right: 50px;
    width: 200px;
    height: 80px;
    transform: rotate(3deg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 5s 1s infinite ease-in-out;
}

.layer-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.layer-content {
    flex: 1;
}

.layer-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.layer-description {
    font-size: 12px;
    color: var(--text-dim);
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.swatch-primary {
    background: var(--primary);
}

.swatch-secondary {
    background: var(--secondary);
}

.swatch-accent {
    background: var(--accent);
}

.component-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.component-box {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.component-text {
    height: 8px;
    width: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.design-tool {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(31, 41, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
}

.code-element {
    position: absolute;
    bottom: 30px;
    left: -80px;
    transform: rotate(-8deg);
    z-index: 1;
}

.code-block {
    position: relative;
    bottom: 70px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 8px;
    padding: 15px;
    font-family: monospace;
    font-size: 12px;
    color: #a5f3fc;
    width: 250px;
    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;
}

.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);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #e5237b, #e5237b);
    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);
}

.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: 70px;
    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;
    }
}

/* Services Section */
.services-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: 25px;
}

.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;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-box {

    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;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #e7237c, #e7237c);
    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);
}

.service-icon {
    font-size: 30px;
    color: white;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-description {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.service-detail i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.service-detail span {
    font-size: 0.95rem;
    color: var(--text-dim);
}

.service-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;
}

.service-box:hover .service-bg {
    transform: rotate(0deg) scale(1.2);
    opacity: 0.15;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #1f0159, #1f0258);
    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: linear-gradient(145deg, rgba(31, 41, 55, 0.4), rgba(15, 23, 42, 0.4)); */
    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, #e6237b, #e5237b);
    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: white;
}

.process-description {
    font-size: 0.95rem;
    color: var(--text-dim);
    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;
}

/* Technologies Section */
.technologies-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tech-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;
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.tech-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;
}

.tech-item:hover .tech-icon {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    transform: scale(1.1);
}

.tech-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.tech-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;
    background: linear-gradient(to top, var(--background), #0c1322);
}

.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;
}

/* Pricing Section */
.pricing-section {
    padding: 0px 0 0 0;
    position: relative;
    overflow: hidden;
}

.sfc-magic-success {
    margin: 50px 0;
}



.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
    gap: 15px;
}

.toggle-option {
    font-size: 1rem;
    color: var(--text-dim);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.toggle-option.active {
    color: var(--text-light);
    font-weight: 600;
}

.discount-badge {
    font-size: 0.7rem;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 41, 55, 0.6);
    transition: 0.4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.slider {
    background: linear-gradient(45deg, var(--primary), var(--accent));
}

input:checked+.slider:before {
    transform: translateX(30px);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.4), rgba(15, 23, 42, 0.4));
    border-radius: 20px;
    padding: 40px 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;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.3);
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.pricing-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(31, 41, 55, 0.6);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 15px;
}

.featured-badge {
    background: linear-gradient(45deg, #e5237b, #e5237b);
    color: white;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 5px;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #e5237b, #e5237b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.pricing-body {
    margin-bottom: 30px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.pricing-features {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.feature-item i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 2px;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--text-dim);
}

.feature-item.disabled i {
    color: rgba(255, 255, 255, 0.3);
}

.feature-item.disabled span {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
}

.pricing-card:hover .feature-item:not(.disabled) {
    transform: translateX(5px);
}

.pricing-footer {
    position: relative;
    z-index: 1;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
}

.pricing-bg {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 30px;
    opacity: 0.05;
    transform: rotate(15deg);
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-bg {
    transform: rotate(0deg) scale(1.2);
    opacity: 0.1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, 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;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* .contact-info {
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.4), rgba(15, 23, 42, 0.4));
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
} */

.contact-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(31, 41, 55, 0.6);
    border-radius: 10px;
    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;
}

.contact-text a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: var(--text-light);
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.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);
}

.contact-form-container {
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.4), rgba(15, 23, 42, 0.4));
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 8px;
    display: block;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background: linear-gradient(45deg, var(--accent), var(--primary));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.form-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 5px;
}

.form-success {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #10b981;
}

/* 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;
}

.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);
}

/* Responsive styles */
@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;
    }

    .browser-mockup {
        width: 500px;
    }
}

@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        text-align: left;
        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;
    }

    .layers-elements,
    .code-element {
        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;
    }

    .section-title::after {
        top: 110px;
    }

    .service-box {
        padding: 10px;
    }

    .service-icon {
        font-size: 16px;
        color: white;
    }

    .service-icon-wrapper {
        width: 40px;
        height: 40px;
        background: linear-gradient(45deg, #e7237c, #e7237c);
        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);
    }

    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .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-item {
        padding: 30px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .btn-secondary {
        background: #ffffff;
        color: #131c2d;
    }

    .pricing-section {
        padding: 50px 0;
    }

    .services-section {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 24px;
        line-height: normal;
        padding-bottom: 10px;
        margin: 0;
    }

    .trusted-by {
        margin-top: 30px;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .services-container,
    .process-grid,
    .portfolio-grid {
        gap: 20px;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .price-value {
        font-size: 2.5rem;
    }

    .footer-grid {
        gap: 30px;
    }
}

.section-title::after {
    background-color: #e5237b;
    bottom: 0;
}

.header.scrolled .btn-outline {
    color: #e5237b;
    border-color: #e5237b;
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid #e5237b;
}

.float-btn {
    background: #e5237b;
}
.hero-text {
    text-align: center;
}
#wireframing .services-container{
  display: block;
}

