/* ===== CSS Variables ===== */
:root {
    --primary: #00843D;
    --primary-dark: #006B32;
    --primary-light: #00A651;
    --primary-glow: rgba(0, 132, 61, 0.3);
    --bg-dark: #0a1210;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border: rgba(255, 255, 255, 0.08);
    --gradient-1: linear-gradient(135deg, #00A651 0%, #00843D 50%, #006B32 100%);
    --gradient-2: linear-gradient(135deg, #00843D 0%, #004D25 100%);
    --shadow-glow: 0 0 60px rgba(0, 132, 61, 0.2);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Image with Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(10, 15, 26, 0.85) 0%, rgba(10, 15, 26, 0.95) 100%),
        url('../images/bg.jpg') center/cover no-repeat;
    z-index: -2;
}

/* Gradient Mesh Background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 132, 61, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 166, 81, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 132, 61, 0.05) 0%, transparent 70%);
    z-index: -1;
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(2deg);
    }
}

/* ===== Particles ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 20%;
    top: 80%;
    animation-delay: -2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 60%;
    top: 40%;
    animation-delay: -4s;
    animation-duration: 14s;
}

.particle:nth-child(4) {
    left: 80%;
    top: 60%;
    animation-delay: -6s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 40%;
    top: 90%;
    animation-delay: -8s;
    animation-duration: 20s;
}

.particle:nth-child(6) {
    left: 90%;
    top: 10%;
    animation-delay: -10s;
    animation-duration: 15s;
}

.particle:nth-child(7) {
    left: 30%;
    top: 50%;
    animation-delay: -12s;
    animation-duration: 17s;
}

.particle:nth-child(8) {
    left: 70%;
    top: 30%;
    animation-delay: -14s;
    animation-duration: 13s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-100px) translateX(20px) scale(1.5);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-50px) translateX(-30px) scale(1);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-150px) translateX(10px) scale(1.2);
        opacity: 0.5;
    }
}

/* ===== Main Wrapper ===== */
.main-wrapper {
    position: relative;
    z-index: 1;
}

/* ===== Content Section (Left Side) ===== */
.content-section {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Logo ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 120px;
    width: auto;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p{    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;}
    

    .arrow-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0 20px;
}

.arrow-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.arrow-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 0;
    height: 0;
    border-left: 8px solid #00A651;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}


/* ===== Badge ===== */
.badge-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    backdrop-filter: blur(10px);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

/* ===== Headline ===== */
.headline {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}


.innerheading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
}

h2{font-size:24px;}
hr{margin: 1.5rem 0;}
.gradient-text {
    display: block;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    max-width: 500px;
}
.subheadline a{color:#fff;}
/* ===== Features Preview ===== */
.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 12px;
    color: var(--primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature:hover .feature-icon {
    background: rgba(0, 212, 170, 0.2);
    transform: rotate(-5deg) scale(1.1);
}

/* ===== Form Card (Right Side) ===== */
.form-card {
    animation: fadeInRight 0.8s ease-out 0.2s backwards;
    max-width: 500px;
    margin: 0 auto;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.1;
    border-radius: 24px;
    z-index: -1;
}

.card-content {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 48px 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-content:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.card-content h2 {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-subtitle {
    color: var(--text-muted);
    font-size: 15px;
}

/* ===== Form Styles ===== */
.input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.input-group-custom:hover,
.input-group-custom.focused {
    border-color: rgba(0, 212, 170, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.input-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.input-icon svg {
    width: 20px;
    height: 20px;
}

.input-group-custom.focused .input-icon {
    color: var(--primary);
}

.custom-input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 16px 16px 16px 0;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary) !important;
}

.custom-input::placeholder {
    color: var(--text-muted);
}

.custom-input:focus {
    background: transparent !important;
    box-shadow: none !important;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.input-group-custom.focused .input-line {
    width: 100%;
}

/* ===== Submit Button ===== */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    background: var(--gradient-1);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 170, 0.35);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(4px) translateY(-2px);
}

.submit-btn.loading {
    pointer-events: none;
}

.submit-btn.loading span,
.submit-btn.loading svg {
    opacity: 0;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Privacy Note */
.privacy-note {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    font-size: 13px;
    color: var(--text-muted);
    background: linear-gradient(0deg, var(--bg-dark) 0%, transparent 100%);
    z-index: 10;
}
.footer p{font-size:14px;}
.footer a{color: #999;}

/* ===== Modal ===== */
.custom-modal {
    background: rgba(15, 23, 42, 0.98) !important;
    border: 1px solid var(--border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
}

.custom-modal .modal-body {
    background: transparent;
}

.custom-modal h3 {
    color: var(--text-primary);
    font-size: 26px;
    font-weight: 600;
}

.custom-modal p {
    color: var(--text-secondary) !important;
}

.success-icon {
    width: 90px;
    height: 90px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    animation: successPop 0.5s ease-out;
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.success-icon svg {
    width: 44px;
    height: 44px;
}

.modal-btn {
    padding: 14px 40px;
    background: var(--gradient-1);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.3);
    color: #fff;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 991.98px) {
    .content-section {
        text-align: center;
    }

    .logo {
        justify-content: center;
    }

    .subheadline {
        max-width: 100%;
    }

    .feature {
        justify-content: center;
    }

    .card-content {
        padding: 40px 32px;
    }

    .footer {
        position: relative;
        padding: 24px;
    }
}

@media (max-width: 575.98px) {
    .logo-text {
        font-size: 26px;
    }

    .headline {
        font-size: 30px;
    }

    .subheadline {
        font-size: 16px;
    }

    .card-content {
        padding: 32px 24px;
    }

    .card-content h2 {
        font-size: 22px;
    }

    .feature {
        flex-direction: column;
        text-align: center;
    }
}