﻿:root {
    --bg: #060911;
    --bg2: #0a0f1c;
    --panel: #0d1424;
    --panel-border: rgba(255,255,255,0.08);
    --text: #eef1f8;
    --muted: #8b93a7;
    --lime: #8CC63F;
    --lime-dim: #6fa82e;
    --west: #3E7BFA;
    --north: #3CCB7F;
    --south: #F5A623;
    --tel: #A855F7;
    --east: #EF4B5C;
    --pune: #2DD4BF;
}

* {
    box-sizing: border-box;
}

/*body {
    margin: 0;
    background: radial-gradient(ellipse 900px 600px at 18% -10%, rgba(60,203,127,0.10), transparent 60%), radial-gradient(ellipse 900px 700px at 85% 10%, rgba(62,123,250,0.10), transparent 55%), var(--bg);
    color: var(--text);
    font-family: 'Inter',sans-serif;
    min-height: 100vh;
}*/


/* Web Layout Background Scheme */
body {
    background-color: #FFFFFF; /* Soft gray-white background reduces screen glare */
}

.content-card {
    background-color: #FFFFFF; /* Pure white used strictly for content containers */
    color: #111827; /* Deep near-black text for optimal accessibility contrast */
}


h1, h2, h3, .brand {
    font-family: 'Sora',sans-serif;
}

.wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 28px 70px;
}

/* Brand header */
.brandbar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp .6s ease forwards;
}

.roof {
    width: 22px;
    height: 16px;
    position: relative;
}

    .roof::before, .roof::after {
        content: "";
        position: absolute;
        bottom: 0;
        width: 14px;
        height: 4px;
        border-radius: 2px;
    }

    .roof::before {
        left: 0;
        background: var(--lime);
        transform: rotate(28deg);
        transform-origin: bottom left;
    }

    .roof::after {
        right: 0;
        background: var(--west);
        transform: rotate(-28deg);
        transform-origin: bottom right;
    }

.brand {
    font-weight: 800;
    font-size: 18px;
    color: #fff;
}

    .brand span {
        color: var(--lime);
    }

    .brand small {
        display: block;
        font-family: 'Inter',sans-serif;
        font-weight: 600;
        font-size: 9.5px;
        color: var(--muted);
        letter-spacing: 2px;
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--lime);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
    opacity: 0;
    animation: fadeUp .6s ease .05s forwards;
}

    .eyebrow::before, .eyebrow::after {
        content: "";
        width: 46px;
        height: 1px;
        background: linear-gradient(90deg,transparent,var(--lime));
    }

    .eyebrow::after {
        background: linear-gradient(90deg,var(--lime),transparent);
    }

h1.title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: -.5px;
    opacity: 0;
    animation: fadeUp .6s ease .1s forwards;
}

.subtitle {
    text-align: center;
    color: #3a8e1f;
    font-size: 15px;
    margin: 0 0 40px;
    opacity: 0;
    animation: fadeUp .6s ease .15s forwards;
}

    .subtitle b {
        color: #41a51a;
    }

.grid {
    display: grid;
    grid-template-columns: 250px 1fr 360px;
    gap: 22px;
    align-items: start;
}

@media (max-width:1150px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

.glass {
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}

/* Stats rail */
.stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    background-color: #eef1f8;
    animation: fadeUp .6s ease .2s forwards;
}

.stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
}

    .stat .icon {
        width: 42px;
        height: 42px;
        border-radius: 11px;
        background: rgba(140,198,63,0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .stat .icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--lime);
        }

    .stat .num {
        font-weight: 800;
        font-size: 18px;
        color: #144fe2;
        line-height: 1.1;
    }

    .stat .label {
        font-size: 11.5px;
        color: #075bea;
    }

.legend {
    padding: 16px;
    margin-top: 14px;
    font-size: 12.5px;
    opacity: 0;
    animation: fadeUp .6s ease .25s forwards;
}

    .legend .row {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 6px 0;
        color: #3355b2;
        cursor: pointer;
        border-radius: 8px;
        padding-left: 6px;
        transition: background .15s;
    }

        .legend .row:hover {
            background: rgba(255,255,255,0.04);
        }

    .legend .dot {
        width: 11px;
        height: 11px;
        border-radius: 50%;
        flex-shrink: 0;
        box-shadow: 0 0 8px currentColor;
    }

/* Map */
.mapcard {
    padding: 22px;
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    background-color: #eef1f8;
    animation: fadeUp .6s ease .18s forwards;
    overflow: hidden;
}

    .mapcard::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
        background-size: 26px 26px;
        mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
        pointer-events: none;
    }

.hint {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--panel-border);
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 11.5px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

