:root {
    --primary-gold: #f6b83e;
    --text-muted: #94a3b8;
    --bg-dark: #0f172a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --gold: #f6b83e;
    --navy: #082338;
}


/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f8fe;
    color: #102b42;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.hero-premium {
    position: relative;
    padding: 100px 0 80px;
    background: radial-gradient(circle at 0% 0%, #1e293b 0%, var(--bg-dark) 100%);
    color: #ffffff;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.bg-glow {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: rgba(246, 184, 62, 0.08);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Badge Styling */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.pulse-dot {
    background: var(--primary-gold);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
    animation: pulse 2s infinite;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--primary-gold);
}

/* Typography */
.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-title .highlight {
    background: linear-gradient(90deg, var(--primary-gold), #f9d999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
    line-height: 1.7;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-bottom: 45px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

/* Button */
.primary-btn {
    background: var(--primary-gold);
    color: #000;
    padding: 22px 45px;
    border-radius: 16px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 15px 35px rgba(246, 184, 62, 0.25);
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(246, 184, 62, 0.4);
}

/* Video Section */
.hero-video-side {
    position: relative;
    display: flex;
    justify-content: center;
}

.video-glow {
    position: absolute;
    inset: -30px;
    background: rgba(246, 184, 62, 0.12);
    filter: blur(50px);
    border-radius: 40px;
    pointer-events: none;
}

.video-frame {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 40px;
    border: 10px solid #1e293b;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.7);
}

.phone-header {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1e293b;
    z-index: 10;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.iframe-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    pointer-events: none;
}

.video-overlay h4 {
    color: var(--primary-gold);
    margin: 0;
    font-size: 1.2rem;
}

.video-overlay p {
    margin: 5px 0 0;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Floating Stat Card */
.stat-card {
    position: absolute;
    top: 15%;
    right: -10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 18px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 4s infinite ease-in-out;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-card p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.stat-card h4 {
    margin: 5px 0 0;
    color: #fff;
    font-size: 1.3rem;
}

/* Animations */
@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 70px;
    }

    .hero-text-side {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-grid {
        justify-content: center;
        width: 100%;
        max-width: 500px;
    }

    .stat-card {
        right: 10%;
    }
}

@media (max-width: 480px) {
    .hero-premium {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .video-frame {
        max-width: 280px;
    }

    .stat-card {
        display: none;
    }

    /* Hide float on tiny screens to save space */
    .primary-btn {
        width: 100%;
        padding: 20px;
    }
}


/*==================================================================
2nd
=================================================================*/
/* Mentor Section Custom Styles */
.mentor-section {
    padding: 100px 0;
    background: #f8fafc;
    /* Light clean background */
    overflow: hidden;
}

.mentor-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Image Styling */
.mentor-image-container {
    position: relative;
    z-index: 1;
}

.image-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

.mentor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.mentor-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: #f6b83e15;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
    animation: blob-morph 8s infinite alternate;
}

.experience-chip {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: #123b66;
    color: #fff;
    padding: 12px 20px;
    border-radius: 15px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(18, 59, 102, 0.2);
}

.chip-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #f6b83e;
    line-height: 1;
}

.chip-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Text Content Styling */
.mentor-tag {
    color: #f6b83e;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.mentor-name {
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.text-gold {
    color: #f6b83e;
}

.mentor-title {
    font-size: 1.3rem;
    color: #123b66;
    font-weight: 600;
    margin-bottom: 25px;
}

.mentor-bio {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 40px;
}

.free-text {
    background: #f6b83e20;
    color: #e69a00;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: 800;
}

/* Stats Grid */
.mentor-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: #f8fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f6b83e;
    font-size: 1.2rem;
}

.stat-info strong {
    display: block;
    font-size: 1rem;
    color: #0f172a;
}

.stat-info span {
    font-size: 0.8rem;
    color: #64748b;
}

/* Animations */
@keyframes blob-morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .mentor-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .mentor-name {
        font-size: 2.5rem;
    }

    .mentor-image-container {
        order: -1;
    }

    .mentor-stats-grid {
        justify-content: center;
    }

    .stat-box {
        text-align: left;
    }
}




/*===============================================================
3 sec
-==============================================================*/
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f4f8fe 0%, #e7f0fa 100%);
    font-family: 'Inter', sans-serif;
}

.glass-container {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    padding: 80px 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sub-tag {
    color: #123b66;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    background: #f6b83e25;
    padding: 5px 15px;
    border-radius: 50px;
}

.main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #0f172a;
    margin: 20px 0;
}

.section-desc {
    font-size: 1.2rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feat-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: default;
}

.feat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #f6b83e;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #f6b83e;
    margin-bottom: 25px;
    transition: 0.3s ease;
}

.feat-card:hover .icon-box {
    background: #f6b83e;
    color: #fff;
}

