/* --- GLOBAL RESET & VARIABLES --- */
:root {
    --primary-gradient: linear-gradient(135deg, #00C4FF 0%, #6A00F4 100%);
    --gradient-glow: rgba(0, 196, 255, 0.5);
    --dark-blue: hsla(222, 75%, 55%, 0.453);
    --neon-green: #10b981;
    --text-dark: #1C1C1E;
    --text-light: #F3F5F7;
    --accent-color: #1e88b9;
    --teal-blue: #00C4FF;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    background-color: #f8fafc;
    color: var(--text-dark);
    overflow-x: hidden;
    cursor: none;
}

input, button, select, textarea {
    font-family: 'Plus Jakarta Sans', sans-serif;
}
/* --- CUSTOM CURSOR --- */
.cursor-dot {
    width: 8px; height: 8px; 
    background: var(--primary-gradient);
    position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
    border-radius: 50%; z-index: 9999; pointer-events: none;
}

.cursor-outline {
    width: 40px; height: 40px; 
    border: 2px solid var(--teal-blue);
    position: fixed; top: 0; left: 0; transform: translate(-50%, -50%);
    border-radius: 50%; z-index: 9998; pointer-events: none;
    transition: width 0.2s, height 0.2s;
}

/* --- LAYOUT UTILITIES --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding:  15px;
    width: 100%;
    box-sizing: border-box;
}

.section-padding { padding: 90px 0; }
.bg-light { background-color: #f1f5f9; }
.text-white { color: #fff; }

/* --- ANIMATIONS --- */
.scroll-element {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-element.scrolled {
    opacity: 1;
    transform: translateY(0);
}

.blinking-text { animation: blink 2s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

.click-effect { transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; }
.click-effect:active { transform: scale(0.95) !important; filter: brightness(90%); }

/* --- TOP BAR --- */
.top-bar {
    /* Analysis suggested a Dark Color. 
       Change background to '#0f172a' (Dark Blue) or keep 'var(--primary-gradient)' if you prefer the glow. */
    background: linear-gradient(90deg, #5B5FC7, #4F86C6, #5BC6D9);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    color: #fff;
    padding: 5px 0;           /* CHANGED: Reduced from 10px to 5px */
    font-size: 13.5px;;
    
}
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-text a { color: #fff; text-decoration: underline; font-weight: 700; margin-left: 5px; }
.top-socials a { color: #fff; margin-left: 20px; font-size: 1.1em; transition: 0.3s; }
.top-socials a:hover { opacity: 0.7; }

/* --- HEADER --- */
.header {
    background: #fff; /* Matches "turning White" */
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    /* Analysis estimated 15px-20px vertical padding */
    padding: 8px 0; 
    
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s;
}

.header-content { display: flex; justify-content: space-between; align-items: center; }


/* UPDATED LOGO HEIGHT HERE */
.logo { 
    height: 150px; /* Reduced from 115px to 80px for smaller header */
    width: auto; 
    display: block; 
    margin-left: 20px;
    object-fit: contain; 
}

.nav-links { display: flex; align-items: center; }
.nav-links a {
    text-decoration: none; 
    color: var(--text-dark); 
    font-weight: 600; 
    margin-left: 35px; 
    transition: color 0.3s; 
    font-size: 1.05em; 
}
.nav-links a:hover { color: var(--accent-color); }

.nav-btn {
    background:linear-gradient(90deg, #5B5FC7, #4F86C6, #5BC6D9); color: #fff; padding: 12px 30px;
    border-radius: 50px; text-decoration: none; font-weight: 600; margin-left: 35px;
    box-shadow: 0 4px 15px rgba(106, 0, 244, 0.3); transition: 0.3s; font-size: 1em;
    font-size: 16px;
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(106, 0, 244, 0.4); }
.mobile-menu { display: none; font-size: 1.8em; cursor: pointer; }

/* --- HERO SECTION --- */
.hero-wrapper {
    position: relative;
    background: url('3.jpg') center/cover no-repeat, #0f172a; 
    padding: 60px 0 100px 0; 
    min-height: 85vh; 
    display: flex; 
    align-items: center;
}

.overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 40%, rgba(15, 23, 42, 0.7)); z-index: 1;
}

.hero-container { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; }
.info-section { flex: 1; padding-right: 60px; color: #fff; }

.cert-badge {
    background: rgba(16, 185, 129, 0.15); color: var(--neon-green); padding: 8px 18px;
    border-radius: 20px; font-size: 0.95em; font-weight: 600; border: 1px solid var(--neon-green);
    display: inline-block; margin-bottom: 25px;
}

.main-headline { 
    font-size: 1em; font-weight: 800; color: #fff; line-height: 1.15; display: block; margin-top: 15px; 
}
.text-gradient {
    background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.sub-headline { color: #cbd5e1; font-size: 0.85em; font-weight: 600; letter-spacing: 2px; }

.hero-desc { 
    color: #94a3b8; font-size: 1.2em; margin: 25px 0 45px 0; max-width: 550px; line-height: 1.7; 
}

.hero-cta-group { display: flex; gap: 20px; }
.cta-button-hero {
    padding: 16px 35px; font-size: 1.1em; font-weight: 700; border-radius: 10px; border: none;
    display: flex; align-items: center; gap: 10px; color: #fff;
}
.btn-glow { background: var(--primary-gradient); box-shadow: 0 0 25px var(--gradient-glow); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.4); }

/* --- GLASS FORM --- */
.form-section-container { width: 420px; max-width: 100%; }
.glass-card {
    background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 20px; overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
}
.form-header { background: rgba(0,0,0,0.3); padding: 25px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); color: #fff; }
.form-header h3 { margin: 0; font-size: 1.4em; }
.form-header p { color: #cbd5e1; margin: 5px 0 0 0; font-size: 0.95em; }
.consultation-form { padding: 35px; }
.input-group { position: relative; margin-bottom: 18px; background: rgba(0,0,0,0.25); border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); }
.input-group i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: #94a3b8; font-size: 1.1em; }
.input-group input { 
    width: 100%; padding: 16px 16px 16px 50px; 
    background: transparent; border: none; color: #fff; 
    font-size: 1em; outline: none; box-sizing: border-box; 
}
.submit-button { 
    background: var(--neon-green); color: #064e3b; border: none; width: 100%; 
    padding: 18px; font-size: 1.1em; font-weight: 700; border-radius: 10px; margin-top: 15px; 
}
.privacy-text { text-align: center; color: #64748b; font-size: 0.8em; margin-top: 20px; }

/* --- SECTIONS TEXT --- */
.section-title { 
    color: var(--accent-color); font-size: 1em; letter-spacing: 3px; 
    font-weight: 800; text-align: center; margin-bottom: 15px; 
}
.section-subtitle { 
    text-align: center; font-size: 2.8em; color: var(--text-dark); 
    margin-top: 0; margin-bottom: 60px; font-weight: 700; 
}

/* --- SERVICES (3D Cards) --- */
.services-grid-3d { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 35px; }

.card-3d {
    border-radius: 20px; padding: 45px 35px; color: #fff; position: relative; overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex; flex-direction: column; justify-content: space-between; min-height: 400px; 
    border: 1px solid rgba(255,255,255,0.1);
}
.card-3d:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 35px 70px rgba(0,0,0,0.3); }

.gradient-custom { background: var(--primary-gradient); }

.card-icon-top { font-size: 4em; margin-bottom: 25px; opacity: 1; }
.card-3d h3 { font-size: 1.6em; margin-bottom: 15px; font-weight: 700; }
.card-3d p { font-size: 1.05em; opacity: 0.9; line-height: 1.6; }
.card-footer { margin-top: 30px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; }
.learn-text { font-weight: 600; letter-spacing: 0.5px; }
.card-arrow { width: 45px; height: 45px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.card-3d:hover .card-arrow { background: #fff; color: var(--accent-color); transform: rotate(-45deg); }

/* --- FEATURE GRID --- */
.feature-modern-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.feature-box {
    background: #fff; padding: 35px 25px; border-radius: 15px; text-align: center;
    border-bottom: 4px solid transparent; transition: 0.3s; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.feature-box:hover { border-bottom-color: var(--teal-blue); transform: translateY(-8px); }
.feature-icon { font-size: 2.8em; color: var(--accent-color); margin-bottom: 20px; }
.feature-box h4 { font-size: 1.2em; font-weight: 700; margin-bottom: 10px; }
.feature-box p { font-size: 0.95em; color: #64748b; }

/* --- STANDARDS --- */
.dark-mode { background: #0f172a; }
.title-highlight { color: var(--neon-green); }
.standards-wrapper { display: flex; gap: 50px; justify-content: center; flex-wrap: wrap; }
.glass-panel {
    flex: 1; min-width: 320px; max-width: 550px; background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 50px;
}
.panel-head { display: flex; align-items: center; gap: 20px; margin-bottom: 35px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
.panel-head i { font-size: 2.5em; color: var(--neon-green); }
.panel-head h4 { font-size: 1.8em; color: #fff; margin: 0; }
.tech-list { list-style: none; padding: 0; }
.tech-list li { margin-bottom: 18px; color: #cbd5e1; font-size: 1.15em; display: flex; align-items: center; gap: 12px; }
.tech-list li i { color: var(--teal-blue); }

/* --- TRUST BANNER --- */
.trust-banner {
    background: var(--primary-gradient); border-radius: 20px; padding: 60px; margin: 50px 0;
    display: flex; justify-content: space-between; align-items: center; color: #fff;
    position: relative; overflow: hidden; box-shadow: 0 20px 40px rgba(106, 0, 244, 0.2);
}
.trust-content h2 { font-size: 2.2em; margin-bottom: 35px; position: relative; z-index: 2; font-weight: 800; }
.trust-contacts { display: flex; gap: 50px; position: relative; z-index: 2; }
.t-item { display: flex; align-items: center; gap: 20px; }
.t-item i { font-size: 2.5em; opacity: 0.9; }
.t-item div { display: flex; flex-direction: column; }
.t-item span { font-size: 0.9em; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; }
.t-item strong { font-size: 1.3em; }
.trust-image-circle {
    width: 350px; height: 350px; background: rgba(255,255,255,0.1); border-radius: 50%;
    position: absolute; right: -70px; top: -70px;
}

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 20px; }
.faq-box {
    background: #0f172a; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    overflow: hidden; transition: all 0.3s ease; color: #fff;
}
.faq-box summary {
    padding: 25px 30px; font-weight: 600; font-size: 1.1em; cursor: pointer; list-style: none;
    position: relative; background-color: transparent; color: #fff;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-box summary::-webkit-details-marker { display: none; }
.faq-box summary::after { content: '+'; font-size: 1.8em; color: var(--teal-blue); font-weight: 300; }
.faq-box[open] { border-color: var(--teal-blue); box-shadow: 0 5px 20px rgba(0, 196, 255, 0.2); }
.faq-box[open] summary { background: var(--primary-gradient); color: #fff; border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-box[open] summary::after { content: '-'; color: #fff; }
.faq-box p { padding: 25px 30px; margin: 0; color: #cbd5e1; line-height: 1.8; font-size: 1.05em; background: #0f172a; }

/* --- CONTACT CARDS --- */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.c-card { background: #fff; padding: 40px; text-align: center; border-radius: 20px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); }
.c-card i { font-size: 3em; color: var(--accent-color); margin-bottom: 20px; }
.c-card h4 { font-size: 1.4em; margin-bottom: 10px; font-weight: 700; }
.c-card p { font-size: 1.1em; color: #64748b; }

/* --- MAIN FOOTER --- */
.main-footer { background:linear-gradient(90deg, #5B5FC7, #4F86C6, #5BC6D9); color: #fff; padding: 80px 0 30px 0; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 50px; margin-bottom: 50px; }
.footer-col h4 { color: #fff; margin-bottom: 25px; font-size: 1.3em; font-weight: 700; }
.footer-col p { line-height: 1.7; opacity: 0.9; font-size: 1.05em; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.85); text-decoration: none; transition: 0.3s; font-size: 1.05em; }
.footer-col ul li a:hover { color: #fff; padding-left: 5px; }
.footer-form { display: flex; background: rgba(255,255,255,0.15); padding: 5px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.2); }
.footer-form input { background: transparent; border: none; padding: 12px 20px; color: #fff; flex: 1; outline: none; font-size: 1em; }
.footer-form button { background: #fff; border: none; width: 45px; height: 45px; border-radius: 50%; color: var(--accent-color); cursor: pointer; font-size: 1.2em; }
.footer-line { border: 0; border-top: 1px solid rgba(255,255,255,0.2); margin-bottom: 30px; }
.copyright-text { text-align: center; font-size: 1em; opacity: 0.9; }

/* --- GIVEAWAY SPECIFIC STYLES --- */
.prize-innovation-container { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 15px; padding: 25px; margin: 25px 0; display: flex; align-items: center; gap: 25px; backdrop-filter: blur(10px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }
.chart-wrapper { position: relative; width: 140px; height: 140px; flex-shrink: 0; }
.donut-chart { width: 100%; height: 100%; border-radius: 50%; background: conic-gradient(#00C4FF 0% 25%, #6A00F4 25% 50%, #ff4757 50% 75%, #10b981 75% 100%); mask: radial-gradient(transparent 60%, black 61%); -webkit-mask: radial-gradient(transparent 60%, black 61%); animation: spinChart 2s ease-out; box-shadow: 0 0 20px rgba(0, 196, 255, 0.2); }
@keyframes spinChart { from { transform: rotate(-180deg); } to { transform: rotate(0deg); } }
.chart-center-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: #fff; font-size: 0.9em; font-weight: 700; line-height: 1.2; }
.chart-center-text span { color: #ffd700; font-size: 1.2em; }
.prize-details-list { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.p-item { display: flex; flex-direction: column; border-left: 3px solid #ccc; padding-left: 10px; transition: 0.3s; }
.p-item.teal { border-color: #00C4FF; } .p-item.purple { border-color: #6A00F4; } .p-item.red { border-color: #ff4757; } .p-item.green { border-color: #10b981; }
.p-item h4 { margin: 0; color: #fff; font-size: 0.9em; font-weight: 600; }
.p-item p { margin: 2px 0 0; color: #cbd5e1; font-size: 0.75em; line-height: 1.3; }
.risk-visual-box { background: rgba(0,0,0,0.3); border-radius: 10px; padding: 15px; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.05); }
.risk-bar-container { width: 100%; height: 8px; background: #333; border-radius: 5px; margin-top: 8px; }
.risk-bar-fill { width: 90%; height: 100%; background: linear-gradient(90deg, #ff4757, #6A00F4); border-radius: 5px; animation: loadRisk 2s ease-out; }
@keyframes loadRisk { from { width: 0; } to { width: 90%; } }
.entry-steps-box { background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05)); border: 1px solid #10b981; padding: 15px; border-radius: 10px; margin-top: 20px; text-align: center; color: #fff; font-weight: 500; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .header-content { flex-direction: row; justify-content: space-between; }
    .logo { height: 60px; } /* Smaller logo on mobile */
    .nav-links, .top-bar { display: none; }
    .mobile-menu { display: block; color: #333; }
    
    .hero-container { flex-direction: column; text-align: center; }
    .info-section { padding-right: 0; margin-bottom: 60px; }
    .hero-cta-group { justify-content: center; }
    .form-section-container { width: 100%; }
    
    .feature-modern-grid, .trust-banner, .contact-cards, .footer-grid { flex-direction: column; grid-template-columns: 1fr; }
    .trust-banner { text-align: center; gap: 40px; }
    .trust-contacts { flex-direction: column; align-items: center; }
    .trust-image-circle { display: none; }
    
    /* Give form space on mobile */
    .hero-wrapper { padding-top: 40px; }
    .main-headline { font-size: 2em; }
}