/* About Section Styles */
.about-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #151525 50%, #1a1a2e 100%);
    color: #e0e0e0;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-block-size: 100vh;
}

.about-bg-elements {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    inline-size: 100%;
    block-size: 100%;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 234, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    inline-size: 300px;
    block-size: 300px;
    inset-block-start: 10%;
    inset-inline-start: 5%;
    animation-delay: 0s;
}

.circle-2 {
    inline-size: 200px;
    block-size: 200px;
    inset-block-start: 60%;
    inset-inline-start: 80%;
    animation-delay: 2s;
}

.circle-3 {
    inline-size: 150px;
    block-size: 150px;
    inset-block-start: 30%;
    inset-inline-start: 70%;
    animation-delay: 4s;
}

.floating-code {
    position: absolute;
    font-size: 8rem;
    color: rgba(0, 234, 255, 0.1);
    inset-block-start: 20%;
    inset-inline-end: 10%;
    animation: float 8s ease-in-out infinite;
    font-family: 'Courier New', monospace;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.container {
    max-inline-size: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}



/* Main Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-block-end: 4rem;
    align-items: start;
}

/* Left Column */
.about-left {
    position: sticky;
    inset-block-start: 2rem;
}

.profile-card {
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 234, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 234, 255, 0.2);
    border-color: rgba(0, 234, 255, 0.4);
}

.profile-image-wrapper {
    position: relative;
    margin-block-end: 2rem;
}

.profile-image {
    inline-size: 100%;
    border-radius: 15px;
    aspect-ratio: 1;
    object-fit: cover;
    border: 3px solid rgba(0, 234, 255, 0.3);
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.02);
    border-color: rgba(0, 234, 255, 0.6);
}