.feat-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.feat-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* CTA Footer */
.action-footer {
    text-align: center;
    margin-top: 60px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: white;
    padding: 22px 45px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    background: #20bd5a;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

.limited-text {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #ef4444;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .glass-container {
        padding: 40px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}




.importance-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

/* Alert Banner Styling */
.alert-banner {
    background: #082338;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(8, 35, 56, 0.15);
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.alert-icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(246, 184, 62, 0.1);
    border: 2px solid #f6b83e;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #f6b83e;
    animation: pulse-warning 2s infinite;
}

.alert-text h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 5px 0;
}

.alert-text .text-gold {
    color: #f6b83e;
}

.alert-text p {
    color: #94a3b8;
    margin: 0;
    font-size: 1rem;
}

.alert-badges {
    display: flex;
    gap: 12px;
}

.danger-badge {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Importance Grid */
.importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.impact-card {
    padding: 35px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.impact-card.pain {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.impact-card.pain:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.impact-icon {
    font-size: 2.5rem;
    color: #f6b83e;
    margin-bottom: 20px;
}

.impact-card p {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
    color: #1e293b;
    margin: 0;
}

/* Solution Card Styling */
.impact-card.solution {
    background: #fef1d6;
    border: 3px solid #f6b83e;
    position: relative;
    overflow: hidden;
    grid-column: span 1;
}

.success-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #082338;
}

.success-header i {
    font-size: 1.8rem;
}

.success-header span {
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.impact-card.solution p {
    color: #082338;
    font-weight: 800;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes pulse-warning {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(246, 184, 62, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(246, 184, 62, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(246, 184, 62, 0);
    }
}

/* Responsive Customization */
@media (max-width: 992px) {
    .alert-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .alert-content {
        flex-direction: column;
    }

    .alert-badges {
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .impact-card.solution {
        grid-column: span 1;
        /* Keep it uniform or make it wider if needed */
    }
}








.mentor-quote-section {
    background: #082338;
    color: white;
    border-radius: 80px 80px 0 0;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.quote-bg-glow {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(246, 184, 98, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.mentor-quote-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.quote-icon-box {
    font-size: 5rem;
    color: #f6b83e;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -20px;
}

.mentor-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #f6b83e;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.mentor-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #f6b83e;
}

.mentor-display-name {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin: 0 0 20px 0;
}

.text-gold {
    color: #f6b83e;
}

.mentor-sub-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.mentor-quote-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 750px;
    margin-bottom: 45px;
    font-style: italic;
}

/* Achievement Pills */
.achievement-group {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.achieve-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s ease;
}

.achieve-pill:hover {
    background: rgba(246, 184, 62, 0.1);
    border-color: #f6b83e;
    transform: translateY(-5px);
}

.pill-icon {
    font-size: 1.8rem;
    color: #f6b83e;
}

.pill-val {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.pill-label {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mentor-signature-area {
    margin-top: 60px;
}

.signature-line {
    width: 100px;
    height: 4px;
    background: #f6b83e;
    margin-bottom: 15px;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .mentor-quote-section {
        border-radius: 40px 40px 0 0;
        padding: 60px 0;
        text-align: center;
    }

    .quote-icon-box {
        margin-bottom: 10px;
        font-size: 3.5rem;
    }

    .mentor-label {
        padding-left: 0;
    }

    .mentor-label::before {
        display: none;
    }

    .achievement-group {
        justify-content: center;
    }

    .mentor-quote-text {
        margin-left: auto;
        margin-right: auto;
    }

    .signature-line {
        margin: 0 auto 15px;
    }
}



/* Container focus */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.registration-section {
    padding: 80px 0;
    background-color: #f4f7fa;
    /* Light background to make the white card pop */
}

/* Main Panel Styling */
.reg-panel {
    background: #ffffff;
    display: flex;
    border-radius: 80px;
    /* Large rounded corners from your image */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
}

/* Left Dark Side */
.reg-left {
    background-color: #123b66;
    /* Deep blue from image */
    color: white;
    padding: 60px 40px;
    flex: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 60px;
    /* Inner rounding */
    margin: 20px;
}

.fire-icon {
    font-size: 3.5rem;
    color: #f6b83e;
    margin-bottom: 20px;
}

.reg-left h3 {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
}

.free-text {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.limited-tag {
    background-color: #f6b83e;
    color: #000;
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.desc-text {
    font-size: 1.1rem;
    line-height: 1.4;
    opacity: 0.9;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.footer-note {
    font-size: 1rem;
    font-weight: 500;
}

/* Right Side Form */
.reg-right {
    flex: 1.2;
    padding: 60px 50px;
}

.form-title {
    font-size: 3rem;
    font-weight: 900;
    color: #123b66;
    margin: 0 0 10px 0;
    position: relative;
}

/* Gold line under 'Registration' */
.form-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: #f6b83e;
    margin-top: 5px;
    border-radius: 2px;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
}

/* Input Fields */
.input-group {
    margin-bottom: 18px;
}

.input-group input {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid #e1e8ef;
    border-radius: 50px;
    /* Fully rounded inputs like image */
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
    background: #fcfdfe;
}

.input-group input:focus {
    border-color: #f6b83e;
    box-shadow: 0 0 10px rgba(246, 184, 62, 0.1);
}

/* Register Button */
.reg-btn {
    width: 100%;
    background-color: #f6b83e;
    color: #123b66;
    border: none;
    padding: 20px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(246, 184, 62, 0.2);
}

.reg-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(246, 184, 62, 0.3);
}

.privacy-text {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #6a829a;
}

/* --- RESPONSIVENESS (Mobile Fix) --- */

@media (max-width: 900px) {
    .reg-panel {
        flex-direction: column;
        border-radius: 40px;
        /* Smaller rounding on mobile */
    }

    .reg-left {
        margin: 15px;
        border-radius: 30px;
        padding: 40px 30px;
    }

    .reg-right {
        padding: 30px 25px;
    }

    .form-title {
        font-size: 2.2rem;
    }
}












.final-cta-section {
    padding: 80px 0 100px;
    background: #f8fafc;
}

.message-card {
    background: #ffffff;
    border-radius: 80px;
    /* Large rounded corners from image style */
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 40px 80px -20px rgba(8, 35, 56, 0.12);
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    border: 1px solid #f1f5f9;
}

/* Bell Icon & Pulse Animation */
.bell-container {
    position: relative;
    width: 80px;
    height: 80px;
    background: #fff8eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #f6b83e;
    font-size: 2.5rem;
    z-index: 1;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f6b83e;
    border-radius: 50%;
    opacity: 0.3;
    animation: bell-pulse 2s infinite;
    z-index: -1;
}

.alert-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    color: #ef4444;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.msg-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #082338;
    margin-bottom: 15px;
}

.msg-main {
    font-size: 1.4rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 5px;
}

.msg-sub {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
}

/* Formula Styling */
.success-formula {
    background: #f8fafc;
    padding: 20px 30px;
    border-radius: 100px;
    display: inline-flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 45px;
    border: 1px solid #e2e8f0;
}

.formula-step {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.formula-step.gold {
    color: #f6b83e;
    font-size: 1.3rem;
    font-weight: 900;
}

.formula-step i {
    font-size: 0.8rem;
    margin-left: 10px;
    color: #cbd5e1;
}

/* Button Styling */
.final-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #f6b83e;
    color: #082338;
    padding: 22px 45px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(246, 184, 62, 0.25);
}

.final-btn:hover {
    transform: scale(1.05);
    background: #eab308;
    box-shadow: 0 20px 40px rgba(246, 184, 62, 0.4);
}

/* Animations */
@keyframes bell-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .message-card {
        padding: 60px 25px;
        border-radius: 40px;
        margin: 0 15px;
    }

    .msg-title {
        font-size: 1.8rem;
    }

    .success-formula {
        padding: 15px 20px;
        border-radius: 25px;
        gap: 8px;
    }

    .formula-step {
        font-size: 0.9rem;
    }

    .final-btn {
        width: 100%;
        justify-content: center;
        padding: 20px;
    }
}


.simple-footer {
    padding: 30px 0;
    background: #082338;
    /* നമ്മുടെ തീം നീല */
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #ffffff;
}

.footer-info strong {
    color: #f6b83e;
    /* ഗോൾഡ് ഹൈലൈറ്റ് */
}

.footer-info span {
    font-size: 0.8rem;
    opacity: 0.7;
    display: block;
    margin-top: 5px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #f6b83e;
    font-size: 1.2rem;
    transition: 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    transform: scale(1.2);
    color: #ffffff;
}

/* Responsive */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}












.timer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #082338 0%, #0c3352 100%);
    color: white;
    z-index: 9999;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-top: 2px solid #f6b83e;
}

.timer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.timer-text {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.timer-clock {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #f6b83e;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 15px;
    border-radius: 8px;
    min-width: 140px;
    text-align: center;
}

.timer-btn {
    background: #f6b83e;
    color: #082338;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    transition: 0.3s;
    text-transform: uppercase;
}

.timer-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Page content push down to avoid overlapping */
body {
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .timer-container {
        gap: 10px;
    }

    .timer-text {
        display: none;
    }

    /* Mobile-il text thirikaan */
    .timer-clock {
        font-size: 1.2rem;
    }
}


.btn-loader i {
    margin-right: 8px;
}

.reg-btn.loading {
    opacity: 0.8;
    pointer-events: none;
}

[data-aos="fade-up"] {
    transform: translateY(60px);
}

[data-aos].aos-animate {
    transform: translateY(0);
}

[data-aos] {
    transform: translateY(80px) scale(0.95);
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.feat-card:hover,
.impact-card:hover,
.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    transition: all .4s ease;
}