:root {
    --accent-main: #0f7b6b;
    --accent-bright: #2aa090;
    --grad: linear-gradient(135deg, #0f7b6b 0%, #2aa090 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}



body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;

}


/* --- GLOBAL SECTION TITLES - ADIPOLI STYLE --- */

.section-header-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.section-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    /* Responsive Font Size */
    font-weight: 800;
    line-height: 1.2;
    color: #1a2b3c;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
    position: relative;
}

/* Heading-ലെ <span> ടാഗിന് മനോഹരമായ ഒരു Gradient നൽകാൻ */
.section-title span {
    background: linear-gradient(90deg, #0f7b6b, #2aa090);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

/* ഹെഡിംഗിന് താഴെ ഒരു ചെറിയ അണ്ടർലൈൻ ഡെക്കറേഷൻ (Optional) */
.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 5px;
    background: #0f7b6b;
    border-radius: 10px;
    margin: 15px auto 0;
    opacity: 0.3;
}

/* ഹെഡിംഗിന് താഴെയുള്ള ചെറിയ വിവരണത്തിന് (Subtitle) */
.section-subtitle {
    font-size: 1.15rem;
    color: #50667a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Dark Section-ൽ ഹെഡിംഗ് വൈറ്റ് ആവാൻ */
.section-dark .section-title {
    color: #ffffff;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .section-header-center {
        margin-bottom: 35px;
    }
}

/* Container Fix - For better spacing from screen edges */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding: 100px 5% !important;
    /* Side padding added */
    max-width: 1400px;
    margin: 0 auto;
}

.hero-premium {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Background Glow Effect */
.hero-glow-orb {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(15, 123, 107, 0.08) 0%, transparent 70%);
    z-index: 1;
}

/* Badge Styling */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 123, 107, 0.08);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(15, 123, 107, 0.2);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #0f7b6b;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

/* Main Title - The most attractive part */
.hero-main-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    color: #1a2b3c;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.highlight-text {
    background: linear-gradient(90deg, #0f7b6b, #2aa090);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-sub-text {
    font-size: 1.2rem;
    color: #50667a;
    line-height: 1.6;
    max-width: 550px;
    margin-bottom: 35px;
}

/* Features Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.stat-item {
    font-weight: 700;
    color: #1a2b3c;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-item i {
    color: #0f7b6b;
    font-size: 1.2rem;
}

/* Button & Social Proof */
.hero-action-area {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-ultra {
    background: #0f7b6b;
    color: white;
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(15, 123, 107, 0.3);
    transition: 0.3s;
}

.btn-ultra:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(15, 123, 107, 0.4);
}


.video-glass-container {
    width: 100%;
    max-width: 320px;
    /* വീഡിയോയുടെ വീതി ഇവിടെ കുറച്ചു */
    height: auto;
    border-radius: 40px;
    background: #000;
    padding: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    transition: all 0.4s ease;
}

.vimeo-embed-box {
    aspect-ratio: 9/16;
    width: 100%;
    max-width: 380px;
    border-radius: 35px;
    overflow: hidden;
    margin: 0 auto;
}

.vimeo-embed-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 32px;
}

.f-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.top-right {
    top: 30px;
    right: -30px;
}

.bottom-left {
    bottom: 40px;
    left: -30px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 5% !important;
    }

    .hero-content-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-stats-grid {
        justify-content: center;
    }

    .hero-action-area {
        justify-content: center;
    }

    .f-badge {
        display: none;
    }

    /* Hide floating badges on mobile to save space */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Student Count Section - Ultra Clean Look */
