body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0F0F0F;
    color: #fff;
    line-height: 1.6;
}

.about-hero {
    padding: 8rem 2rem 4rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: center;
    min-height: 600px;
}

.about-hero-content {
    text-align: left;
    padding-right: 2rem;
    margin-top: 2rem;
}

/* .about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        transparent 30%,
        var(--primary-color) 50%,
        transparent 70%,
        transparent 100%
    ) 0 / 300% 100%;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: borderAnimation 7s linear infinite alternate;
} */


.about-hero p {
    font-size: 1.1rem;
    
    margin-bottom: 2.5rem;

    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-color);
    backdrop-filter: blur(5px);
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.2);
}

.about-tags {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.about-tag {
    background: rgba(138, 43, 226, 0.08);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.about-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(138, 43, 226, 0.1),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.about-tag::after {
    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(45deg,
        transparent,
        rgba(138, 43, 226, 0.3),
        transparent
    );
    z-index: -2;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-tag:hover {
    color: var(--primary-color);
    border-color: rgba(138, 43, 226, 0.4);
    transform: translateY(-2px);
    letter-spacing: 2px;
}

.about-tag:hover::before {
    transform: translateX(100%);
}

.about-tag:hover::after {
    opacity: 1;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes lineWidth {
    0%, 100% {
        width: 100px;
    }
    50% {
        width: 200px;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    margin: 0 auto;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.about-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.about-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.about-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
}

.about-button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.sphere-wrapper {
    width: 300px;
    height: 300px;
    perspective: 1000px;
    margin: 0 auto;
    position: relative;
    animation: floatAnimation 6s ease-in-out infinite;
}

.sphere {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotateSphere 20s linear infinite;
}

.sphere::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 30%, 
        rgba(138, 43, 226, 0.2) 0%,
        rgba(138, 43, 226, 0.1) 50%,
        rgba(138, 43, 226, 0.05) 100%
    );
    border-radius: 50%;
    box-shadow: 
        0 0 50px rgba(138, 43, 226, 0.2),
        inset 0 0 30px rgba(138, 43, 226, 0.3);
    backdrop-filter: blur(5px);
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240px;
    height: 240px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 50%;
    animation: orbitRotate 10s linear infinite;
}

.orbit:nth-child(2) {
    width: 220px;
    height: 220px;
    animation-duration: 15s;
    animation-direction: reverse;
    border-color: rgba(138, 43, 226, 0.15);
}

.orbit:nth-child(3) {
    width: 260px;
    height: 260px;
    animation-duration: 20s;
    border-color: rgba(138, 43, 226, 0.1);
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(138, 43, 226, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.8);
}

.orbit:nth-child(1) .particle { top: 0; }
.orbit:nth-child(2) .particle { top: 50%; }
.orbit:nth-child(3) .particle { bottom: 0; }

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, 
        rgba(138, 43, 226, 0.1) 0%,
        transparent 70%
    );
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes rotateSphere {
    from {
        transform: rotateX(0) rotateY(0) rotateZ(0);
    }
    to {
        transform: rotateX(360deg) rotateY(720deg) rotateZ(360deg);
    }
}

@keyframes orbitRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.sphere-wrapper:hover .sphere::before {
    box-shadow: 
        0 0 70px rgba(138, 43, 226, 0.3),
        inset 0 0 50px rgba(138, 43, 226, 0.4);
}

.sphere-wrapper:hover .orbit {
    border-width: 2px;
}

.sphere-wrapper:hover .particle {
    box-shadow: 0 0 15px rgba(138, 43, 226, 1);
}

.about-projects {
    padding: 6rem 2rem 3rem;
    margin: 0 auto;
}

.section-header {
    text-align: left;
}

.section-header h2 {
    width: 100%;
    border-radius: 12px;
    height: 80px;
    background-color: rgba(20, 20, 20, 0.8);
    font-size: 1.7rem;
    font-weight: 700;
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    padding-left: 1.5rem;
    margin-bottom: 2rem;
         
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.project-category {
    background-color: rgba(20, 20, 20, 0.8);
    
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 2rem;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.category-title h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    letter-spacing: 1px;
}

.view-all {
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    background: linear-gradient(
        135deg,
        rgba(138, 43, 226, 0.1) 0%,
        rgba(138, 43, 226, 0.05) 100%
    );
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(138, 43, 226, 0.2),
        transparent
    );
    transition: 0.6s;
}

.view-all:hover {
    transform: translateY(-2px);
    border-color: rgba(138, 43, 226, 0.4);
}

.view-all:hover::before {
    left: 100%;
}

.project-info {
    margin-bottom: 2rem;
}

.project-title {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.project-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.project-title h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.discuss-btn {
    position: relative;
    letter-spacing: 2px;
    background: linear-gradient(
        135deg,
        rgba(138, 43, 226, 0.8) 0%,
        rgba(138, 43, 226, 0.6) 100%
    );
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1.5px;
    overflow: hidden;
}

.discuss-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.6s;
}

.discuss-btn:hover {
    transform: translateY(-2px);
}

.discuss-btn:hover::after {
    left: 100%;
}

.project-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.project-price {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
}

.project-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.example-card {
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
}

.example-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials {
    padding: 3rem 2rem;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color),
        rgba(138, 43, 226, 0.3),
        var(--primary-color)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.3;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

.author-position {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 1rem 2rem;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .project-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .project-actions {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
    }

    .view-all, .discuss-btn {
        
        width: auto;
        white-space: nowrap;
    }

    .testimonials {
        padding: 4rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-title {
        font-size: 1.2rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .about-hero-content {
        padding: 0;
        text-align: left;
        margin-top: 1rem;
    }

    .about-hero p {
        font-size: 0.9rem;
        margin-left: 0;
        margin-right: 0;
        padding-left: 1rem;
    }

    .about-tags {
        justify-content: flex-start;
        gap: 1rem;
    }

    .about-tag {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .about-projects {
        padding: 2rem 1rem;
        margin: -1rem;
    }

    .section-header h2 {
        font-size: 1.1rem;
        text-align: left;
        margin: 0 0 2rem 0;
        padding: 0 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .project-category {
        padding: 1.5rem;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .project-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .project-title h4 {
        font-size: 1.5rem;
    }

    .project-examples {
        grid-template-columns: 1fr;
    }

    .view-all {
        margin-top: 0.5rem;
    }

    .about-grid {
        padding: 1rem;
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {
    .about-tags {
        flex-direction: column;
        align-items: stretch;
    }

    .about-tag {
        text-align: center;
    }

    .about-header {
        flex-direction: column;
        text-align: center;
    }

}