:root {
    --dark-bg: #0f0f1a;
    --dark-card: #1a1a2e;
    --dark-card-hover: #22223a;
    --text-light: #e2e2e2;
    --text-muted: #8a8a9c;
}

.cta-box-btn {
    margin-top: 20px;
}

.btn-highlighted {
    display: inline-block;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid #404040;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn-highlighted::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-highlighted:hover::before {
    left: 100%;
}

.btn-highlighted:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #1a1a1a;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.btn-highlighted:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Phone icon animation */
.btn-highlighted::after {
    content: '📞';
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-highlighted:hover::after {
    transform: scale(1.2) rotate(12deg);
}

/* Responsive design */
@media (max-width: 768px) {
    .btn-highlighted {
        padding: 14px 28px;
        font-size: 1rem;
    }
}
.our-projects {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.our-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(108, 99, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-title h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-title-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-default {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn-default:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
    color: white;
}

.project-nav {
    margin: 50px 0 30px;
}

.project-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.project-nav ul li a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid transparent;
}

.project-nav ul li a:hover,
.project-nav ul li a.active-btn {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.project-item {
    background: var(--dark-card);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-item:hover {
    transform: translateY(-10px);
    background: var(--dark-card-hover);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.2);
}

.project-item-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover .project-item-image img {
    transform: scale(1.05);
}

.project-item-content {
    padding: 25px;
}

.project-item-content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-item-content h2 a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-item-content h2 a:hover {
    color: var(--primary-color);
}

.project-item-content p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.project-item-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.project-item:hover .project-item-btn {
    opacity: 1;
    transform: translateY(0);
}

.project-item-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-item-btn a:hover {
    background: var(--primary-dark);
    transform: rotate(45deg);
}

.project-item-btn i {
    color: white;
    font-size: 16px;
}

.section-footer-text {
    margin-top: 60px;
    text-align: center;
    padding: 30px;
    background: rgba(26, 26, 46, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(108, 99, 255, 0.1);
}

.satisfy-client-images {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.satisfy-client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 -10px;
    border: 3px solid var(--dark-card);
    transition: transform 0.3s ease;
}

.satisfy-client-image:hover {
    transform: translateY(-5px);
    z-index: 1;
}

.satisfy-client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-footer-text p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.section-footer-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.section-footer-text a:hover {
    text-decoration: underline;
}

/* Animation classes */
.wow {
    visibility: hidden;
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .project-nav ul {
        gap: 10px;
    }
    
    .project-nav ul li a {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

