/* 🚀 Ultra-Peak About Section */

.about-section {
    background: linear-gradient(135deg, #60eafc, #ffffff);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #333;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.25);
    padding: 120px 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
    perspective: 1000px;
    transform-style: preserve-3d;
    z-index: 1;
}

/* 🌌 Ambient Glow Orbs */
.about-section::before,
.about-section::after {
    content: '';
    position: absolute;
    background: radial-gradient(circle, rgba(0, 150, 136, 0.4), transparent);
    border-radius: 50%;
    animation: rotate-scale-extreme 12s infinite ease-in-out;
    opacity: 0.6;
    pointer-events: none;
    filter: blur(30px);
    z-index: 0;
}

.about-section::before {
    top: -200px;
    left: -200px;
    width: 420px;
    height: 420px;
    animation-delay: 0s;
}

.about-section::after {
    bottom: -250px;
    right: -250px;
    width: 520px;
    height: 520px;
    animation-delay: 5s;
}

/* 🌟 Sparkle Particle Layer */
.about-section::after {
    content: '';
    pointer-events: none;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png'); /* Lightweight sparkle texture */
    mix-blend-mode: screen;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 2;
    animation: shimmer-layer 20s infinite linear;
}

/* 🔥 Animated Gradient Text Title */
.about-section h2 {
    font-size: 4.2rem;
    margin-bottom: 50px;
    font-family: 'Arial Black', sans-serif;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    animation: fade-in-bounce-extreme 1.5s ease-out;
    background: linear-gradient(90deg, #ff6f00, #ffa726, #ff8a65);
    background-size: 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 6px 6px 20px rgba(0, 0, 0, 0.25);
    animation: gradient-shimmer 8s infinite linear;
}

/* ✨ Paragraph Glow & Animation */
.about-section p {
    font-size: 1.8rem;
    line-height: 2.6;
    max-width: 950px;
    margin: 0 auto 35px;
    color: #333;
    position: relative;
    z-index: 3;
    animation: slide-up-fade-extreme 2s ease-in-out;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.about-section p:hover {
    transform: scale(1.02);
}

/* 🔗 Stylish Links */
.about-section p a {
    color: #004d40;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 4px solid transparent;
    background: linear-gradient(90deg, #004d40, #009688);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.about-section p a:hover {
    border-bottom: 4px solid #004d40;
    background: linear-gradient(90deg, #00796b, #004d40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.1);
}

/* 🌀 Keyframes */
@keyframes rotate-scale-extreme {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.6) rotate(360deg);
    }
}

@keyframes fade-in-bounce-extreme {
    0% {
        opacity: 0;
        transform: translateY(-60px);
    }
    60% {
        opacity: 1;
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes slide-up-fade-extreme {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradient-shimmer {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 200%;
    }
}

@keyframes shimmer-layer {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}

/* 📱 Responsive Upgrades */
@media (max-width: 1024px) {
    .about-section {
        padding: 100px 30px;
    }

    .about-section h2 {
        font-size: 3.5rem;
    }

    .about-section p {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 20px;
    }

    .about-section h2 {
        font-size: 3rem;
    }

    .about-section p {
        font-size: 1.2rem;
    }
}