svg.mapsvg {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: 26px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.state {
    stroke: rgba(6,9,17,0.9);
    stroke-width: 1;
    cursor: pointer;
    transition: filter .2s ease, opacity .2s ease, stroke-width .2s ease;
    opacity: 0.88;
}

    .state:hover {
        opacity: 1;
    }

    .state.active {
        opacity: 1;
        stroke: #fff;
        stroke-width: 1.4;
        filter: brightness(1.18) saturate(1.15) drop-shadow(0 0 10px currentColor);
    }

    .state.dim {
        opacity: 0.35;
    }

.pin {
    cursor: pointer;
}

    .pin circle.core {
        fill: var(--pune);
        stroke: #fff;
        stroke-width: 1.6;
    }

    .pin circle.pulse {
        fill: none;
        stroke: var(--pune);
        stroke-width: 2;
        opacity: .55;
        animation: pulse 2.2s ease-out infinite;
    }

@keyframes pulse {
    0% {
        r: 5;
        opacity: .6;
    }

    100% {
        r: 16;
        opacity: 0;
    }
}

.tooltip {
    position: absolute;
    pointer-events: none;
    background: #0d1424;
    border: 1px solid var(--panel-border);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    transform: translate(-50%,-135%);
    white-space: nowrap;
    z-index: 5;
    opacity: 0;
    transition: opacity .12s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

    .tooltip.show {
        opacity: 1;
    }

/* Active panel */
.panel {
    padding: 24px;
    opacity: 0;
    animation: fadeUp .6s ease .3s forwards;
}

    .panel .tag {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        color: var(--lime);
        text-transform: uppercase;
    }

    .panel .states {
        font-size: 20px;
        font-weight: 800;
        color: #fff;
        margin: 8px 0 18px;
        line-height: 1.35;
        min-height: 54px;
    }

.mgr {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--panel-border);
    border-bottom: 1px solid var(--panel-border);
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 19px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px -6px rgba(0,0,0,0.6);
}

.mgr .name {
    font-weight: 700;
    font-size: 16.5px;
    color: #271bdd;
}

.mgr .role {
    font-size: 12px;
    color: var(--lime);
    font-weight: 600;
}

.mgr .loc {
    font-size: 12px;
    color: #191a1c;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sec-label {
    font-size: 10.5px;
    font-weight: 700;
    color: #08090c;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 18px 0 9px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.chip {
    border: 1px solid var(--panel-border);
    background: #0f2e9f;
    border-radius: 8px;
    padding: 5px 11px;
    font-size: 12px;
    color: #dfe3ee;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #08090c;
    padding: 5px 0;
}

    .contact-row svg {
        width: 15px;
        height: 15px;
        stroke: var(--west);
        flex-shrink: 0;
    }

.btnrow {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
}

    .btn:hover {
        transform: translateY(-1px);
    }

    .btn.primary {
        background: #6fa82e;
        color: #fff;
        box-shadow: 0 10px 24px -8px rgba(62,123,250,0.6);
    }

    .btn.ghost {
        border: 1.5px solid var(--panel-border);
        color: #fff;
        background: rgba(255,255,255,0.03);
    }

    .btn svg {
        width: 14px;
        height: 14px;
    }

/* Manager cards row */
.rowhead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 46px 0 18px;
}

    .rowhead h3 {
        font-size: 19px;
        color: #fff;
        margin: 0;
        font-weight: 700;
    }

.arrows {
    display: flex;
    gap: 8px;
}

.arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--panel-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    background: rgba(255,255,255,0.03);
}

.cards {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 16px;
}

