/* Base Styles */

@import url('./assets/fonts/Poppins/poppins.css');

* {
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #2a2a2a;
    --accent-color: #FF4D6E;
    --highlight-color: #FF8FA3;
    --light-bg: #fff9fb;
    --text-dark: #333;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --primary-pink: #FFB6C1;
    --dark-bg: #0A0A0A;
    --light-pink: #FFF0F5;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.logo img {
    height: 50px;
    margin-right: 10px;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.2)),
                url('img/Lumiq-Academy-Banner-Color.jpg') fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero-content p {
    margin-bottom: 1rem;
    color: #fff0f0;
}

.hero-content button {
    margin-top: 1.5rem;
}
.highlight {
    color: var(--highlight-color);
}

/* Verification Page */
.verification {
    padding: 8rem 5%;
    min-height: 100vh;
}

.verification-box {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 600px;
    margin: 0 auto;
}
#certificateId {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 10px;
    background-color: #f0f0f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
}
.captcha-container {
    margin: 2rem 0;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
}
#refreshCaptcha {
    background-color: #f7f7f7;
    color: #a9a9a9;
    padding: .9rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 5px;
}
#captchaInput {
    width: 88%;
    padding: .8rem;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    background-color: #f7f7f7;
    display: inline;
}
.captcha-display {
    font-family: Geneva, Verdana, sans-serif;
    font-size: 2rem;
    letter-spacing: 10px;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin: .4rem 0;
    user-select: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        padding: 2rem;
        transition: var(--transition);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .verification-box {
        width: 90%;
    }

    #captchaInput {
        width: 80%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
}

.animate-on-scroll.animate {
    animation: fadeInUp 1s forwards;
}

/* ----------------------------------- */

/* New Animations */
@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glow {
    0% { box-shadow: 0 0 10px rgba(255,77,110,0.3); }
    50% { box-shadow: 0 0 20px rgba(255,77,110,0.6); }
    100% { box-shadow: 0 0 10px rgba(255,77,110,0.3); }
}

/* Enhanced Verification Section */
.verification-box {
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.95) 0%,
        rgba(255,249,251,0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    animation: floatIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.captcha-container {
    background: linear-gradient(45deg, 
        #ffffff 0%, 
        #fff9fb 100%);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.captcha-container:hover {
    transform: translateY(-3px);
}

.captcha-display {
    background: linear-gradient(45deg, 
        #FF4D6E 0%, 
        #FF8FA3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: 8px;
    position: relative;
    overflow: hidden;
}

.captcha-display::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255,255,255,0) 25%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0) 75%
    );
    animation: gradientFlow 4s infinite linear;
}

/* Enhanced Result Display */
.fa-certificate {
    color: #0094f7;
}
.result-header>h3 {
    display: inline;
}
.detail-item {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}
.detail-item p {
    font-weight: bold;
}
.detail-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.status .valid {
    position: relative;
    padding-left: 25px;
}

.status .valid::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: #28a745;
    border-radius: 50%;
    animation: glow 1.5s infinite;
}

.status .expired::before {
    background: #dc3545;
    animation: glow 1.5s infinite;
}

/* Enhanced Button Effects */
.cta-button {
    position: relative;
    overflow: hidden;
    padding: 15px 20px;
    background: #FF8FA3;
    border: none;
    border-radius: 10px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}
.cta-button::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255,255,255,0) 25%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0) 75%
    );
    animation: gradientFlow 4s infinite linear;
    opacity: 0.3;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
}

/* Loading Animation */
.loading-spinner {
    display: none;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* About Section */
.about {
    padding: 8rem 5%;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.about-container {
    max-width: 1440px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
}
.about-text p {
    color: #151515;
}
.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 1s ease;
}

.about-image.reveal-left {
    transform: translateX(0);
    opacity: 1;
}

.hover-zoom {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
}

.hover-zoom:hover {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(255, 125, 186, 0.466);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid var(--primary-gold);
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.experience-badge p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
    margin-top: 0.5rem;
}

.about-text {
    transform: translateX(50px);
    opacity: 0;
    transition: all 1s ease 0.2s;
}

.about-text.reveal-right {
    transform: translateX(0);
    opacity: 1;
}

.section-subtitle {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin: 2rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.gold-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.stat-card h4 {
    font-size: 2.2rem;
    margin: 1rem 0;
}

.signature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.signature img {
    height: 150px;
}

.signature p span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.3rem;
}

.core-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 6rem;
}

.value-card {
    background: rgba(255, 127, 127, 0.082);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.value-card:hover {
    background: rgba(255, 127, 127, 0.135);
    border-color: #ffbbc13e;
}

.value-icon {
    width: 80px;
    height: 80px;
    background:  rgba(255, 127, 127, 0.348);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(360deg);
}

.scale-hover {
    transition: transform 0.3s ease;
}

.scale-hover:hover {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
/* ------- Footer --------*/
/* CSS */
:root {
    --primary-pink: #FFB6C1;
    --dark-bg: #0A0A0A;
    --light-pink: #FFF0F5;
}

.luxury-footer {
    background: var(--dark-bg);
    color: #ffffff;
    position: relative;
    border-top: 1px solid rgba(255, 182, 193, 0.2);
    font-family: 'Poppins', sans-serif;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    max-width: 400px;
}

footer .logo {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.pink-text {
    color: var(--primary-pink);
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--primary-pink);
    margin-bottom: 2rem;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

footer .social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 182, 193, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary-pink);
    text-decoration: none;
}

footer .social-icon:hover {
    background: var(--primary-pink);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: var(--primary-pink);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-pink);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-pink);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

footer .contact-info {
    display: grid;
    gap: 1.5rem;
}

footer .contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

footer .pink-icon {
    color: var(--primary-pink);
    min-width: 20px;
    font-size: 1.2rem;
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

footer .copyright {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

footer .legal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

footer .legal-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

footer .legal-links a:hover {
    color: var(--primary-pink);
}

@media (max-width: 768px) {
    .footer-brand {
        text-align: center;
        margin: 0 auto 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    footer .social-links {
        justify-content: center;
    }
    
    footer .contact-item {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    footer .legal-links {
        justify-content: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }
}

.footer-col {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.footer-col.in-view {
    opacity: 1;
    transform: translateY(0);
}
/* XContact Styles */
.contact {
    padding: 8rem 5%;
    background: #f8f9fa;
}
.contact-container {
    max-width: 1440px;
    margin: 4rem auto;
    position:inherit;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-card {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.icon-box i {
    color: var(--accent-color);
    font-size: 1.8rem;
}

.contact-form {
    background: #fff;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-group {
    position: relative;
    margin-bottom: 3rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group label {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 0.5rem;
    color: #888;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    border-color: var(--accent-color);
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 1.1rem;
    color: #e63946;
}

.submit-btn {
    background: var(--highlight-color);
    color: #fff;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.submit-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 3rem;
    }
}