/* 🌄 About Hero Section */

.hero-about {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.85), rgba(23, 42, 69, 0.9)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
    padding: 130px 20px;
    overflow: hidden;
}

.hero-about::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.2), transparent 70%);
    filter: blur(90px);
    z-index: 0;
}

.hero-about::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.15), transparent 70%);
    filter: blur(90px);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease forwards;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00e5ff, #8e2de2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #d1d9e6;
    line-height: 1.7;
    opacity: 0.9;
}


/* ✨ Fade-in Animation */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 📱 Responsive Design */

@media (max-width: 768px) {
    .hero-about {
        padding: 100px 15px;
    }
    .hero-content h1 {
        font-size: 2.3rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}


/* Unique & modern dark-themed mission section */

.our-mission {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #f0f0f0;
    padding: 80px 20px;
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.our-mission .container {
    max-width: 900px;
    margin: 0 auto;
}

.our-mission h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.our-mission h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    margin: 10px auto 0;
    border-radius: 5px;
}

.our-mission p {
    font-size: 1.1rem;
    color: #dcdcdc;
    line-height: 1.8;
    margin-top: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
}


/* Subtle floating effect */

.our-mission {
    animation: fadeInUp 1.5s ease;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* 🔥 UNIVERSAL ENHANCEMENTS */

:root {
    --glow-blue: #00d9ff;
    --glow-pink: #ff6ec7;
    --bg-dark-1: #0b0f19;
    --bg-dark-2: #1a1f2b;
    --text-light: #f2f2f2;
    --text-muted: #b0b0b0;
}


/* 🌍 HOW WE WORK SECTION */

.how-we-work {
    background: radial-gradient(circle at top right, #111727, #0b0f19 70%);
    color: var(--text-light);
    padding: 90px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.how-we-work::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.12), transparent 60%);
    animation: pulse-glow 8s infinite alternate;
    z-index: 0;
}

.how-we-work h2 {
    font-size: 2.6rem;
    color: #ffffff;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.how-we-work h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--glow-blue), #0072ff);
    margin: 12px auto 0;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--glow-blue);
}

.how-we-work .work-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.how-we-work .step {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 25px;
    width: 320px;
    padding: 30px;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.08);
    transform: translateY(0);
}

.how-we-work .step:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.4);
    border-color: rgba(0, 217, 255, 0.6);
}

.how-we-work .step img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.how-we-work .step:hover img {
    transform: scale(1.05);
}

.how-we-work .step h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.how-we-work .step p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}


/* 💫 MEET THE TEAM SECTION */

.meet-the-team {
    background: linear-gradient(135deg, #121826, #1e1b2e 80%);
    color: var(--text-light);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.meet-the-team::before {
    content: "";
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle, rgba(255, 110, 199, 0.15), transparent 60%);
    animation: pulse-glow 8s infinite alternate-reverse;
    z-index: 0;
}

.meet-the-team h2 {
    font-size: 2.6rem;
    color: #ffffff;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.meet-the-team h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--glow-pink), #ff0080);
    margin: 14px auto 0;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--glow-pink);
}

.meet-the-team .team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.meet-the-team .member {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 110, 199, 0.15);
    border-radius: 25px;
    width: 270px;
    padding: 25px;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 110, 199, 0.1);
}

.meet-the-team .member:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 0 25px rgba(255, 110, 199, 0.4);
    border-color: rgba(255, 110, 199, 0.5);
}

.meet-the-team .member img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.meet-the-team .member:hover img {
    transform: scale(1.08);
}

.meet-the-team .member h3 {
    color: #fff;
    margin-bottom: 6px;
    font-size: 1.2rem;
}

.meet-the-team .member p {
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}


/* ✨ Animations */

@keyframes pulse-glow {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }
    100% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}


/* 🌟 TESTIMONIALS SECTION */

.testimonials {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #f1f1f1;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}


/* Soft glow background */

.testimonials::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15), transparent 70%);
    animation: pulse-glow 8s infinite alternate;
    z-index: 0;
}


/* Heading */

.testimonials h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00e5ff, #ff6ec4);
    margin: 12px auto 0;
    border-radius: 5px;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
}


/* Scrollable container */

.testimonial-header {
    position: relative;
    z-index: 1;
    height: 330px;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    scroll-behavior: smooth;
}


/* Hide ugly scrollbar */

.testimonial-header::-webkit-scrollbar {
    width: 6px;
}

.testimonial-header::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00e5ff, #ff6ec4);
    border-radius: 10px;
}


/* Individual testimonial card */

.testimonial {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 30px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    text-align: center;
}

.testimonial:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
    border-color: rgba(0, 229, 255, 0.5);
}


/* Feedback text */

.testimonial h3 {
    font-size: 1.1rem;
    color: #cfd8dc;
    font-weight: 400;
    margin-top: 10px;
    line-height: 1.6;
}


/* Username */

.testimonial p {
    color: #00e5ff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}


/* ✨ Pulse animation for glow effects */

@keyframes pulse-glow {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }
    100% {
        opacity: 0.5;
        transform: scale(1.15);
    }
}


/* 🌌 DiscoverEase Testimonials */

.discoverease-testimonials {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #f1f1f1;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}


/* Soft glow animation behind */

.discoverease-testimonials::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2), transparent 70%);
    filter: blur(80px);
    animation: glowingPulse 10s infinite alternate;
    z-index: 0;
}


/* Heading */

.discoverease-testimonials h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.discoverease-testimonials h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin: 12px auto 0;
    background: linear-gradient(90deg, #00e5ff, #ff6ec4);
    border-radius: 5px;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
}


/* Testimonial list container */

.testimonial-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    z-index: 1;
    position: relative;
}


/* Each testimonial card */

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 30px 25px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
    border-color: rgba(0, 229, 255, 0.4);
}


/* Feedback text */

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #cfd8dc;
    margin-bottom: 15px;
    font-style: italic;
}


/* Username */

.testimonial-author {
    display: block;
    color: #00e5ff;
    font-weight: 600;
    font-size: 0.95rem;
}


/* Animation */

@keyframes glowingPulse {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }
    100% {
        opacity: 0.4;
        transform: scale(1.15);
    }
}


/* Responsive */

@media (max-width: 768px) {
    .testimonial-card {
        width: 100%;
        max-width: 400px;
    }
}


/* Call to Action Section */

.cta {
    position: relative;
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1526772662000-3f88f10405ff?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    opacity: 0.25;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1.5s ease;
}

.cta h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f8f8f8;
    line-height: 1.7;
}

.cta-btn {
    background: #fff;
    color: #ee0979;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-btn:hover {
    background: #ff6a00;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}


/* Animation */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive */

@media (max-width: 768px) {
    .cta h2 {
        font-size: 2rem;
    }
    .cta p {
        font-size: 1rem;
    }
}