@media (max-width:1000px) {
    .cards {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width:600px) {
    .cards {
        grid-template-columns: repeat(2,1fr);
    }
}

.mcard {
    border: 1.5px solid var(--panel-border);
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
    cursor: pointer;
    transition: border-color .15s, transform .15s, box-shadow .15s;
    background: rgba(255,255,255,0.02);
}

    .mcard:hover {
        transform: translateY(-4px);
    }

    .mcard.active {
        box-shadow: 0 16px 34px -14px rgba(0,0,0,0.6);
    }

    .mcard .avatar {
        width: 66px;
        height: 66px;
        margin: 0 auto 12px;
        font-size: 20px;
    }

    .mcard .name {
        font-weight: 700;
        font-size: 14px;
        color: #fff;
    }

    .mcard .loc {
        font-size: 11.5px;
        font-weight: 600;
        margin-bottom: 9px;
    }

    .mcard .region-txt {
        font-size: 11px;
        color: var(--muted);
        min-height: 32px;
        margin-bottom: 12px;
    }

    .mcard .iconrow {
        display: flex;
        gap: 8px;
        justify-content: center;
    }

.iconbtn {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

    .iconbtn svg {
        width: 14px;
        height: 14px;
    }

/* Footer CTA */
.cta {
    margin-top: 48px;
    background: linear-gradient(135deg,#0c1120,#0d1e14);
    border: 1px solid var(--panel-border);
    border-radius: 18px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .cta-left .ic {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: rgba(140,198,63,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .cta-left .ic svg {
            width: 20px;
            height: 20px;
            stroke: var(--lime);
        }

.cta h4 {
    margin: 0;
    font-size: 15px;
    color: #fff;
}

.cta p {
    margin: 2px 0 0;
    font-size: 12.5px;
    color: var(--muted);
}

.cta-mid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #dfe3ee;
}

    .cta-item svg {
        width: 16px;
        height: 16px;
        stroke: var(--lime);
    }

.cta-btn {
    background: var(--lime);
    color: #0a1c05;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 11px;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform .15s;
}

    .cta-btn:hover {
        transform: translateY(-1px);
    }







/*contact form code
*/



.container1 {
    max-width: 1200px;
    margin: 70px auto;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* LEFT */

.cform h2 {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cform .sub {
    font-size: 16px;
    color: #101010;
    margin-bottom: 30px;
}

.field {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f6f6f7;
    border: 1px solid #58812f;
   
    border-radius: 16px;
    padding: 10px 20px;
    margin-bottom: 18px;
}

    .field i {
        width: 22px;
        text-align: center;
        color: #6fa82e;
        font-size: 18px;
    }

    .field input,
    .field textarea {
        width: 100%;
        border: none;
        outline: none;
        background: transparent;
        font-size: 14px;
        color: #555;
        font-family: inherit;
    }

    .field textarea {
        height: 136px;
        resize: none;
    }

        .field input::placeholder,
        .field textarea::placeholder {
            color: #6b7280;
        }

    .field:focus-within {
        border-color: #6fa82e;
        background: #fff;
    }

.btn {
    background: #6fa82e;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

    .btn:hover {
        background: #6fa82e;
    }

/* RIGHT */

.cinfo {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 25px;
}

.ic {
    width: 65px;
    height: 65px;
    background: #fdecec;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .ic i {
        font-size: 24px;
        color: #6fa82e;
    }

.info-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--lime-dim);
}

.info-card p,
.info-card a {
    color: #101215;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.7;
}

    .info-card a:hover {
        color: #e32222;
    }

@media(max-width:992px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cform h2 {
        font-size: 34px;
    }
}




/*contact form code
*/



/*search headerhome-style-1*/




.hero {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top left,#ffffff,#f3faed);
}


/* Animated Canvas */

canvas {
    position: absolute;
    inset: 0;
    width: 93%;
    height: 84%;
}


/* Green Glow */

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #7CB518;
    opacity: .12;
    filter: blur(100px);
    top: -150px;
    left: -150px;
    border-radius: 50%;
}


/* Main Wrapper */

.wrapper {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    height: 30px;
}



/* Content */

.content {
    flex: 1;
}




h1 {
    font-size: 33px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient( 90deg, #1B2A5B, #7CB518 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


p {
    margin-top: 25px;
    font-size: 18px;
    line-height: 1.7;
    color: #131212;
    max-width: 520px;
}



/* Buttons */


.buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}


.btn {
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}


.primary {
    background: #7CB518;
    color: white;
    box-shadow: 0 15px 35px rgba(124,181,24,.35);
}


    .primary:hover {
        transform: translateY(-5px);
        background: #5C9012;
    }


.secondary {
    border: 2px solid #1B2A5B;
    color: #1B2A5B;
}


    .secondary:hover {
        background: #1B2A5B;
        color: white;
    }



/* Logo Area */

.logo-box {
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}



    .logo-box::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(124,181,24,.12);
        animation: pulse 4s infinite;
    }



@keyframes pulse {

    0% {
        transform: scale(.9);
        opacity: .5;
    }

    50% {
        transform: scale(1.1);
        opacity: .9;
    }

    100% {
        transform: scale(.9);
        opacity: .5;
    }
}




/* Mobile */

@media(max-width:900px) {

    .hero {
        min-height: 700px;
    }


    .wrapper {
        flex-direction: column-reverse;
        text-align: center;
        padding: 50px 0;
    }


    h1 {
        font-size: 38px;
    }


    p {
        margin: auto;
        font-size: 15px;
    }


    .buttons {
        justify-content: center;
        flex-wrap: wrap;
    }


    .logo-box {
        width: 280px;
        height: 280px;
    }
}


@media(max-width:480px) {

    h1 {
        font-size: 30px;
    }


    .tag {
        font-size: 10px;
    }


    .btn {
        padding: 14px 25px;
    }
}





/*search headerhome-style-1*/