/* Custom CSS for About Section - Enhanced Design */
.about-three {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    overflow: hidden;
}

.about-three__bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 49%, rgba(212, 175, 55, 0.02) 50%, transparent 51%);
    background-size: 300px 300px, 200px 200px, 50px 50px;
    z-index: 1;
}

.about-three__floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 231, 157, 0.1));
    animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

.about-three .container {
    position: relative;
    z-index: 2;
}

.about-three__images {
    position: relative;
    padding: 20px;
}

.about-three__image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.decoration-circle-1 {
    width: 150px;
    height: 150px;
    top: -20px;
    right: -20px;
    border-style: dashed;
}

.decoration-circle-2 {
    width: 100px;
    height: 100px;
    bottom: 50px;
    left: -30px;
    border-style: dotted;
    animation-direction: reverse;
}

.decoration-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    height: 2px;
    width: 100px;
}

.decoration-line-1 {
    top: 30%;
    right: -50px;
    transform: rotate(45deg);
    animation: pulse 3s ease-in-out infinite;
}

.decoration-line-2 {
    bottom: 30%;
    left: -50px;
    transform: rotate(-45deg);
    animation: pulse 3s ease-in-out infinite 1.5s;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1) rotate(45deg); }
    50% { opacity: 1; transform: scale(1.1) rotate(45deg); }
}

.about-three__main-image {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.about-three__main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-three__main-image:hover img {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(244, 231, 157, 0.8));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: all 0.4s ease;
    cursor: pointer;
}

.about-three__main-image:hover .image-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 4rem;
    color: white;
    margin-bottom: 15px;
    animation: pulse-icon 2s ease-in-out infinite;
}

.overlay-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.about-three__overlay-image {
    position: absolute;
    top: 40px;
    right: -30px;
    z-index: 3;
    width: 220px;
    height: 280px;
}

.about-three__overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    border: 6px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-three__overlay-image:hover img {
    transform: scale(1.05) rotate(2deg);
}

.image-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    background: linear-gradient(135deg, #d4af37, #f4e79d);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.about-three__experience-badge {
    position: absolute;
    bottom: 60px;
    left: -40px;
    z-index: 4;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    padding: 35px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: white;
    min-width: 180px;
    transform: rotate(-8deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.about-three__experience-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.about-three__experience-badge:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.05);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37, #f4e79d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.badge-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.badge-text {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #ccc;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.badge-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #d4af37;
    border-radius: 50%;
    animation: particle-float 4s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle-2 {
    top: 30%;
    right: 25%;
    animation-delay: 1.3s;
}

.particle-3 {
    bottom: 25%;
    left: 30%;
    animation-delay: 2.6s;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0) opacity(0.7); }
    50% { transform: translateY(-15px) opacity(1); }
}

.about-three__stats {
    margin-top: 30px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.about-three__stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4e79d, #d4af37);
    background-size: 200% 100%;
    animation: gradient-slide 3s ease-in-out infinite;
}

@keyframes gradient-slide {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.stats-header {
    text-align: center;
    margin-bottom: 25px;
}

.stats-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.stats-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4e79d);
    margin: 0 auto;
    border-radius: 2px;
}

.stat-item {
    padding: 20px 15px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #f4e79d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.stat-progress {
    width: 100%;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #f4e79d);
    border-radius: 3px;
    width: 0;
    transition: width 2s ease-in-out;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progress-shimmer 2s ease-in-out infinite;
}

@keyframes progress-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.about-three__content {
    padding-left: 40px;
}

.about-description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-three__achievements {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.achievement-item {
    text-align: center;
    padding: 20px 15px;
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37, #f4e79d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.achievement-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.achievement-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.specialties-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.specialties-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4e79d);
    border-radius: 2px;
}

.specialty-item {
    padding: 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.specialty-item:hover {
    transform: translateX(5px);
    border-left-color: #d4af37;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.specialty-icon i {
    font-size: 1.8rem;
    color: #d4af37;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.specialty-item:hover .specialty-icon i {
    background: #d4af37;
    color: white;
    transform: scale(1.1);
}

.specialty-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.specialty-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.cta-wrapper {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    padding: 40px;
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d4af37, #f4e79d);
    border-radius: 50%;
    transform: translate(30px, -30px);
    opacity: 0.1;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.cta-text {
    font-size: 1rem;
    color: #ccc;
    margin: 0;
    line-height: 1.6;
}

.contact-quick {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-icon i {
    font-size: 1.5rem;
    color: #d4af37;
}

.contact-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-number:hover {
    color: #d4af37;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .about-three__content {
        padding-left: 20px;
    }
    
    .about-three__overlay-image {
        right: -20px;
        width: 200px;
        height: 250px;
    }
}

@media (max-width: 991px) {
    .about-three__content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .about-three__overlay-image {
        position: relative;
        top: 20px;
        right: 0;
        width: 180px;
        height: 220px;
        margin: 20px auto;
    }
    
    .about-three__experience-badge {
        position: relative;
        left: 0;
        bottom: 0;
        margin: 20px auto;
        display: inline-block;
        transform: rotate(0deg);
    }
}

@media (max-width: 767px) {
    .about-three {
        padding: 60px 0;
    }
    
    .about-three__main-image img {
        height: 300px;
    }
    
    .about-three__overlay-image {
        width: 150px;
        height: 180px;
    }
    
    .badge-number {
        font-size: 2.2rem;
    }
    
    .cta-wrapper {
        padding: 30px 20px;
        text-align: center;
    }
    
    .cta-wrapper .row {
        flex-direction: column;
    }
    
    .cta-buttons {
        margin-top: 20px;
    }
    
    .achievement-item,
    .specialty-item {
        margin-bottom: 20px;
    }
}
