/*========== ROOT ==========*/

:root {
    --site-bg: #f4f7fb;
    --site-bg-soft: #eef3f8;
    --site-white: #ffffff;
    --site-dark: #0f172a;
    --site-dark-2: #162033;

    --text-main: #16212f;
    --text-soft: #5b6878;
    --text-light: rgba(255, 255, 255, 0.8);

    --brand: #1f6f5f;
    --brand-2: #5fa99a;
    --brand-soft: #dff3ee;
    --accent: #8fd8c5;

    --line: rgba(15, 23, 42, 0.08);
    --line-light: rgba(255, 255, 255, 0.12);

    --shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 20px 50px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.12);

    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;

    --transition: 0.25s ease;
}

/*========== BASE ==========*/

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    color: var(--text-main);
    background:
            radial-gradient(circle at top left, rgba(95, 169, 154, 0.08), transparent 25%),
            linear-gradient(180deg, #f8fafc 0%, #f3f6fa 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition), transform var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3 {
    color: var(--site-dark);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 0;
}

p {
    margin-bottom: 0;
}

/*========== HELPERS ==========*/

.section-space {
    /*padding: 110px 0;*/
    padding: 60px 0;
    position: relative;
}
.section-space img{
    width: 50px;
}
.section-overlap {
    margin-top: -60px;
    z-index: 3;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(238, 243, 248, 0.95));
}

.section-dark {
    background: radial-gradient(circle at 10% 20%, rgba(143, 216, 197, 0.12), transparent 24%), linear-gradient(180deg, #0f172a 0%, #162033 100%);
    background-image: url("../img/why-us.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-shadow: inset 0 0 0 2000px #16212fe8;
}
.section-dark img{
    width: 25px;
    padding-bottom: 10px;
}
.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-text {
    margin-top: 18px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-soft);
}

.section-text--dark {
    color: rgba(255, 255, 255, 0.72);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 111, 95, 0.12);
    color: var(--brand);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    backdrop-filter: blur(12px);
}

.section-badge--light {
    background: rgba(255, 255, 255, 0.85);
    border-color: var(--line);
}

.section-badge--dark {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--line-light);
    color: #d8fff4;
}

/*========== BUTTONS ==========*/

.btn-brand {
    min-height: 54px;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 18px 36px rgba(31, 111, 95, 0.22);
    display: flex;
    align-items: center;
}
.btn-brand img{
    width: 25px;
    margin-right: 5px;
}
.btn-brand:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(31, 111, 95, 0.28);
}

.btn-brand--sm {
    min-height: 46px;
    padding: 0.75rem 1.2rem;
}

.btn-outline-brand {
    min-height: 54px;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.7);
    color: var(--site-dark);
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.btn-outline-brand:hover {
    color: var(--site-dark);
    transform: translateY(-2px);
    border-color: rgba(31, 111, 95, 0.22);
    background: rgba(255, 255, 255, 0.95);
}

/*========== NAVBAR ==========*/

.site-navbar {
    padding: 18px 0;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-navbar .container {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 24px;
    padding: 0.9rem 1rem;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--site-dark);
    letter-spacing: -0.02em;
}

.site-logo:hover {
    color: var(--site-dark);
}

.site-logo__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    box-shadow: 0 0 0 8px rgba(31, 111, 95, 0.08);
    flex: 0 0 auto;
}

.site-navbar .nav-link {
    color: var(--text-main);
    font-weight: 500;
    padding: 0.65rem 1rem;
    position: relative;
}

.site-navbar .nav-link:hover {
    color: var(--site-dark);
}

.site-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.35rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link:focus::after {
    transform: scaleX(1);
}

.navbar-toggler:focus {
    box-shadow: none;
}
/*=======Scroll Icon============*/

.header_section_scroll_icon {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    z-index: 999;
}

.scroll-icon {
    display: block;
    position: relative;
    height: 3em;
    width: 1.5em;
    border: .15em solid var(--brand);
    border-radius: 1em;
}
.page-wrap {
    display: flex;
    height: 100vh;
}
.scroll-icon__wheel-outer {
    display: block;
    position: absolute;
    left: 50%;
    top: .6em;
    height: 1em;
    width: .4em;
    margin-left: -.2em;
    border-radius: .4em;
    overflow: hidden;
}

