/* About Section - Exact Match to Original Elementor Design */

.about-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%,
        rgba(248, 251, 255, 1) 50%,
        rgba(255, 255, 255, 1) 100%);
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    min-height: 400px;
    text-align: center;
}

.about-text-content {
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

/* UFG Logo Watermark - Exact Match to Original Position */
.about-section::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 10%;
    width: 300px;
    height: 300px;
    background-image: url('/assets/images/aufg-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.08;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    animation: fadeInBackground 2s ease-out 1s both,
               gentleFloat 15s ease-in-out 3s infinite;
}

/* About Heading - Exact Match to Original Elementor Properties */
.about-heading {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: normal;
    text-decoration: none;
    line-height: 1em;
    letter-spacing: 0.04em;
    color: #0C4F7C;
    margin: 0 0 30px 0;
    text-align: center;
}

/* About Description */
.about-description {
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-description p {
    margin: 0 0 16px 0;
    font-size: 16px;
    line-height: 1.6;
    font-family: "Roboto", sans-serif;
}

/* Text Styling - Exact Match to Original Image */
.company-name {
    font-weight: 600;
    color: #1e88e5;
}

.text-content {
    color: #333333;
    font-weight: 400;
}

.year {
    font-weight: 600;
    color: #1e88e5;
}

/* Button Container */
.about-button-container {
    text-align: center;
    margin-top: 24px;
}

/* Learn More Button - Exact Match to Original */
.about-learn-more-btn {
    background: linear-gradient(135deg, #038BB9 0%, #1169B5 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(3, 139, 185, 0.2);
    font-family: inherit;
    min-width: 150px;
    transform: translateY(0px) scale(1);
}

.about-learn-more-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(3, 139, 185, 0.3);
}

.about-learn-more-btn:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 6px rgba(3, 139, 185, 0.2);
}

/* Video section now handled by modern-video-player.css */

/* Animations - Exact Match */
@keyframes fadeInBackground {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.03;
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.02);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        gap: 40px;
    }
    
    .about-heading {
        font-size: 28px;
    }
    
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .about-text-content {
        max-width: 100%;
    }
    
    .about-heading {
        font-size: 24px;
        text-align: center;
    }
    
    .about-description {
        text-align: center;
    }
    
    
    /* Mobile logo positioning */
    .about-text-content::before {
        width: 300px;
        height: 300px;
        right: -30%;
        opacity: 0.02;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-container {
        padding: 0 15px;
    }
    
    .about-heading {
        font-size: 22px;
    }
    
    .about-description p {
        font-size: 14px;
    }
    
    .about-learn-more-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
}

/* Ensure proper typography */
.about-section * {
    box-sizing: border-box;
}

/* Content layering */
.about-content > * {
    position: relative;
    z-index: 1;
}