#technologies {
    padding: 60px 0;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

#technologies h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.partners-scroll {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: scroll-left 40s linear infinite;
}

.partners-track img {
    height: 60px !important;
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain;
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    flex-shrink: 0;
    filter: grayscale(0%);
    opacity: 1;
    transition: transform 0.3s ease;
    display: block !important;
}

.partners-track img:hover {
    transform: scale(1.2);
}

.partners-track .img-wrapper {
    display: inline-block;
    height: 60px;
}

.partners-track .img-spinner {
    display: none !important;
}

@keyframes scroll-left {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.presence-scroll {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.presence-track {
    display: flex;
    gap: 60px;
    animation: scroll-left 30s linear infinite;
}

.presence-track img {
    height: 80px !important;
    width: 80px !important;
    min-width: 80px !important;
    min-height: 80px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    flex-shrink: 0;
    border: 3px solid rgba(16, 128, 240, 0.5) !important;
    display: block !important;
}

.presence-track .img-wrapper {
    display: inline-block;
    height: 80px;
}

.presence-track .img-spinner {
    display: none !important;
}

/* Why Us Section - Modern Responsive Layout */
#why-work-with-us {
    padding: 60px 0 400px 0;
    background-color: #000000;
    position: relative;
    overflow: visible;
}

#why-work-with-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #1080f0 50%, transparent 100%);
    opacity: 0.3;
}

#why-work-with-us h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 15px;
}

#why-work-with-us h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1080f0, #0066cc);
    border-radius: 2px;
}

.why-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-item {
    text-align: center;
    cursor: pointer;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 30px 20px;
    border: 1px solid rgba(16, 128, 240, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 128, 240, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
}

.why-item:hover {
    transform: translateY(-8px);
    border-color: #1080f0;
    box-shadow: 0 12px 40px rgba(16, 128, 240, 0.3);
}

.why-item:hover::before {
    opacity: 1;
}

.why-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(16, 128, 240, 0.1);
    border: 2px solid rgba(16, 128, 240, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1080f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.why-item:hover .why-icon-box {
    background: rgba(16, 128, 240, 0.2);
    border-color: #1080f0;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(16, 128, 240, 0.4);
}

.why-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.why-item:hover .why-title {
    color: #1080f0;
}

.why-dropdown {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 320px;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 128, 240, 0.3);
    border-radius: 16px;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.why-item:hover .why-dropdown,
.why-item.active .why-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.why-dropdown h4 {
    font-size: 1.2rem;
    color: #1080f0;
    margin-bottom: 16px;
    text-align: left;
    font-weight: 700;
}

.why-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.why-dropdown li {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.why-dropdown li:last-child {
    margin-bottom: 0;
}

.why-dropdown li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1080f0;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Tablet View */
@media (max-width: 992px) {
    .why-horizontal {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* Mobile View - Vertical Stack */
@media (max-width: 768px) {
    #why-work-with-us {
        padding: 50px 0 80px 0;
    }
    
    #why-work-with-us h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .why-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 16px;
    }
    
    .why-item {
        padding: 20px 12px;
    }
    
    .why-item:hover {
        transform: none;
    }
    
    .why-icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .why-title {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .why-dropdown {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 400px;
        max-height: 70vh;
        overflow-y: auto;
        padding: 28px 24px;
    }
    
    .why-item.active .why-dropdown {
        transform: translate(-50%, -50%);
    }
    
    .why-dropdown-close {
        display: flex;
    }
}

/* Small Mobile - Two Columns */
@media (max-width: 576px) {
    #why-work-with-us {
        padding: 40px 0 60px 0;
    }
    
    #why-work-with-us h2 {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }
    
    .why-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }
    
    .why-item {
        padding: 16px 10px;
        border-radius: 10px;
    }
    
    .why-icon-box {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .why-title {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .why-dropdown {
        width: 92%;
        max-width: 340px;
        max-height: 75vh;
        padding: 24px 20px;
        border-radius: 12px;
    }
    
    .why-dropdown h4 {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }
    
    .why-dropdown li {
        font-size: 0.85rem;
        padding-left: 22px;
        margin-bottom: 10px;
    }
}

/* Modal Backdrop for Mobile */
.why-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-backdrop.active {
    display: block;
    opacity: 1;
}

/* Close button for mobile dropdown */
.why-dropdown-close {
    display: none;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(16, 128, 240, 0.2);
    border: 1px solid rgba(16, 128, 240, 0.3);
    border-radius: 50%;
    color: #1080f0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    z-index: 101;
}

.why-dropdown-close:hover {
    background: rgba(16, 128, 240, 0.3);
    border-color: #1080f0;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .why-dropdown-close {
        display: flex;
    }
}: center;
    justify-content: center;
    z-index: 102;
}

.why-dropdown-close:hover {
    background: rgba(16, 128, 240, 0.3);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .why-dropdown-close {
        display: flex;
    }
}lose {
        display: flex;
    }
    
    .why-item.active .why-dropdown {
        z-index: 101;
    }
}

/* Smooth Scroll for Dropdown */
.why-dropdown::-webkit-scrollbar {
    width: 6px;
}

.why-dropdown::-webkit-scrollbar-track {
    background: rgba(16, 128, 240, 0.1);
    border-radius: 3px;
}

.why-dropdown::-webkit-scrollbar-thumb {
    background: rgba(16, 128, 240, 0.5);
    border-radius: 3px;
}

.why-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 128, 240, 0.7);
}

