/* About Section Styles */
.about-section {
    background-color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background accent */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: rgba(0, 86, 179, 0.03);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

/* Section title with same styling as services */
.about-section .section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.about-section .section-title h2 {
    font-weight: 700;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-section .section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0056b3, #0088ff);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.about-section .section-title p {
    color: #555;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 25px auto 0;
}

/* Main content container */
.about-container {
    position: relative;
    z-index: 1;
}

/* Left side - content */
.about-content {
    padding-right: 30px;
}

.about-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0056b3, #0088ff);
    border-radius: 1.5px;
}

.about-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Feature list */
.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(0, 86, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 86, 179, 0.1);
}

.feature-icon i {
    color: #0056b3;
    font-size: 20px;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Right side - image */
.about-image-container {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-image-main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    height: 100%;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animated shape accent */
.shape-accent {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 25px solid rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    bottom: -40px;
    left: -60px;
    z-index: 1;
    animation: pulse 4s infinite ease-in-out;
}

/* Experience badge */
.experience-badge {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0056b3, #0088ff);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3);
    z-index: 3;
}

.experience-badge .number {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA button with same styling as service buttons */
.about-cta {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #0056b3, #0088ff);
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
}

.about-cta:hover {
    background: linear-gradient(90deg, #0088ff, #0056b3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.3);
    color: #fff;
}

/* Animation for the shape */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .about-image-container {
        min-height: 350px;
    }
    
    .shape-accent {
        width: 150px;
        height: 150px;
        border-width: 20px;
    }
}

@media (max-width: 767px) {
    .about-section::before {
        width: 100%;
        clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 85%);
        height: 50%;
        opacity: 0.5;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
    }
    
    .experience-badge .number {
        font-size: 1.8rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    .about-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
}
