/* Enhanced About Page Styles */

/* ========================================
   Company Profile Section
========================================= */
.company-profile-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4f9 100%);
}

.profile-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 102, 179, 0.15);
    transform: translateZ(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.profile-image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 102, 179, 0.25);
}

.profile-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 179, 0.1) 0%, transparent 100%);
    z-index: 1;
}

.profile-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.profile-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066b3;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.profile-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0066b3, #00a0d6);
    border-radius: 2px;
}

.profile-highlights {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.profile-highlights li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.profile-highlights li:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 102, 179, 0.15);
}

.profile-highlights i {
    color: #0066b3;
    font-size: 1.3rem;
    margin-right: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.profile-description {
    line-height: 1.8;
    color: #374151;
    font-size: 1.05rem;
    padding: 1.5rem;
    background: white;
    border-left: 4px solid #0066b3;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* ========================================
   Experience & Sectors Section
========================================= */
.experience-section {
    padding: 5rem 0;
    background: white;
}

.experience-header {
    text-align: center;
    margin-bottom: 4rem;
}

.experience-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0066b3 0%, #00a0d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.experience-header .subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.sector-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 179, 0.1), transparent);
    transition: left 0.5s ease;
}

.sector-card:hover::before {
    left: 100%;
}

.sector-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 102, 179, 0.2);
    border-color: #0066b3;
}

.sector-card i {
    font-size: 3rem;
    color: #0066b3;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.sector-card:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #00a0d6;
}

.sector-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.project-experience-box {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #0066b3 0%, #004c8a 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 102, 179, 0.3);
}

.project-experience-box h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.project-experience-box ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.project-experience-box li {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.project-experience-box li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.project-experience-box i {
    color: #a8d5ea;
    font-size: 1.3rem;
    margin-right: 1rem;
}

/* ========================================
   Services Section
========================================= */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e8f4f9 0%, #f8fafc 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066b3;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card-enhanced {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0066b3, #00a0d6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-enhanced:hover::before {
    transform: scaleX(1);
}

.service-card-enhanced:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 102, 179, 0.2);
}

.service-icon-enhanced {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066b3 0%, #00a0d6 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 102, 179, 0.3);
    transition: all 0.4s ease;
}

.service-card-enhanced:hover .service-icon-enhanced {
    transform: rotateY(360deg) scale(1.1);
}

.service-icon-enhanced i {
    font-size: 2.5rem;
    color: white;
}

.service-card-enhanced h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-description-box {
    padding: 2.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-left: 4px solid #0066b3;
}

.service-description-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin: 0;
}

/* ========================================
   ISO Certification Section
========================================= */
.iso-section-enhanced {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, #fff 0%, #e8f4f9 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #0066b3;
}

.iso-badge-enhanced {
    flex-shrink: 0;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #0066b3 0%, #004c8a 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 102, 179, 0.3);
    min-width: 200px;
}

.iso-badge-enhanced i {
    font-size: 4rem;
    color: #FFD700;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.iso-badge-enhanced h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.iso-content-enhanced {
    flex: 1;
}

.iso-content-enhanced p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #374151;
    margin: 0;
}

/* ========================================
   Technical Personnel Section
========================================= */
.technical-section-enhanced {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #0066b3 0%, #00a0d6 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 102, 179, 0.3);
    color: white;
}

.technical-icon-enhanced {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.technical-icon-enhanced i {
    font-size: 4rem;
    color: white;
}

.technical-content-enhanced h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.technical-content-enhanced p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* ========================================
   Milestone Timeline
========================================= */
.milestone-section {
    padding: 5rem 0;
    background: white;
}

.milestone-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: #0066b3;
    margin-bottom: 4rem;
    position: relative;
}

.milestone-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0066b3, #00a0d6);
    border-radius: 2px;
}

.timeline-vertical-enhanced {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-vertical-enhanced::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0066b3 0%, #00a0d6 100%);
    transform: translateX(-50%);
}

.timeline-item-enhanced {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item-enhanced:nth-child(odd) {
    flex-direction: row;
}

.timeline-item-enhanced:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year-enhanced {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066b3 0%, #00a0d6 100%);
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0, 102, 179, 0.4);
    position: relative;
    z-index: 2;
    margin: 0 3rem;
    border: 6px solid white;
}

.timeline-content-enhanced {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border-left: 4px solid #0066b3;
    transition: all 0.3s ease;
}

.timeline-item-enhanced:nth-child(even) .timeline-content-enhanced {
    border-left: none;
    border-right: 4px solid #0066b3;
}

.timeline-content-enhanced:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 102, 179, 0.2);
}

.timeline-content-enhanced p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin: 0;
}

/* ========================================
   Responsive Design
========================================= */
@media (max-width: 968px) {
    .profile-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .profile-image-wrapper img {
        height: 400px;
    }
    
    .sectors-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .services-grid-enhanced {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .iso-section-enhanced,
    .technical-section-enhanced {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-vertical-enhanced::before {
        left: 30px;
    }
    
    .timeline-item-enhanced,
    .timeline-item-enhanced:nth-child(even) {
        flex-direction: row;
        padding-left: 0;
    }
    
    .timeline-year-enhanced {
        width: 80px;
        height: 80px;
        font-size: 1.3rem;
        margin: 0 2rem 0 0;
        position: absolute;
        left: 0;
    }
    
    .timeline-content-enhanced {
        margin-left: 120px;
    }
}

@media (max-width: 640px) {
    .profile-content h2 {
        font-size: 2rem;
    }
    
    .experience-header h2 {
        font-size: 2rem;
    }
    
    .sector-card {
        padding: 1.5rem 1rem;
    }
    
    .sector-card i {
        font-size: 2rem;
    }
    
    .project-experience-box {
        padding: 2rem;
    }
    
    .project-experience-box ul {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Animations
========================================= */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}
