/* ===================================
   GLOBAL OVERFLOW FIX
   =================================== */

html, body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    position: relative;
}

* {
    box-sizing: border-box;
}

/* ===================================
   OUR CLIENTS SECTION
   =================================== */

.clients-section {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #E8E6F2 0%, #E3E0F0 50%, #E8E6F2 100%);
    overflow: hidden;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #2D3436;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Clients Slider Container */
.clients-slider {
    position: relative;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
}

.clients-track {
    display: flex;
    gap: 4rem;
    animation: slideLogos 20s linear infinite;
    width: max-content;
    will-change: transform;
}

.client-logo {
    flex-shrink: 0;
    width: 220px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.1);
    transition: all 0.3s ease;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.18);
    background: rgba(255, 255, 255, 0.9);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Decorative Corner Brackets */
.corner-bracket {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 4px solid #6C5CE7;
    pointer-events: none;
}

.corner-bracket.top-left {
    top: 2rem;
    left: 2rem;
    border-right: none;
    border-bottom: none;
    border-radius: 20px 0 0 0;
}

.corner-bracket.bottom-right {
    bottom: 2rem;
    right: 2rem;
    border-left: none;
    border-top: none;
    border-radius: 0 0 20px 0;
}

/* Slider Animation */
@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===================================
   OUR SERVICES SECTION
   =================================== */