.scroll-icon__wheel-inner {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: inherit;
    background: var(--brand);
    animation: scroll_1 2.75s ease-in-out infinite;
}


@keyframes scroll_1 {
    0%   { transform: translateY(0); }
    25%  { transform: translateY(-0.6em); }
    50%  { transform: translateY(0); }
    75%  { transform: translateY(0.6em); }
    100% { transform: translateY(0); }
}
.from_small_wiew{
    display: none;
}



/*=======Scroll Icon End============*/
/*========== HERO ==========*/

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: radial-gradient(circle at 15% 20%, rgba(95, 169, 154, 0.16), transparent 24%), radial-gradient(circle at 85% 28%, rgba(31, 111, 95, 0.14), transparent 20%), linear-gradient(135deg, #f8fbfd 0%, #eef3f8 45%, #e8eef4 100%);
    background-image: url("../img/main-bg.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-shadow: inset 0 0 0 2000px #fefefe73;
}

.hero-row {
    padding-top: 110px;
    padding-bottom: 70px;
}

.hero-section__bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image:
            linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 92%);
}

.hero-section__glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(26px);
    animation: heroGlowFloat 10s ease-in-out infinite;
}

.hero-section__glow--1 {
    width: 280px;
    height: 280px;
    left: 8%;
    top: 16%;
    background: rgba(95, 169, 154, 0.22);
}

.hero-section__glow--2 {
    width: 220px;
    height: 220px;
    right: 10%;
    bottom: 14%;
    background: rgba(143, 216, 197, 0.24);
    animation-delay: -3s;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-top: 18px;
    font-size: 62px;
}
.hero-text {
    margin-top: 22px;
    max-width: 680px;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-soft);
}

.hero-actions {
    margin-top: 34px;
}

.hero-stats {
    margin-top: 40px;
}

.mini-stat {
    padding: 20px;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.66);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}
.mini-stat img{
    width: 25px;
}
.mini-stat strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
    color: var(--site-dark);
}

.mini-stat span {
    display: block;
    color: var(--text-soft);
    line-height: 1.55;
}

/*========== HERO VISUAL ==========*/

.hero-visual {
    position: relative;
    min-height: 600px;
}
.hero-visual img{
    width: 25px;
}
.hero-card {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
}

.hero-card--main {
    position: absolute;
    top: 90px;
    right: 20px;
    width: min(100%, 430px);
    padding: 32px;
    animation: heroCardFloat 7s ease-in-out infinite;
}

.hero-card--main h3 {
    margin-bottom: 12px;
    font-size: 1.7rem;
}

.hero-card--main p {
    color: var(--text-soft);
    line-height: 1.75;
}

.hero-card__label {
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(31, 111, 95, 0.08);
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-card--floating {
    position: absolute;
    padding: 18px 20px;
    animation: heroCardFloatSmall 8s ease-in-out infinite;
}

.hero-card--top {
    top: 28px;
    left: 0;
    min-width: 240px;
    animation-delay: -1.2s;
}

.hero-card--bottom {
    bottom: 92px;
    left: 48px;
    min-width: 220px;
    animation-delay: -4.2s;
}

@keyframes heroCardFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-14px) rotate(-0.5deg);
    }
}

@keyframes heroCardFloatSmall {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(12px);
    }
}

@keyframes heroGlowFloat {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.06) translateY(10px);
    }
}

/*========== CONTENT PANELS ==========*/

.content-panel {
    padding: 38px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.content-panel .section-title {
    margin-top: 18px;
}

.content-panel .section-text + .section-text {
    margin-top: 16px;
}

.stat-card {
    padding: 30px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.4rem;
    color: var(--site-dark);
}

.stat-card span {
    display: block;
    color: var(--text-soft);
    line-height: 1.65;
}

/*========== SERVICES ==========*/

.service-card {
    position: relative;
    padding: 34px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
}

.service-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(31, 111, 95, 0.12), rgba(143, 216, 197, 0.22));
    box-shadow: inset 0 0 0 1px rgba(31, 111, 95, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card__icon img{
    width: 25px!important;
}

.service-card h3 {
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.service-list {
    padding-left: 1.15rem;
    margin-bottom: 0;
}

.service-list li {
    color: var(--text-soft);
    line-height: 1.8;
}

.service-list li + li {
    margin-top: 8px;
}

/*========== BENEFITS ==========*/

.benefit-card {
    padding: 30px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    height: 100%;
}

.benefit-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1.3rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}

/*========== TIMELINE ==========*/

.timeline-row {
    position: relative;
}

.timeline-card {
    padding: 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.timeline-card__step {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(31, 111, 95, 0.1);
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 700;
}

.timeline-card h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.timeline-card p {
    color: var(--text-soft);
    line-height: 1.75;
}

/*========== RESULTS ==========*/

.result-item {
    position: relative;
    padding: 24px 24px 24px 72px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--site-dark);
}

.result-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 24px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--brand), var(--accent));
    box-shadow: 0 0 0 8px rgba(31, 111, 95, 0.08);
}

