/* About Page Professional Header */
.about-header {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

.header-background-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a237e 0%, #283593 25%, #3949ab 50%, #5c6bc0 75%, #7986cb 100%);
    z-index: -2;
}

.header-background-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ffffff;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23ffffff;stop-opacity:0" /></linearGradient></defs><path d="M0,200 Q300,100 600,200 T1200,200 L1200,400 L0,400 Z" fill="url(%23grad1)" /><path d="M0,250 Q300,150 600,250 T1200,250 L1200,400 L0,400 Z" fill="url(%23grad1)" opacity="0.5" /></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 35, 126, 0.8) 0%, rgba(57, 73, 171, 0.6) 100%);
    z-index: -1;
}

.header-content {
    text-align: center;
    color: white;
    z-index: 1;
    position: relative;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 16px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

.current {
    color: white;
    font-weight: 500;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" /><circle cx="50" cy="50" r="2" fill="%23e0e0e0" opacity="0.5" /></svg>') repeat;
    background-size: 100px 100px;
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #3949ab;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.line-ed {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3949ab, #5c6bc0);
    border-radius: 1px;
}

.click-particles {
    display: inline-flex;
    gap: 3px;
}

.click-particles .particle {
    width: 4px;
    height: 4px;
    background: #3949ab;
    border-radius: 50%;
    animation: particle-float 3s ease-in-out infinite;
}

.click-particles .particle:nth-child(2) {
    animation-delay: 0.5s;
}

.click-particles .particle:nth-child(3) {
    animation-delay: 1s;
}

.click-particles .particle:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3949ab, #5c6bc0);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3949ab, #5c6bc0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(57, 73, 171, 0.2);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #3949ab, #5c6bc0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    position: relative;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(57, 73, 171, 0.3);
}

.value-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #3949ab, #5c6bc0);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.value-card:hover h3 {
    color: #3949ab;
}

.value-card p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-header {
        min-height: 300px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .values-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .breadcrumb {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .value-card {
        padding: 25px 15px;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-new-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-new-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 18% 12%, rgba(100, 181, 246, 0.10), transparent 55%),
                radial-gradient(circle at 86% 82%, rgba(42, 82, 152, 0.08), transparent 60%);
    opacity: 0.95;
    pointer-events: none;
    z-index: -1;
}

.testimonials-new-section .services-concept-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.testimonials-new-section .about-title-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    text-align: center;
    width: 100%;
}

.testimonials-new-section .about-title-main::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
    border-radius: 2px;
}

.testimonials-new-section .about-description-main {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
}

/* ========================================
   MODERN PORTFOLIO SECTION
   ======================================== */

.modern-portfolio-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.modern-portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 18% 12%, rgba(100, 181, 246, 0.10), transparent 55%),
                radial-gradient(circle at 86% 82%, rgba(42, 82, 152, 0.08), transparent 60%);
    opacity: 0.95;
    pointer-events: none;
    z-index: -1;
}

.modern-portfolio-section .services-concept-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.modern-portfolio-section .about-title-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    text-align: center;
    width: 100%;
}

.modern-portfolio-section .about-title-main::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--light-blue));
    border-radius: 2px;
}

.modern-portfolio-section .about-description-main {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3949ab, #5c6bc0);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(57, 73, 171, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #283593, #3949ab);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(57, 73, 171, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

.scroll-to-top i {
    color: white;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-to-top:hover .btn-glow {
    opacity: 1;
}

/* Responsive Design for Scroll to Top */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
    }
    
    .scroll-to-top i {
        font-size: 14px;
    }
}
