/* About Us Section - Modern Hexagon Design */
/* Using Logo Colors: Orange (#FF9A3C), Pink (#FF4D7D), Purple (#8B5CF6), Blue (#3B82F6) */

.about-us-modern-section {
    padding: 6rem 0;
    background: rgba(13, 17, 23, 0.6);
    position: relative;
    overflow: hidden;
}

.about-us-modern-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 154, 60, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Header */
.about-us-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.about-hex-icon-large {
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: #fff;
    animation: about-hex-float 4s ease-in-out infinite;
}

@keyframes about-hex-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

.about-us-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* Content */
.about-us-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.about-hex-border {
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.3), rgba(139, 92, 246, 0.3));
    padding: 3px;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.about-hex-border:hover {
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.5), rgba(255, 77, 125, 0.5));
    box-shadow: 0 15px 40px rgba(255, 154, 60, 0.3);
}

.about-hex-content {
    background: rgba(13, 17, 23, 0.95);
    border-radius: 22px;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Content Styling */
.about-hex-content h1,
.about-hex-content h2,
.about-hex-content h3,
.about-hex-content h4,
.about-hex-content h5,
.about-hex-content h6 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-hex-content h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hex-content h2 {
    font-size: 2rem;
    color: #FF9A3C;
}

.about-hex-content h3 {
    font-size: 1.5rem;
    color: #FF4D7D;
}

.about-hex-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-hex-content ul,
.about-hex-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.about-hex-content li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-hex-content a {
    color: #FF9A3C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-hex-content a:hover {
    color: #FF4D7D;
}

.about-hex-content strong {
    color: #fff;
    font-weight: 600;
}

.about-hex-content blockquote {
    border-left: 4px solid #FF9A3C;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-us-modern-section {
        padding: 4rem 0;
    }
    
    .about-us-title {
        font-size: 2.5rem;
    }
    
    .about-hex-icon-large {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .about-hex-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-us-title {
        font-size: 2rem;
    }
    
    .about-hex-icon-large {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }
    
    .about-hex-content {
        padding: 2rem;
        font-size: 1rem;
    }
    
    .about-hex-content h1 {
        font-size: 2rem;
    }
    
    .about-hex-content h2 {
        font-size: 1.5rem;
    }
    
    .about-hex-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .about-us-modern-section {
        padding: 3rem 0;
    }
    
    .about-us-header {
        margin-bottom: 2.5rem;
    }
    
    .about-hex-icon-large {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .about-us-title {
        font-size: 1.8rem;
    }
    
    .about-hex-content {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
}

/* Loading Animation */
@keyframes about-content-load {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.about-hex-border {
    animation: about-content-load 0.6s ease forwards;
}