.student-count {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    /* White border for overlapping effect */
    margin-left: -15px;
    /* Negative margin for stacking */
    transition: transform 0.3s ease;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.avatar-group img:first-child {
    margin-left: 0;
}

.avatar-group img:hover {
    transform: translateY(-5px) scale(1.1);
    z-index: 10;
}

.student-count p {
    font-size: 1rem;
    color: #4a5e77;
    margin: 0;
}

.student-count p strong {
    color: #0f7b6b;
    font-weight: 800;
}

.hero-video-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* --- COMPLETE RESPONSIVE BREAKPOINTS --- */

/* 1. For Large Screens (Desktop) */
@media (min-width: 1400px) {
    .hero-wrapper {
        padding: 120px 0 !important;
        /* Content കറക്റ്റ് സെന്ററിൽ വരാൻ */
    }
}

/* 2. For Tablets & Small Laptops (Max 1024px) */
@media (max-width: 1024px) {
    .hero-wrapper {
        gap: 40px;
        padding: 80px 5% !important;
    }

    .hero-main-title {
        font-size: 3.2rem;
    }
}

/* 3. For Mobile Devices (Max 768px) - Highly Important */
@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        /* ഒറ്റ കോളം ആക്കി മാറ്റി */
        text-align: center;
        padding: 40px 20px !important;
        gap: 50px;
    }

    .hero-content-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-main-title {
        font-size: 2.2rem;
        /* മൊബൈലിൽ ടൈറ്റിൽ ചെറുതാക്കി */
        letter-spacing: -1px;
    }

    .hero-sub-text {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr 1fr;
        /* മൊബൈലിലും രണ്ട് കോളമായി നിൽക്കാൻ */
        text-align: left;
        gap: 12px;
        width: 100%;
        max-width: 400px;
    }

    .stat-item {
        font-size: 0.9rem;
    }

    .hero-action-area {
        flex-direction: column;
        /* ബട്ടണും കൗണ്ടും താഴെ താഴെ വരാൻ */
        gap: 20px;
        width: 100%;
    }

    .btn-ultra {
        width: 100%;
        /* ബട്ടൺ ഫുൾ വിഡ്ത്ത് */
        justify-content: center;
        padding: 16px;
    }

    /* മൊബൈലിൽ വീഡിയോയുടെ വലിപ്പം അഡ്ജസ്റ്റ് ചെയ്യുന്നു */
    .video-glass-container {
        max-width: 260px;
        /* വീഡിയോ വല്ലാതെ വലുതാവാതിരിക്കാൻ */
        margin: 0 auto;
    }

    .f-badge {
        display: none;
        /* മൊബൈൽ സ്ക്രീനിൽ ബാഡ്ജുകൾ ഒഴിവാക്കി ക്ലീൻ ആക്കി */
    }

    .hero-glow-orb {
        width: 300px;
        height: 300px;
        top: 0;
    }
}

/* 4. For Very Small Phones (Max 480px) */
@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.9rem;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr;
        /* വളരെ ചെറിയ ഫോണിൽ ലിസ്റ്റ് വൺ ബൈ വൺ */
        max-width: 250px;
    }
}


/*==========================================================================
============================================================================
==========================================================================*/
/* Mistakes Section - Ultra UI */
.mistakes-section {
    padding: 120px 5% !important;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    position: relative;
    overflow: hidden;
}

.mistake-badge {
    background: rgba(209, 69, 90, 0.1);
    color: #d1455a;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a2b3c;
    margin-bottom: 15px;
}

.highlight-red {
    color: #d1455a;
    position: relative;
    z-index: 1;
}

/* Card Styling */
.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 60px auto;
}

.mistake-card {
    perspective: 1000px;
}

.card-inner {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    text-align: center;
}

.mistake-card:hover .card-inner {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(209, 69, 90, 0.12);
    border-color: rgba(209, 69, 90, 0.1);
}

.card-inner h3 {
    font-size: 1.2rem;
    color: #1e2f44;
    margin-bottom: 10px;
    font-weight: 800;
}

.card-inner p {
    color: #50667a;
    font-size: 1rem;
    font-weight: 500;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: #fdf2f4;
    color: #d1455a;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.mistake-card:hover .card-icon {
    background: #d1455a;
    color: white;
    transform: rotateY(360deg);
}

/* Problem Highlight Box */
.problem-highlight-box {
    background: #1e2f44;
    /* Dark contrast for impact */
    padding: 25px 50px;
    border-radius: 100px;
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.problem-highlight-box p {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

.problem-highlight-box span {
    color: #ff6b81;
    font-weight: 800;
}

.warning-icon-animate {
    color: #ff6b81;
    font-size: 1.5rem;
    animation: shake 2s infinite;
}

/* NEW CTA SECTION STYLING */
.mistake-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px;
    background: rgba(15, 123, 107, 0.03);
    border-radius: 50px;
    border: 2px dashed rgba(15, 123, 107, 0.1);
    align-items: center;
}

.mistake-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a2b3c;
    margin-bottom: 10px;
}

.mistake-cta p {
    font-size: 1.1rem;
    color: #50667a;
    margin-bottom: 30px;
}

.btn-red-glow {
    background: #d1455a !important;
    box-shadow: 0 15px 35px rgba(209, 69, 90, 0.3) !important;
    text-align: center;
}

/* Animations */
@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .problem-highlight-box {
        border-radius: 30px;
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .mistake-cta {
        padding: 40px 20px;
    }

    .mistake-cta h3 {
        font-size: 1.5rem;
    }
}