/*========== CTA ==========*/

.cta-section {
    padding-top: 0;
}

.cta-box {
    padding: 56px 32px;
    border-radius: 32px;
    background:
            radial-gradient(circle at top left, rgba(95, 169, 154, 0.12), transparent 26%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.cta-box .section-title {
    margin-top: 18px;
}

.cta-box .section-text {
    max-width: 760px;
}

/*========== FOOTER ==========*/

.site-footer {
    padding-top: 90px;
    background: radial-gradient(circle at top right, rgba(143, 216, 197, 0.08), transparent 24%), linear-gradient(180deg, #0c1420 0%, #111b2b 100%);
    background-image: url("../img/footer.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-shadow: inset 0 0 0 2000px #16212fe8;
}

.site-footer__title {
    margin-top: 18px;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
}

.site-footer__text {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    max-width: 560px;
}

.footer-card {
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line-light);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.footer-card__item + .footer-card__item {
    margin-top: 20px;
}

.footer-card__label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--site-bg);
}
.footer-card__item i{
    color: var(--brand);
}
.footer-card p,
.footer-card a {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.footer-card a:hover {
    color: #ffffff;
    opacity: 0.9;
}

/*========== RESPONSIVE ==========*/

@media (max-width: 1199.98px) {
    .hero-title {
        max-width: 12ch;
    }

    .hero-visual {
        min-height: 540px;
    }

    .hero-card--main {
        width: 100%;
        max-width: 390px;
    }
}

@media (max-width: 991.98px) {
    .section-space {
        padding: 90px 0;
    }

    .section-overlap {
        margin-top: 0;
    }

    .site-navbar {
        padding: 14px 0;
    }

    .site-navbar .container {
        border-radius: 20px;
    }

    .hero-row {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 60px;
    }

    .hero-title {
        max-width: 100%;
    }

    .hero-visual {
        min-height: 420px;
        margin-top: 12px;
    }

    .hero-card--main {
        position: relative;
        top: auto;
        right: auto;
        max-width: 100%;
    }

    .hero-card--top,
    .hero-card--bottom {
        display: none;
    }

    .site-navbar .navbar-collapse {
        padding-top: 1rem;
    }

    .site-navbar .nav-link::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .section-space {
        padding: 78px 0;
    }

    .hero-row {
        padding-top: 120px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 11vw, 4rem);
    }

    .content-panel,
    .service-card,
    .timeline-card,
    .cta-box,
    .footer-card,
    .stat-card,
    .result-item {
        padding: 24px;
    }

    .result-item {
        padding-left: 64px;
    }
}

@media (max-width: 575.98px) {
    .btn-brand,
    .btn-outline-brand {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        display: grid !important;
    }

    .site-logo {
        font-size: 0.98rem;
    }

    .site-navbar .container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }
}
.final_footer {
    display: flex;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 0;
    color: var(--site-bg);
    padding-bottom: 25px;
}
.final_footer .final_footer_left{
    margin-right: auto;
    text-align: left;
}
.final_footer .final_footer_right{
    margin-left: auto;
    text-align: right;
}
.footer_content{
    padding-bottom: 25px;
}
.footer_row_one{
    align-items: center;
}
.final_footer a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
}
.final_footer a:hover{
    font-weight: 600;
    color: var(--brand);
}
@media only screen and (max-width: 425px) {
    .final_footer{
        display: block;
    }
    .final_footer .final_footer_left, .final_footer .final_footer_right {
        margin-right: auto;
        text-align: center;
        margin-left: auto;
        display: block;
        left: 0;
        right: 0;
        position: relative;
    }
}