.image-glow {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    inline-size: 100%;
    block-size: 100%;
    border-radius: 15px;
    background: linear-gradient(45deg, transparent, rgba(0, 234, 255, 0.1), transparent);
    animation: glow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow {
    0%, 100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.status-indicator {
    position: absolute;
    inset-block-end: 10px;
    inset-inline-end: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 20, 30, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(57, 255, 20, 0.3);
    backdrop-filter: blur(10px);
    color: #39ff14;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-dot {
    inline-size: 8px;
    block-size: 8px;
    background: #39ff14;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.personal-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.info-item:hover {
    background: rgba(0, 234, 255, 0.1);
    transform: translateX(5px);
    border-color: rgba(0, 234, 255, 0.3);
}

.info-item i {
    color: #00eaff;
    inline-size: 20px;
    text-align: center;
    font-size: 1rem;
}

.info-label {
    display: block;
    color: #a0a0b0;
    font-size: 0.8rem;
    margin-block-end: 0.2rem;
}

.info-value {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Right Column */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.intro-text h3 {
    font-size: 2rem;
    margin-block-end: 1rem;
    color: #e0e0e0;
    line-height: 1.3;
}

.highlight {
    background: linear-gradient(45deg, #00eaff, #39ff14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.intro-text p {
    line-height: 1.8;
    color: #b0b0c0;
    font-size: 1.1rem;
    text-align: justify;
}

/* Skills Section */
.skills-section h4,
.tech-stack h4 {
    color: #00eaff;
    margin-block-end: 1.5rem;
    font-size: 1.3rem;
    border-inline-start: 3px solid #39ff14;
    padding-inline-start: 1rem;
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #e0e0e0;
    font-weight: 600;
}

.skill-bar {
    block-size: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    block-size: 100%;
    background: linear-gradient(90deg, #00eaff, #39ff14);
    border-radius: 4px;
    inline-size: 0;
    transition: width 1.5s ease-in-out;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    inline-size: 100%;
    block-size: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Tech Stack */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tech-category h5 {
    color: #39ff14;
    margin-block-end: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(0, 234, 255, 0.1);
    border: 1px solid rgba(0, 234, 255, 0.3);
    color: #00eaff;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
}

.tech-tag:hover {
    background: rgba(0, 234, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 234, 255, 0.3);
    border-color: rgba(0, 234, 255, 0.6);
}



/* Fun Facts */
.fun-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-block-start: 4rem;
}

.fact-card {
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 234, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: -100%;
    inline-size: 100%;
    block-size: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 234, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.fact-card:hover::before {
    inset-inline-start: 100%;
}

.fact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 234, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 234, 255, 0.2);
}

.fact-icon {
    font-size: 2.5rem;
    color: #00eaff;
    margin-block-end: 1rem;
}

.fact-content h3 {
    font-size: 2.5rem;
    color: #39ff14;
    margin-block-end: 0.5rem;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
    font-weight: 700;
}

.fact-content p {
    color: #a0a0b0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-left {
        position: static;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        justify-content: center;
    }

    .floating-code {
        display: none;
    }

    .fun-facts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {

    .fun-facts {
        grid-template-columns: 1fr;
    }

    .profile-card {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        inline-size: 100%;
        justify-content: center;
    }
}

/* Loyihalar bo'limi - Yangi dizayn */
.projects-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #151525 50%, #1a1a2e 100%);
    color: #e0e0e0;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.projects-bg {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    inline-size: 100%;
    block-size: 100%;
    pointer-events: none;
}

.bg-grid {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    inline-size: 100%;
    block-size: 100%;
    background-image:
        linear-gradient(rgba(0, 234, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 234, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.floating-code {
    position: absolute;
    font-size: 8rem;
    color: rgba(0, 234, 255, 0.05);
    inset-block-start: 10%;
    inset-inline-end: 5%;
    font-family: 'Courier New', monospace;
    animation: float 6s ease-in-out infinite;
}

.particles {
    position: absolute;
    inline-size: 100%;
    block-size: 100%;
}

.particle {
    position: absolute;
    inline-size: 4px;
    block-size: 4px;
    background: #00eaff;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    inset-block-start: 20%;
    inset-inline-start: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    inset-block-start: 60%;
    inset-inline-start: 80%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    inset-block-start: 40%;
    inset-inline-start: 20%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    inset-block-start: 80%;
    inset-inline-start: 60%;
    animation-delay: 1.5s;
}

.particle:nth-child(5) {
    inset-block-start: 30%;
    inset-inline-start: 90%;
    animation-delay: 2.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

/* Projects Grid Layout - 3 ta loyiha bir qatorda */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-block-end: 3rem;
}

/* Project Card - Yangi dizayn */
.project-card {
    background: rgba(20, 20, 30, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 234, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    block-size: fit-content;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 234, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 234, 255, 0.2);
}

.project-card-image {
    position: relative;
    block-size: 200px;
    overflow: hidden;
}

.project-card-image img {
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.1);
}

.project-card-badge {
    position: absolute;
    inset-block-start: 1rem;
    inset-inline-end: 1rem;
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.project-card-overlay {
    position: absolute;
    inset-block-end: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem;
    color: white;
}

.project-card-overlay h3 {
    font-size: 1.2rem;
    margin-block-end: 0.3rem;
    color: #00eaff;
}

.project-card-overlay .category {
    color: #39ff14;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card-content {
    padding: 1.5rem;
}

.project-card-title {
    color: #00eaff;
    font-size: 1.3rem;
    margin-block-end: 0.8rem;
    line-height: 1.3;
}

.project-card-description {
    color: #b0b0c0;
    line-height: 1.5;
    margin-block-end: 1.2rem;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-card-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-block-end: 1.2rem;
}

.tech-tag-small {
    background: rgba(0, 234, 255, 0.1);
    border: 1px solid rgba(0, 234, 255, 0.3);
    color: #00eaff;
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.tech-tag-small:hover {
    background: rgba(0, 234, 255, 0.2);
    transform: translateY(-1px);
}

.project-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-block-end: 1.2rem;
    padding-block-start: 0.8rem;
    border-block-start: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0a0b0;
    font-size: 0.8rem;
}

.meta-item-small i {
    color: #39ff14;
    inline-size: 12px;
    font-size: 0.8rem;
}

.project-card-links {
    display: flex;
    gap: 0.8rem;
}

.project-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: rgba(0, 234, 255, 0.1);
    border: 1px solid rgba(0, 234, 255, 0.3);
    color: #00eaff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.8rem;
    flex: 1;
    justify-content: center;
}

.project-card-link:hover {
    background: rgba(0, 234, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 234, 255, 0.2);
}

.project-card-link.primary {
    background: linear-gradient(45deg, #00eaff, #39ff14);
    color: #0a0a0f;
    border: none;
}

.project-card-link.primary:hover {
    box-shadow: 0 5px 15px rgba(0, 234, 255, 0.4);
}

/* Loyiha holatlari uchun ranglar */
.project-card-badge.tugatilgan {
    background: linear-gradient(45deg, #4CAF50, #45a049);
}

.project-card-badge.jarayonda {
    background: linear-gradient(45deg, #FF9800, #f57c00);
}

.project-card-badge.rejalashtirilgan {
    background: linear-gradient(45deg, #9C27B0, #7b1fa2);
}

.project-card-badge.yangi {
    background: linear-gradient(45deg, #2196F3, #1976D2);
}

/* CTA tugmasi */
.projects-cta {
    text-align: center;
    margin-block-start: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #00eaff, #39ff14);
    color: #0a0a0f;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 234, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border: 1px solid rgba(0, 234, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 234, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 234, 255, 0.2);
    border-color: rgba(0, 234, 255, 0.6);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 4rem 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .floating-code {
        font-size: 4rem;
        inset-block-start: 5%;
        inset-inline-end: 2%;
    }
}

@media (max-width: 480px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card-image {
        block-size: 180px;
    }

    .project-card-content {
        padding: 1rem;
    }

    .project-card-title {
        font-size: 1.1rem;
    }
}

/* Xizmatlar bo'limi */
.services-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #151525 50%, #1a1a2e 100%);
    color: #e0e0e0;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.services-bg {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    inline-size: 100%;
    block-size: 100%;
    pointer-events: none;
}

.services-bg .bg-grid {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    inline-size: 100%;
    block-size: 100%;
    background-image:
        linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.services-bg .floating-code {
    position: absolute;
    font-size: 8rem;
    color: rgba(57, 255, 20, 0.05);
    inset-block-start: 10%;
    inset-inline-start: 5%;
    font-family: 'Courier New', monospace;
    animation: float 6s ease-in-out infinite;
}

.services-bg .particle {
    background: #39ff14;
    animation: float 3s ease-in-out infinite;
}

/* Xizmatlar gridi - BIR QATORDA 3 TA */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-block-end: 4rem;
}

/* Xizmat kartasi */
.service-card {
    background: rgba(20, 20, 30, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    block-size: fit-content;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(57, 255, 20, 0.4);
    box-shadow: 0 20px 40px rgba(57, 255, 20, 0.2);
}

.service-card-icon {
    position: relative;
    block-size: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), rgba(0, 234, 255, 0.1));
    border-block-end: 1px solid rgba(57, 255, 20, 0.2);
}

.service-card-icon i {
    font-size: 3rem;
    color: #39ff14;
    z-index: 2;
    position: relative;
}

.icon-glow {
    position: absolute;
    inline-size: 80px;
    block-size: 80px;
    background: rgba(57, 255, 20, 0.2);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.service-card-content {
    padding: 2rem;
}

.service-card-title {
    color: #39ff14;
    font-size: 1.5rem;
    margin-block-end: 1rem;
    text-align: center;
    font-weight: 600;
}

.service-card-description {
    color: #b0b0c0;
    line-height: 1.6;
    margin-block-end: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
}

/* Xizmat xususiyatlari */
.service-features {
    margin-block-end: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-block-end: 0.8rem;
    color: #e0e0e0;
    font-size: 0.9rem;
}

.feature-item i {
    color: #39ff14;
    font-size: 0.8rem;
    inline-size: 16px;
    text-align: center;
}

/* Texnologiya teglari */
.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-block-end: 1.5rem;
    justify-content: center;
}

.tech-tag {
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
    color: #39ff14;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(57, 255, 20, 0.2);
    transform: translateY(-2px);
}

/* Narx bo'limi */
.service-pricing {
    text-align: center;
    margin-block-end: 1.5rem;
    padding: 1rem;
    background: rgba(57, 255, 20, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(57, 255, 20, 0.1);
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #39ff14;
    display: block;
}

.duration {
    color: #a0a0b0;
    font-size: 0.9rem;
}

/* Harakatlar tugmalari */
.service-actions {
    display: flex;
    gap: 0.8rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    flex: 1;
    text-align: center;
}

.service-btn.primary {
    background: linear-gradient(135deg, #39ff14, #00eaff);
    color: #0a0a0f;
    border: none;
}

.service-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(57, 255, 20, 0.4);
}

.service-btn.secondary {
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
    color: #39ff14;
}

.service-btn.secondary:hover {
    background: rgba(57, 255, 20, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.2);
}

/* Qo'shimcha ma'lumot kartalari */
.services-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-block-start: 3rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(57, 255, 20, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(57, 255, 20, 0.3);
    transform: translateY(-5px);
}

.info-icon {
    inline-size: 50px;
    block-size: 50px;
    background: linear-gradient(135deg, #39ff14, #00eaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: #0a0a0f;
    font-size: 1.2rem;
}

.info-content h4 {
    color: #39ff14;
    margin-block-end: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    color: #b0b0c0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .services-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-actions {
        flex-direction: column;
    }

    .service-card-content {
        padding: 1.5rem;
    }

    .floating-code {
        font-size: 4rem;
        inset-block-start: 5%;
        inset-inline-start: 2%;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-icon {
        block-size: 100px;
    }

    .service-card-icon i {
        font-size: 2.5rem;
    }

    .service-card-content {
        padding: 1.2rem;
    }

    .service-card-title {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }
}