.services-section {
    position: relative;
    padding: 4rem 0 5rem;
    background: linear-gradient(135deg, #E8E6F2 0%, #E3E0F0 50%, #E8E6F2 100%);
    overflow: hidden;
}

.services-title {
    text-align: left;
    margin-bottom: 2.5rem;
    font-size: 2.75rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #6C5CE7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    position: relative;
    background: transparent;
    border-radius: 20px;
    overflow: visible;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    position: relative;
    overflow: visible;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(108, 92, 231, 0.15);
}

.service-card:nth-child(1) .service-image {
    background: linear-gradient(135deg, #DFE3F0 0%, #D0D5E8 100%);
}

.service-card:nth-child(2) .service-image {
    background: linear-gradient(135deg, #E8D8F0 0%, #D8C8E8 100%);
}

.service-card:nth-child(3) .service-image {
    background: linear-gradient(135deg, #C8D8F0 0%, #B8C8E8 100%);
}

.service-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-title-top {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2D3436;
    z-index: 10;
}

.service-title-bottom {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2D3436;
    z-index: 10;
}

/* View All Button */
.view-all-btn {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #00D9FF 0%, #4ECDC4 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.view-all-btn:active {
    transform: translateY(0);
}

/* Decorative Arrow */
.decorative-arrow {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20 80 Q 50 20, 80 80" stroke="%234ECDC4" stroke-width="4" fill="none" stroke-linecap="round"/><path d="M70 70 L 80 80 L 70 90" stroke="%234ECDC4" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.6;
}

/* ===================================
   PROCESS SECTION
   =================================== */

.process-section {
    position: relative;
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #3D2F5B 0%, #2D1F4B 50%, #3D2F5B 100%);
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(108, 92, 231, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(108, 92, 231, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.process-title {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.75rem;
    font-weight: 800;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: white;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 3rem 1rem;
    position: relative;
    min-height: 200px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 2;
}

.process-step:nth-child(1) {
    margin-top: -50px;
}

.process-step:nth-child(3) {
    margin-top: 50px;
}

.process-step:nth-child(5) {
    margin-top: -50px;
}

.process-step:nth-child(7) {
    margin-top: 50px;
}

.process-step:nth-child(9) {
    margin-top: -50px;
}

.process-step:nth-child(11) {
    margin-top: 50px;
}

.process-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.process-circle::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-circle:hover::before {
    opacity: 1;
}

.process-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(255, 255, 255, 0.15);
}

.process-circle.blue {
    background: linear-gradient(135deg, #4A9FF5 0%, #2E7FD8 100%);
}

.process-circle.pink {
    background: linear-gradient(135deg, #FF8FA3 0%, #FF6B85 100%);
}

.process-circle.purple {
    background: linear-gradient(135deg, #B47FFF 0%, #9B5FE8 100%);
}

.process-circle.magenta {
    background: linear-gradient(135deg, #FF7FD8 0%, #E85FC8 100%);
}

.process-circle.green {
    background: linear-gradient(135deg, #5FE8A0 0%, #3FD888 100%);
}

.process-circle.orange {
    background: linear-gradient(135deg, #FFB87F 0%, #FF9F5F 100%);
}

.process-label {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-align: center;
}

.wave-connector {
    margin: 0 -25px;
    align-self: center;
    flex-shrink: 0;
    opacity: 0.6;
}

.process-step:nth-child(2) {
    margin-top: 50px;
}

.process-step:nth-child(4) {
    margin-top: -50px;
}

.process-step:nth-child(6) {
    margin-top: 50px;
}

.process-step:nth-child(8) {
    margin-top: -50px;
}

.process-step:nth-child(10) {
    margin-top: 50px;
}

.process-step:nth-child(12) {
    margin-top: -50px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media screen and (max-width: 1200px) {
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-image {
        height: 240px;
    }
}

@media screen and (max-width: 968px) {
    .clients-section,
    .services-section,
    .process-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .client-logo {
        width: 150px;
        height: 85px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-image {
        height: 260px;
    }
    
    .corner-bracket {
        width: 80px;
        height: 80px;
    }
    
    .decorative-arrow {
        width: 60px;
        height: 60px;
        bottom: 2rem;
        right: 2rem;
    }
    
    .process-flow {
        flex-wrap: wrap;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .process-step {
        margin-top: 0 !important;
    }
    
    .process-circle {
        width: 110px;
        height: 110px;
    }
    
    .process-circle svg {
        width: 35px;
        height: 35px;
    }
    
    .wave-connector {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .client-logo {
        width: 160px;
        height: 90px;
        padding: 1rem;
    }
    
    .clients-track {
        gap: 2.5rem;
    }
    
    .service-name {
        font-size: 1.5rem;
        padding: 1.25rem 1.5rem;
    }
    
    .view-all-btn {
        padding: 0.875rem 2.5rem;
        font-size: 0.95rem;
    }
    
    .corner-bracket {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .clients-section,
    .services-section,
    .process-section {
        padding: 3rem 0;
        overflow-x: hidden;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .client-logo {
        width: 140px;
        height: 80px;
    }
    
    .service-image {
        height: 220px;
        padding: 1.5rem;
    }
    
    .service-title-top,
    .service-title-bottom {
        font-size: 1.5rem;
    }
    
    .decorative-arrow {
        display: none;
    }
    
    .process-flow {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .process-step {
        margin-top: 0 !important;
    }
    
    .process-circle {
        width: 120px;
        height: 120px;
    }
    
    .process-circle svg {
        width: 40px;
        height: 40px;
    }
    
    .process-label {
        font-size: 0.95rem;
    }
}


/* ===================================
   OUR EXPERIENCE SECTION
   =================================== */

.experience-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #F5F7FA 0%, #E8EBF0 50%, #F5F7FA 100%);
    overflow: hidden;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-left {
    position: relative;
}

.experience-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2D3436;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.experience-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #636E72;
    margin-bottom: 2rem;
    max-width: 450px;
}

.about-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #00D9FF 0%, #4ECDC4 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.exp-dot {
    position: absolute;
    border-radius: 50%;
}

.dot-1 {
    width: 15px;
    height: 15px;
    background: #FF6B9D;
    top: 10%;
    left: -5%;
}

.dot-2 {
    width: 20px;
    height: 20px;
    background: #6C5CE7;
    bottom: 20%;
    left: 5%;
}

.dot-3 {
    width: 12px;
    height: 12px;
    background: #4ECDC4;
    top: 50%;
    right: 10%;
}

.experience-right {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-character {
    position: relative;
    z-index: 2;
}

.exp-character img {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(108, 92, 231, 0.2));
}

.stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.15);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(108, 92, 231, 0.25);
}

.stat-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #6C5CE7;
    margin: 0 0 0.25rem 0;
}

.stat-card p {
    font-size: 0.85rem;
    color: #636E72;
    margin: 0;
}

.stat-1 {
    top: 10%;
    left: 15%;
    background: linear-gradient(135deg, rgba(230, 220, 255, 0.95), rgba(240, 235, 255, 0.95));
}

.stat-2 {
    top: 5%;
    right: 10%;
    background: linear-gradient(135deg, rgba(220, 230, 255, 0.95), rgba(235, 240, 255, 0.95));
}

.stat-3 {
    bottom: 25%;
    left: 5%;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.95), rgba(255, 245, 250, 0.95));
}

.stat-4 {
    bottom: 15%;
    right: 15%;
    background: linear-gradient(135deg, rgba(240, 255, 250, 0.95), rgba(245, 255, 252, 0.95));
}

/* ===================================
   OUR PORTFOLIO SECTION
   =================================== */

.portfolio-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #E8E6F2 0%, #E3E0F0 50%, #E8E6F2 100%);
    overflow: hidden;
}

.portfolio-title {
    text-align: center;
    margin-bottom: 3rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    perspective: 1000px;
}

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(108, 92, 231, 0.2);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.portfolio-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.3);
}

.portfolio-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-card.card-1 {
    transform: rotate(-3deg);
}

.portfolio-card.card-2 {
    transform: rotate(2deg);
}

.portfolio-card.card-3 {
    transform: rotate(-2deg);
}

.portfolio-card.card-4 {
    transform: rotate(3deg);
}

.portfolio-card:hover {
    transform: rotate(0deg) translateY(-10px);
}

.portfolio-btn {
    display: block;
    margin: 0 auto;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-section {
    position: relative;
    padding: 5rem 0 2rem;
    background: linear-gradient(135deg, #E8F4F8 0%, #D8EEF5 50%, #E8F4F8 100%);
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.testimonials-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    font-size: 2.75rem;
    font-weight: 800;
    color: #2D3436;
    z-index: 1;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #4ECDC4, transparent);
    border-radius: 10px;
}

.testimonial-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
    padding: 0 2rem;
}

.testimonial-main {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 400px;
}

.testimonial-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.testimonial-image-circle {
    position: relative;
    z-index: 3;
}

.testimonial-image-circle::before {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.3), rgba(78, 205, 196, 0.1));
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.testimonial-image-circle img {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 12px solid #4ECDC4;
    box-shadow: 0 20px 60px rgba(78, 205, 196, 0.4);
    display: block;
    background: white;
    transition: transform 0.3s ease;
}

.testimonial-image-circle:hover img {
    transform: scale(1.02);
}

.testimonial-card {
    background: linear-gradient(135deg, #4ECDC4 0%, #3FBDB4 100%);
    padding: 2.5rem 3rem;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(78, 205, 196, 0.3);
    position: relative;
    z-index: 2;
    width: 650px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 45px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.testimonial-name {
    font-size: 2rem;
    font-weight: 800;
    color: #2D3436;
    margin: 0;
    text-align: center;
}

.testimonial-right {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    flex: 1;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.testimonial-avatars {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    background: #2D3436;
}

.avatar::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
    transition: opacity 0.35s ease;
}

.avatar:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.7);
}

.avatar:hover::after {
    opacity: 0.2;
}

.avatar.active {
    border-color: #FFD700;
    border-width: 5px;
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7);
}

.avatar.active::after {
    opacity: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-character {
    position: absolute;
    right: -100px;
    bottom: 0;
    z-index: 3;
}

.testimonial-character img {
    width: 300px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(78, 205, 196, 0.3));
    transition: transform 0.3s ease;
}

.testimonial-character:hover img {
    transform: translateY(-10px);
}

/* ===================================
   RESPONSIVE - NEW SECTIONS
   =================================== */

@media screen and (max-width: 968px) {
    .experience-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .experience-title {
        font-size: 2.75rem;
    }
    
    .experience-description {
        max-width: 100%;
        margin: 0 auto 2rem;
    }
    
    .experience-right {
        height: 400px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-main {
        flex-direction: column;
        gap: 3rem;
        min-height: auto;
    }
    
    .testimonial-left {
        width: 100%;
    }
    
    .testimonial-right {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .testimonial-image-circle img {
        width: 240px;
        height: 240px;
        border: 10px solid #4ECDC4;
    }
    
    .testimonial-card {
        padding: 3rem 2.5rem;
        border-radius: 35px;
    }
    
    .testimonial-name {
        font-size: 2.25rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .testimonial-avatars {
        justify-content: center;
    }
    
    .testimonial-character {
        margin: 0 auto;
    }
    
    .testimonial-character img {
        width: 240px;
    }
}

@media screen and (max-width: 768px) {
    .experience-title {
        font-size: 2.25rem;
    }
    
    .exp-character img {
        width: 280px;
    }
    
    .stat-card {
        padding: 1rem 1.25rem;
    }
    
    .stat-card h3 {
        font-size: 1.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-card {
        transform: rotate(0deg) !important;
    }
    
    .testimonial-image-circle img {
        width: 200px;
        height: 200px;
        border: 8px solid #4ECDC4;
    }
    
    .testimonial-card {
        padding: 2.5rem 2rem;
        border-radius: 30px;
    }
    
    .testimonial-name {
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .avatar {
        width: 65px;
        height: 65px;
    }
    
    .testimonial-character {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .experience-section,
    .portfolio-section,
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .experience-title {
        font-size: 2rem;
    }
    
    .experience-right {
        height: 350px;
    }
    
    .exp-character img {
        width: 220px;
    }
    
    .stat-card {
        padding: 0.75rem 1rem;
    }
    
    .stat-card h3 {
        font-size: 1.25rem;
    }
    
    .stat-card p {
        font-size: 0.75rem;
    }
    
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .testimonial-main {
        padding: 1.5rem 1rem;
        gap: 2rem;
    }
    
    .testimonial-image-circle img {
        width: 160px;
        height: 160px;
        border: 6px solid #4ECDC4;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
        border-radius: 25px;
    }
    
    .testimonial-name {
        font-size: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .avatar {
        width: 55px;
        height: 55px;
        border: 3px solid rgba(255, 255, 255, 0.4);
    }
    
    .testimonial-character {
        display: none;
    }
}


/* ===================================
   TECHNOLOGIES SECTION
   =================================== */

.technologies-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #F5F7FA 0%, #E8EBF0 50%, #F5F7FA 100%);
    overflow: hidden;
}

.technologies-section::before {
    content: '';
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15) 0%, rgba(139, 126, 240, 0.1) 100%);
    border-radius: 50%;
    filter: blur(40px);
}

.technologies-section::after {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15) 0%, rgba(0, 217, 255, 0.1) 100%);
    border-radius: 50%;
    filter: blur(40px);
}

.tech-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.75rem;
    font-weight: 800;
    color: #2D3436;
}

.tech-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tech-tab {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #636E72;
    background: white;
    border: 2px solid #E8EBF0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-tab:hover {
    border-color: #6C5CE7;
    color: #6C5CE7;
    transform: translateY(-2px);
}

.tech-tab.active {
    background: linear-gradient(135deg, #6C5CE7 0%, #8B7EF0 100%);
    color: white;
    border-color: #6C5CE7;
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.3);
}

.tech-content {
    position: relative;
    min-height: 350px;
}

.tech-content::before {
    content: '';
    position: absolute;
    left: 5%;
    top: 30%;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(255, 107, 157, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
}

.tech-content::after {
    content: '';
    position: absolute;
    right: 5%;
    bottom: 20%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2) 0%, rgba(78, 205, 196, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
}

.tech-panel {
    display: none;
    animation: fadeIn 0.5s ease;
    position: relative;
    z-index: 1;
}

.tech-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-10px);
}

.tech-icon {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.tech-icon:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: scale(1.08);
}

.tech-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.tech-icon.cyan {
    background: linear-gradient(135deg, #D0F5F8 0%, #B8EEF5 100%);
}

.tech-icon.yellow {
    background: linear-gradient(135deg, #FFF4C8 0%, #FFEAA0 100%);
}

.tech-icon.blue {
    background: linear-gradient(135deg, #D0E0F8 0%, #B8D0F0 100%);
}

.tech-icon.orange {
    background: linear-gradient(135deg, #FFE0D0 0%, #FFD0B8 100%);
}

.tech-icon.teal {
    background: linear-gradient(135deg, #B8F5E8 0%, #A0EED8 100%);
}

.tech-icon.green {
    background: linear-gradient(135deg, #D0F8D8 0%, #B8F0C8 100%);
}

.tech-icon.red {
    background: linear-gradient(135deg, #FFD0D8 0%, #FFB8C8 100%);
}

.tech-icon.purple {
    background: linear-gradient(135deg, #E8D0F8 0%, #D8B8F0 100%);
}

.tech-name {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #2D3436;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.tech-item:hover .tech-name {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE - TECHNOLOGIES
   =================================== */

@media screen and (max-width: 968px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 2rem;
    }
    
    .tech-icon {
        width: 140px;
        height: 140px;
    }
    
    .tech-icon img {
        width: 70px;
        height: 70px;
    }
    
    .tech-content::before,
    .tech-content::after {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 768px) {
    .tech-tabs {
        gap: 0.75rem;
    }
    
    .tech-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .technologies-section {
        padding: 3rem 0;
    }
    
    .tech-title {
        font-size: 2rem;
    }
    
    .tech-tabs {
        gap: 0.5rem;
    }
    
    .tech-tab {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .tech-icon {
        width: 120px;
        height: 120px;
    }
    
    .tech-icon img {
        width: 60px;
        height: 60px;
    }
    
    .tech-name {
        font-size: 0.9rem;
    }
    
    .tech-content::before,
    .tech-content::after {
        width: 120px;
        height: 120px;
    }
}