/*==============================================================
================================================================
==============================================================*/
/* Benefits Section Styling */
.benefits-section {
    padding: 100px 5% !important;
    background: #ffffff;
    position: relative;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.free-badge {
    background: #ff4757;
    color: white;
    padding: 6px 15px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(255, 71, 87, 0.3);
}

/* New Grid Layout */
.benefits-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

/* Individual Benefit Cards */
.benefit-card-new {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 35px;
    border: 1px solid rgba(15, 123, 107, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-card-new:hover {
    transform: translateY(-12px);
    background: #f0fcf9;
    border-color: var(--accent-main);
    box-shadow: 0 25px 50px rgba(15, 123, 107, 0.12);
}

.benefit-icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(15, 123, 107, 0.08);
    color: var(--accent-main);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: 0.4s;
}

.benefit-card-new:hover .benefit-icon-wrapper {
    background: var(--accent-main);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.benefit-card-new h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a2b3c;
    margin-bottom: 10px;
}

.benefit-card-new p {
    font-size: 0.95rem;
    color: #50667a;
    line-height: 1.4;
}

/* Highlight Card (The last one) */
.highlight-card {
    background: linear-gradient(145deg, #ffffff, #e6f7f4);
    border: 2px solid var(--accent-main);
}

/* CTA Styling */
.cta-wrap-center {
    text-align: center;
}

.btn-gradient-glow {
    background: linear-gradient(90deg, #0f7b6b, #2aa090);
    padding: 22px 45px;
    font-size: 1.1rem;
    border-radius: 100px;
    box-shadow: 0 20px 40px rgba(15, 123, 107, 0.3);
}

.limited-slots {
    margin-top: 20px;
    color: #ff4757;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-grid-premium {
        grid-template-columns: 1fr;
    }

    .benefit-card-new {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 25px;
        gap: 20px;
    }

    .benefit-icon-wrapper {
        margin: 0;
        min-width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
}

/* Animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/*=========================================================
===========================================================
=========================================================*/


/* Mentor Premium Section Styles */
.mentor-section-premium {
    padding: 100px 5% !important;
    background: linear-gradient(180deg, #fdfdfe 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.mentor-card-premium {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 50px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 60px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(15, 123, 107, 0.05);
}

/* Image Side with Decorations */
.mentor-visual-side {
    position: relative;
    display: flex;
    justify-content: center;
}

.mentor-img-frame {
    position: relative;
    width: 300px;
    height: 300px;
}

.mentor-img-frame img {
    width: 90%;
    height: 100%;
    border-radius: 40px;
    /* Modern Rounded Square */
    object-fit: cover;
    border: 1px solid white;
    box-shadow: 0 20px 50px rgba(15, 123, 107, 0.2);
}

.exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-main);
    color: white;
    padding: 15px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(15, 123, 107, 0.3);
    border: 4px solid white;
}

.exp-badge strong {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.exp-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Details Side */
.mentor-name {
    font-size: 3rem;
    font-weight: 900;
    color: #1a2b3c;
    margin-bottom: 15px;
}

.mentor-qualifications {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.q-tag {
    background: rgba(15, 123, 107, 0.06);
    color: var(--accent-main);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(15, 123, 107, 0.1);
}

.mentor-bio {
    font-size: 1.2rem;
    color: #50667a;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Impact Grid */
.mentor-impact-grid {
    display: flex;
    gap: 40px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.impact-icon {
    width: 50px;
    height: 50px;
    background: #f0fcf9;
    color: var(--accent-main);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.impact-text strong {
    display: block;
    font-size: 1.4rem;
    color: #1a2b3c;
}

.impact-text span {
    font-size: 0.85rem;
    color: #50667a;
    font-weight: 600;
}

.mentor-cta-box {
    text-align: center;
    margin-top: 60px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .mentor-card-premium {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
        gap: 40px;
    }

    .mentor-visual-side {
        margin-bottom: 20px;
    }

    .mentor-qualifications {
        justify-content: center;
    }

    .mentor-impact-grid {
        justify-content: center;
        flex-wrap: wrap;
    }

    .mentor-name {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .mentor-img-frame {
        width: 220px;
        height: 220px;
    }

    .mentor-card-premium {
        padding: 30px 20px;
        border-radius: 35px;
    }

    .exp-badge {
        padding: 10px 15px;
        right: 0;
    }

    .mentor-impact-grid {
        gap: 20px;
    }

    .impact-text strong {
        font-size: 1.1rem;
    }
}

/*==============================================================================
================================================================================
==============================================================================*/

/* Target Audience Premium Section */
.target-audience-premium {
    padding: 100px 5% !important;
    background: #fdfdfe;
    position: relative;
}

.target-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Fancy Card Styling */
.target-card-fancy {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.target-card-fancy:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(15, 123, 107, 0.1);
    border-color: rgba(15, 123, 107, 0.2);
}

.target-icon-box {
    width: 60px;
    height: 60px;
    background: #f0fcf9;
    color: var(--accent-main);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: 0.3s;
}

.target-card-fancy:hover .target-icon-box {
    background: var(--accent-main);
    color: white;
    transform: scale(1.1);
}

.target-text-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a2b3c;
    margin-bottom: 8px;
}

.target-text-content p {
    font-size: 0.95rem;
    color: #50667a;
    line-height: 1.5;
}

/* Highlighted Card Look */
.highlight-target {
    background: linear-gradient(145deg, #ffffff, #f0fdfa);
    border: 1px solid rgba(15, 123, 107, 0.2);
}

/* Responsive Layout */
@media (max-width: 768px) {
    .target-audience-premium {
        padding: 60px 20px !important;
    }

    .target-card-fancy {
        flex-direction: row;
        /* മൊബൈലിൽ ഐക്കണും ടെക്സ്റ്റും സൈഡ്-ബൈ-സൈഡ് */
        align-items: center;
        padding: 25px;
        gap: 20px;
    }

    .target-icon-box {
        min-width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/*=================================================================================
===================================================================================
=================================================================================*/

/* Register Section Styling */
.register-section {
    padding: 100px 5% !important;
    background: #0b1e33;
    /* Dark Premium Background */
    color: white;
    position: relative;
    overflow: hidden;
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

/* Left Content Side */
.reg-badge {
    background: rgba(42, 160, 144, 0.2);
    color: #2aa090;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(42, 160, 144, 0.3);
}

.reg-title {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.reg-title span {
    color: #2aa090;
}

.reg-subtitle {
    font-size: 1.2rem;
    color: #a0bbd8;
    margin-bottom: 40px;
    max-width: 500px;
}

.reg-perks {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.perk-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.perk-item i {
    font-size: 1.5rem;
    color: #2aa090;
    margin-top: 5px;
}

.perk-item strong {
    display: block;
    font-size: 1.1rem;
    color: white;
}

.perk-item span {
    color: #a0bbd8;
    font-size: 0.95rem;
}

.reg-trust-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Card Styling */
.reg-form-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    color: #1a2b3c;
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 800;
}

.form-header p {
    color: #667c94;
}

.form-input-group {
    margin-bottom: 20px;
}

.form-input-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #1e2f44;
}

.form-input-group label i {
    color: #0f7b6b;
    margin-right: 5px;
}

.form-input-group input,
.form-input-group select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #f0f4f8;
    border-radius: 15px;
    background: #f8fafc;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-input-group input:focus {
    border-color: #0f7b6b;
    outline: none;
    background: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.reg-submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #0f7b6b, #2aa090);
    color: white;
    padding: 18px;
    border-radius: 15px;
    border: none;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s;
    margin-top: 10px;
}

.reg-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(15, 123, 107, 0.4);
}

.form-footer-note {
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .register-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .reg-content-side {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .reg-perks {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .reg-form-card {
        padding: 30px 20px;
    }

    .reg-title {
        font-size: 2.2rem;
    }
}

/*=================================================================
===================================================================
=================================================================*/

/* Final CTA Light Theme Styling */
.final-cta-light {
    padding: 100px 5% !important;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7f6 100%);
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(15, 123, 107, 0.1);
}

.final-badge-green {
    background: rgba(15, 123, 107, 0.1);
    color: #0f7b6b;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.final-title-dark {
    font-size: 4rem;
    font-weight: 900;
    color: #1a2b3c;
    margin-bottom: 15px;
    line-height: 1.2;
}

.final-title-dark span {
    color: #0f7b6b;
}

.final-subtitle-dark {
    font-size: 1.2rem;
    color: #50667a;
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Benefits Grid Light */
.impact-benefits-light {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.impact-item-light {
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 100px;
    font-weight: 700;
    color: #1a2b3c;
    border: 1px solid rgba(15, 123, 107, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

.impact-item-light i {
    color: #2aa090;
    font-size: 1.2rem;
}

.impact-item-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(15, 123, 107, 0.15);
    border-color: #0f7b6b;
}

/* Footer Trust Text */
.trust-footer {
    margin-top: 25px;
    font-size: 1rem;
    color: #667c94;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.trust-footer i {
    color: #0f7b6b;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .final-cta-light {
        padding: 60px 20px !important;
    }

    .impact-benefits-light {
        flex-direction: column;
        align-items: center;
    }

    .impact-item-light {
        width: 100%;
        max-width: 320px;
    }
}

/*========================================================================
==========================================================================
========================================================================*/
#sticky-timer-bar {

    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    background: linear-gradient(90deg, #0f1f2f, #1c3b56);

    backdrop-filter: blur(10px);

    padding: 10px 20px;

    z-index: 9999;

    box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.4);

    border-top: 2px solid #16a085;

    font-family: Inter, sans-serif;

}

.timer-wrapper {

    max-width: 1100px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    flex-wrap: wrap;

}

.timer-left {

    display: flex;

    align-items: center;

    gap: 8px;

    font-weight: 600;

    color: #cfd9e6;

    font-size: 14px;

}

.pulse-dot {

    width: 8px;

    height: 8px;

    background: #ff4757;

    border-radius: 50%;

    animation: pulse 1.2s infinite;

}

@keyframes pulse {

    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.5)
    }

    100% {
        transform: scale(1)
    }

}

.timer-display {

    display: flex;

    align-items: center;

    background: rgba(0, 0, 0, 0.25);

    padding: 6px 14px;

    border-radius: 10px;

    gap: 5px;

}

.time-box {

    font-size: 18px;

    font-weight: 800;

    color: white;

}

.time-box small {

    font-size: 10px;

    margin-left: 2px;

    color: #1abc9c;

}

.time-sep {

    opacity: .4;

    font-size: 18px;

}

.offer-price {

    display: flex;

    align-items: center;

    gap: 10px;

}

.old-price {

    text-decoration: line-through;

    color: #ff7675;

    font-weight: 700;

}

.free-badge {

    background: linear-gradient(90deg, #00e676, #00c853);

    color: #003b2f;

    font-weight: 900;

    font-size: 13px;

    padding: 5px 12px;

    border-radius: 6px;

    animation: freePulse 1.5s infinite;

}

@keyframes freePulse {

    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1)
    }

}

.register-btn {

    background: linear-gradient(90deg, #1abc9c, #16a085);

    color: white;

    text-decoration: none;

    padding: 8px 18px;

    border-radius: 40px;

    font-weight: 700;

    font-size: 13px;

    display: flex;

    align-items: center;

    gap: 6px;

    transition: 0.3s;

}

.register-btn:hover {

    transform: scale(1.05);

    box-shadow: 0 0 20px rgba(26, 188, 156, .5);

}

.arrow {

    font-size: 16px;

}

.mobile-text {

    display: none;

}


@media(max-width:768px){

.timer-wrapper{

justify-content:center;

gap:10px;

}

.desktop-text{

display:none;

}

.mobile-text{

display:inline;

}

.timer-display{

padding:4px 10px;

}

.time-box{

font-size:16px;

}

.register-btn{

padding:6px 14px;

font-size:12px;

}

.free-badge{

font-size:11px;

padding:4px 8px;

}

}
/*========================================================================
==========================================================================
========================================================================*/


.popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    animation: pop 0.4s ease;
}

.popup-content h2 {
    margin-bottom: 10px;
    color: #0f9d58;
}

.popup-content button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background: #111;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
}

@keyframes pop {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.reg-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}


@media (max-width: 480px) {
    .hero-premium {
        min-height: auto;
        padding-top: 40px;
    }

    .hero-main-title {
        font-size: 1.8rem;
        line-height: 1.25;
    }

    .hero-sub-text {
        font-size: 1rem;
    }

    .hero-tag {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}


@media (max-width:600px) {

    h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

}

@media (max-width:600px) {

    .form-input-group input,
    .form-input-group select {
        font-size: 16px;
    }

}

@media (max-width:480px) {

    .timer-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .timer-display {
        font-size: 0.9rem;
    }

}

@media (max-width:768px) {

    button,
    a {
        min-height: 48px;
    }

}

@media (max-width:768px) {

    .hero-premium {
        padding-top: 40px;
    }

    .hero-video-box {
        margin-top: 10px;
    }

    .hero-stats-grid {
        margin-top: 10px;
    }

}

@media (max-width:768px) {

    [data-aos] {
        transition-duration: 600ms !important;
    }

}