:root {
    --green: #198754;
    --green-dark: #0d4f34;
    --lime: #b8e986;
    --gold: #ffc857;
    --cyan: #45c6d8;
    --ink: #f7fff9;
    --muted: rgba(244, 255, 248, 0.86);
    --white: #ffffff;
    --panel: rgba(255, 255, 255, 0.08);
    --panel-soft: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.34);
    --shadow: 0 26px 80px rgba(1, 24, 17, 0.24);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: #0f2f23;
}

.video-bg-container {
    position: fixed;
    inset: 0;
    z-index: -3;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: url("image/bg.png") center / cover no-repeat;
}

.video-bg-container::after {
    content: "";
    position: absolute;
    inset: 0;
    /* Left se right ki taraf dark se light hota hua gradient */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(1.08) contrast(1.02);
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    width: min(1180px, calc(100% - 32px));
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.site-header {
    position: sticky;
    top: 14px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin: 14px 0 26px;
    padding: 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 215px;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    color: #072014;
    font-size: 20px;
    font-weight: 900;
    background: conic-gradient(from 160deg, var(--gold), var(--lime), var(--cyan), var(--gold));
    box-shadow: 0 10px 24px rgba(25, 135, 84, 0.28);
}

.brand {
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.44);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 18px;
    line-height: 1.1;
}

.brand small {
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    line-height: 1.2;
}

.nav-toggle {
    display: none;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    gap: 5px;
    padding: 9px;
    border: 1px solid rgba(13, 79, 52, 0.2);
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.site-nav a {
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 800;
    transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    transform: translateY(-2px);
}

main {
    flex: 1;
}

.hero {
    display: grid;
    align-items: center;
    min-height: calc(100vh - 150px);
    padding: 28px 0 76px;
}

.hero-content {
    width: min(790px, 100%);
    padding: clamp(24px, 4vw, 44px);
    border-left: 4px solid var(--gold);
    background: transparent;
    backdrop-filter: none;

}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--white);
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 8vw, 92px);
    line-height: 0.94;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(27px, 4vw, 44px);
    line-height: 1.08;
}

h3 {
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.2;
}

p {
    color: var(--muted);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.62);
}

.lead {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(17px, 2vw, 20px);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 0;
    border-radius: 6px;
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    box-shadow: 0 12px 28px rgba(13, 79, 52, 0.26);
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
    box-shadow: 0 18px 34px rgba(13, 79, 52, 0.32);
}

.btn.secondary {
    color: var(--white);
    background: transparent;
    border: 1px solid var(--border);
    box-shadow: none;
    backdrop-filter: blur(7px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.hero-stats div {
    min-height: 88px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, background 0.25s ease;
}

.hero-stats div:hover {
    transform: translateY(-5px);
    background: transparent;
}

.hero-stats strong {
    display: block;
    color: var(--white);
    font-size: 30px;
    line-height: 1;
}

.hero-stats span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    font-weight: 800;
}

.section {
    margin: 0 0 26px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 20px 0 26px;
}

.two-col {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 26px;
    align-items: start;
}

.card,
.contact-card {
    min-height: 100%;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 8px;
    background: transparent;
    box-shadow: 0 16px 42px rgba(4, 23, 16, 0.08);
    backdrop-filter: blur(6px) saturate(115%);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.card:hover,
.contact-card:hover {
    transform: translateY(-5px);
    background: transparent;
    box-shadow: 0 20px 50px rgba(4, 23, 16, 0.2);
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--gold), var(--cyan));
}

.card-icon {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 8px;
    color: #07120d;
    background: linear-gradient(135deg, var(--gold), var(--lime));
    font-weight: 900;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.benefit-item {
    min-height: 118px;
    padding: 18px;
    border-radius: 8px;
    background: transparent;
    color: var(--white);
    box-shadow: 0 15px 34px rgba(5, 31, 22, 0.18);
    backdrop-filter: blur(6px);
}

.benefit-item strong,
.benefit-item span {
    display: block;
}

.benefit-item strong {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 6px;
}

.benefit-item span {
    color: rgba(255, 255, 255, 0.9);
}

.cta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.stat {
    padding: 18px;
    border-radius: 8px;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--border);
    backdrop-filter: blur(6px);
}

.stat strong {
    display: block;
    color: #ffe082;
    font-size: 29px;
    line-height: 1;
}

.list {
    margin: 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.88);
}

.list li {
    margin-bottom: 10px;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.field {
    display: grid;
    gap: 6px;
}

.field span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
}

input,
textarea,
select {
    width: 100%;
    min-height: 46px;
    padding: 12px 13px;
    border: 1px solid rgba(31, 88, 61, 0.24);
    border-radius: 6px;
    color: var(--ink);
    font: inherit;
    background: transparent;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

select option {
    color: #06120d;
    background: #ffffff;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(25, 135, 84, 0.74);
    background: transparent;
    box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.14);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 24px;
    margin: 34px 0 18px;
    padding: 22px;
    border-radius: 8px;
    border: 1px solid var(--border);
    color: var(--white);
    background: transparent;
    box-shadow: 0 16px 40px rgba(7, 32, 24, 0.08);
    backdrop-filter: blur(6px) saturate(115%);
}

.site-footer p {
    max-width: 560px;
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.footer-links {
    display: flex;
    gap: 14px;
    font-weight: 800;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact {
    display: grid;
    align-content: center;
    gap: 4px;
    text-align: right;
    font-weight: 700;
}

.animate-up {
    animation: slideUp 0.82s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

.animate-fade {
    animation: fadeIn 0.9s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.16s;
}

.delay-2 {
    animation-delay: 0.32s;
}

.delay-3 {
    animation-delay: 0.48s;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(34px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 980px) {

    .section-grid,
    .process-grid,
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .site-shell {
        width: min(100% - 20px, 1180px);
    }

    .site-header {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .menu-button {
        display: grid;
    }

    .site-nav {
        display: none;
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, 1fr);
        justify-content: stretch;
        gap: 8px;
        padding-top: 10px;
    }

    .nav-toggle:checked~.site-nav {
        display: grid;
    }

    .site-nav a {
        text-align: center;
        background: transparent;
    }

    .hero {
        min-height: auto;
        padding-top: 10px;
        padding-bottom: 34px;
    }

    .hero-content {
        border-left: 0;
        border-top: 4px solid var(--gold);
    }

    .two-col,
    .hero-stats,
    .stat-row,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .cta-section {
        align-items: stretch;
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .footer-contact {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .brand {
        min-width: 0;
    }

    .brand small {
        display: none;
    }

    .site-nav,
    .section-grid,
    .process-grid,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .hero-content,
    .section {
        padding: 20px;
    }

    .actions .btn {
        width: 100%;
    }

    .hero-stats div,
    .benefit-item {
        min-height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

h1,
h2,
h3 {
    color: var(--white);
    /* Shadow ko bada aur dark kar diya hai */
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.9), 0px 2px 5px rgba(0, 0, 0, 1);
}

p {
    color: var(--muted);
    /* Paragraph ki shadow bhi strong ki hai */
    text-shadow: 0px 2px 15px rgba(0, 0, 0, 0.9), 0px 1px 3px rgba(0, 0, 0, 1);
}