/* Services Section - Modern Card Grid */
#services {
    padding: 60px 0;
    background-color: #000000;
}

#services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #ffffff;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-modern {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(16, 128, 240, 0.2);
    border-radius: 12px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    border-color: #1080f0;
    background: rgba(26, 26, 26, 0.9);
    box-shadow: 0 10px 30px rgba(16, 128, 240, 0.2);
}

.service-icon-modern {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(16, 128, 240, 0.1);
    border: 2px solid rgba(16, 128, 240, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1080f0;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
    background: rgba(16, 128, 240, 0.2);
    border-color: #1080f0;
    transform: scale(1.1);
}

.service-card-modern h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-card-modern p {
    font-size: 0.95rem;
    color: #999999;
    line-height: 1.6;
}

.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.service-modal.active {
    display: flex;
}

.service-modal-content {
    background: rgba(26, 26, 26, 0.98);
    border: 1px solid rgba(16, 128, 240, 0.3);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #999999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.service-modal-close:hover {
    color: #1080f0;
}

.service-modal-content h3 {
    font-size: 1.8rem;
    color: #1080f0;
    margin-bottom: 25px;
}

.service-modal-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-modal-content li {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.service-modal-content li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1080f0;
    font-weight: bold;
}

.coc-banner {
    margin-top: 40px;
    background: rgba(16, 128, 240, 0.1);
    border: 1px solid rgba(16, 128, 240, 0.3);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.coc-icon {
    font-size: 3rem;
    color: #1080f0;
}

.coc-content h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.coc-content p {
    font-size: 1rem;
    color: #cccccc;
    margin: 0;
}

.coc-highlight {
    color: #1080f0;
    font-weight: bold;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    #technologies {
        padding: 50px 0;
    }
    
    #technologies h2 {
        font-size: 1.8rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
    
    .service-modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .coc-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        margin: 30px 16px 0;
    }
    
    .coc-icon {
        font-size: 2.5rem;
    }
    
    .coc-content h4 {
        font-size: 1.3rem;
    }
    
    #why-work-with-us {
        padding: 50px 0 300px 0;
    }
    
    .why-horizontal {
        padding: 0 16px;
    }
}

@media (max-width: 576px) {
    #technologies {
        padding: 40px 0;
    }
    
    #technologies h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .partners-scroll,
    .presence-scroll {
        margin: 0 -16px;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card-modern {
        padding: 20px 16px;
    }
    
    .service-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .service-card-modern h3 {
        font-size: 1.15rem;
    }
    
    .service-card-modern p {
        font-size: 0.9rem;
    }
    
    .service-modal-content {
        padding: 24px 16px;
        width: 92%;
    }
    
    .service-modal-content h3 {
        font-size: 1.5rem;
    }
    
    .service-modal-content li {
        font-size: 0.9rem;
        padding-left: 24px;
    }
    
    .coc-banner {
        padding: 20px 16px;
        margin: 24px 0 0;
        border-radius: 12px;
    }
    
    .coc-icon {
        font-size: 2.2rem;
        width: 70px;
        height: 70px;
    }
    
    .coc-content h4 {
        font-size: 1.2rem;
    }
    
    .coc-content p {
        font-size: 0.9rem;
    }
    
    #why-work-with-us {
        padding: 40px 0 250px 0;
    }
    
    #why-work-with-us h2 {
        font-size: 1.6rem;
    }
    
    .why-item {
        min-width: 130px;
        max-width: 160px;
    }
    
    .why-icon-box {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .why-title {
        font-size: 0.85rem;
    }
}
