
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Inter', sans-serif;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {

    padding: 18px 0;

    background: rgba(255,255,255,0.96);

    backdrop-filter: blur(15px);

    transition: all 0.3s;

    z-index: 9999;

}


.navbar.scrolled {

    padding: 12px 0;

    box-shadow:
        0 5px 25px rgba(0,0,0,0.08);

}


/* LOGO */

.navbar-brand {

    font-size: 28px;

    font-weight: 800;

    letter-spacing: -1.5px;

}


.logo-main {

    color: #151a1e;

}


.logo-green {

    color: #7eaa32;

    margin-left: 4px;

}


/* NAV LINKS */

.navbar-nav {

    gap: 8px;

}


.nav-link {

    color: #333b40 !important;

    font-size: 13px;

    font-weight: 600;

    padding: 10px 15px !important;

    transition: 0.3s;

}


.nav-link:hover,
.nav-link.active {

    color: #7da52f !important;

}


/* NAV BUTTON */

.nav-contact {

    background: #8db63b;

    color: #101610;

    padding: 11px 22px;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 700;

    border: none;

}


.nav-contact:hover {

    background: #111b20;

    color: white;

}


/* =====================================================
   HERO
===================================================== */

.hero-section {

    min-height: 100vh;

    position: relative;

    overflow: hidden;

    background: #06120d;

    color: white;

}


/* SOLAR BACKGROUND */

.hero-bg {

    position: absolute;

    inset: 0;

    background-image:

        url("../images/solar-farm.jpg");

    background-size: cover;

    background-position: center;

}


/* DARK OVERLAY */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(3,15,10,0.97) 0%,
            rgba(3,15,10,0.88) 38%,
            rgba(3,15,10,0.55) 70%,
            rgba(3,15,10,0.25) 100%
        );

}


/* HERO ROW */

.hero-row {

    min-height: 100vh;

    padding-top: 80px;

    padding-bottom: 80px;

}


/* =====================================================
   HERO LABEL
===================================================== */

.hero-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #a6d34c;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 25px;

}


.hero-label span {

    width: 35px;

    height: 2px;

    background: #a6d34c;

}


/* =====================================================
   HERO HEADING
===================================================== */

.hero-section h1 {

    font-size: clamp(
        48px,
        6vw,
        78px
    );

    font-weight: 800;

    line-height: 1.02;

    letter-spacing: -4px;

    max-width: 800px;

}


.hero-section h1 span {

    color: #a6d34c;

}


/* =====================================================
   DESCRIPTION
===================================================== */

.hero-description {

    max-width: 620px;

    color: #b6c3bc;

    font-size: 16px;

    line-height: 1.8;

    margin: 30px 0;

}


/* =====================================================
   BUTTONS
===================================================== */

.hero-buttons {

    display: flex;

    gap: 14px;

    flex-wrap: wrap;

}


.btn-solar {

    background: #a6d34c;

    color: #101610;

    border: none;

    padding: 14px 24px;

    border-radius: 5px;

    font-size: 13px;

    font-weight: 700;

}


.btn-solar:hover {

    background: white;

    color: #101610;

}


.btn-outline-light {

    padding: 14px 24px;

    border-radius: 5px;

    font-size: 13px;

}


/* =====================================================
   HERO FEATURES
===================================================== */

.hero-features {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 40px;

}


.hero-feature {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 15px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 30px;

    font-size: 11px;

    color: #d6ded9;

}


.hero-feature i {

    color: #a6d34c;

}


/* =====================================================
   SOLAR IMAGE
===================================================== */

.solar-visual {

    height: 570px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* GREEN GLOW */

.solar-glow {

    position: absolute;

    width: 400px;

    height: 400px;

    border-radius: 50%;

    background:
        rgba(166,211,76,0.16);

    filter: blur(70px);

}


/* IMAGE */

.solar-image {

    position: relative;

    width: 100%;

    max-width: 520px;

    border-radius: 12px;

    object-fit: cover;

    box-shadow:
        0 30px 70px rgba(0,0,0,0.5);

    animation:
        solarFloat 5s ease-in-out infinite;

}


/* IMAGE ANIMATION */

@keyframes solarFloat {

    0% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-10px);

    }

    100% {

        transform:
            translateY(0);

    }

}


/* =====================================================
   FLOATING PRODUCT CARD
===================================================== */

.solar-card {

    position: absolute;

    bottom: 45px;

    left: 0;

    display: flex;

    align-items: center;

    gap: 15px;

    min-width: 285px;

    padding: 18px 22px;

    background:
        rgba(4,17,11,0.92);

    backdrop-filter:
        blur(15px);

    border-left:
        3px solid #a6d34c;

    border-radius: 4px;

}


.solar-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(166,211,76,0.12);

    color: #a6d34c;

    font-size: 20px;

}


.solar-card small {

    color: #a6d34c;

    font-size: 8px;

    letter-spacing: 1.5px;

}


.solar-card h3 {

    font-size: 25px;

    margin: 3px 0;

}


.solar-card p {

    color: #9eaaa4;

    font-size: 10px;

    margin: 0;

}


/* =====================================================
   BOTTOM HERO BAR
===================================================== */

.hero-bottom {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    background:
        rgba(2,12,8,0.85);

    border-top:
        1px solid rgba(255,255,255,0.1);

    padding: 17px 0;

}


.bottom-item {

    display: flex;

    align-items: center;

    gap: 13px;

}


.bottom-item > i {

    color: #a6d34c;

    font-size: 21px;

}


.bottom-item strong {

    display: block;

    color: white;

    font-size: 13px;

}


.bottom-item span {

    display: block;

    color: #7f8d86;

    font-size: 9px;

    margin-top: 2px;

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width: 991px) {


    .navbar-nav {

        padding: 15px 0;

    }


    .nav-link {

        padding-left: 0 !important;

    }


    .hero-row {

        padding-top: 120px;

        padding-bottom: 150px;

    }


    .solar-visual {

        height: 430px;

        margin-top: 20px;

    }


    .hero-bottom {

        display: none;

    }

}


@media(max-width: 576px) {


    .hero-section h1 {

        font-size: 43px;

        letter-spacing: -2px;

    }


    .hero-description {

        font-size: 14px;

    }


    .hero-features {

        margin-bottom: 20px;

    }


    .solar-image {

        max-width: 360px;

    }


    .solar-card {

        left: 5px;

        bottom: 15px;

        min-width: 245px;

    }

}

/* =====================================================
   ABOUT SECTION
===================================================== */

.about-section {

    position: relative;

    padding: 120px 0;

    background: #ffffff;

    overflow: hidden;

}


/* IMAGE AREA */

.about-image-wrapper {

    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* BACKGROUND SHAPE */

.image-bg-shape {

    position: absolute;

    width: 430px;

    height: 430px;

    background: #eef5e2;

    border-radius: 50%;

    left: 30px;

    top: 40px;

}


/* IMAGE */

.about-main-image {

    position: relative;

    width: 88%;

    height: 430px;

    object-fit: cover;

    border-radius: 8px;

    z-index: 2;

    box-shadow:
        0 25px 50px rgba(0,0,0,0.12);

}


/* BADGE */

.about-badge {

    position: absolute;

    z-index: 3;

    bottom: 35px;

    right: 5px;

    display: flex;

    align-items: center;

    gap: 15px;

    background: #07130d;

    color: white;

    padding: 18px 22px;

    min-width: 245px;

    border-left: 4px solid #9abe46;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.2);

}


.badge-number {

    font-size: 32px;

    font-weight: 800;

    color: #9abe46;

}


.about-badge strong {

    display: block;

    font-size: 13px;

}


.about-badge small {

    display: block;

    color: #98a59e;

    font-size: 9px;

    margin-top: 4px;

}


/* CONTENT */

.about-content {

    padding-left: 45px;

}


.about-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #7c9f35;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 20px;

}


.about-label::before {

    content: "";

    width: 30px;

    height: 2px;

    background: #9abe46;

}


.about-content h2 {

    font-size: 52px;

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -2px;

    color: #10181c;

    margin-bottom: 25px;

}


.about-content h2 span {

    color: #88ae39;

}


.about-content > p {

    color: #68767e;

    font-size: 14px;

    line-height: 1.8;

    max-width: 570px;

}


.about-intro {

    font-size: 17px !important;

    color: #354047 !important;

    font-weight: 500;

}


/* FEATURES */

.about-points {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 30px;

    margin-bottom: 30px;

}


.about-point {

    display: flex;

    gap: 13px;

}


.point-icon {

    min-width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eff6e3;

    color: #7ea638;

    border-radius: 50%;

}


.about-point h5 {

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 5px;

}


.about-point p {

    color: #7b878e;

    font-size: 11px;

    line-height: 1.5;

    margin: 0;

}


/* BUTTON */

.about-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #1a2226;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    border-bottom: 2px solid #9abe46;

    padding-bottom: 7px;

    transition: .3s;

}


.about-btn i {

    color: #83a936;

}


.about-btn:hover {

    color: #83a936;

    gap: 18px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 991px) {

    .about-content {

        padding-left: 0;

        margin-top: 70px;

    }

    .about-image-wrapper {

        min-height: 450px;

    }

}


@media(max-width: 576px) {

    .about-section {

        padding: 80px 0;

    }

    .about-content h2 {

        font-size: 40px;

    }

    .about-main-image {

        width: 95%;

        height: 350px;

    }

    .image-bg-shape {

        width: 330px;

        height: 330px;

    }

    .about-points {

        grid-template-columns: 1fr;

    }

    .about-badge {

        right: 0;

        bottom: 10px;

    }

}

/* =====================================================
   SOLAR INTELLIGENCE
===================================================== */

.solar-intelligence {

    position: relative;

    padding: 120px 0;

    background: #07130e;

    color: white;

    overflow: hidden;

}


/* BACKGROUND GLOW */

.solar-intelligence::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: rgba(145, 184, 62, 0.08);

    filter: blur(90px);

    right: -150px;

    top: -150px;

}


/* LEFT LABEL */

.solar-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #9bc542;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 20px;

}


.solar-label span {

    width: 32px;

    height: 2px;

    background: #9bc542;

}


/* HEADING */

.solar-intelligence h2 {

    font-size: 48px;

    line-height: 1.08;

    letter-spacing: -2px;

    font-weight: 800;

    margin-bottom: 25px;

}


.solar-intelligence h2 span {

    color: #9bc542;

}


/* TEXT */

.solar-intelligence > .container
.row > .col-lg-5 > p {

    color: #9ba9a2;

    font-size: 14px;

    line-height: 1.8;

    max-width: 480px;

}


/* LINK */

.solar-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 20px;

    color: white;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    padding-bottom: 8px;

    border-bottom: 2px solid #9bc542;

    transition: .3s;

}


.solar-link i {

    color: #9bc542;

}


.solar-link:hover {

    color: #9bc542;

    gap: 18px;

}


/* =====================================================
   PROCESS
===================================================== */

.solar-process {

    position: relative;

    margin-left: 60px;

}


/* PROCESS ITEM */

.process-item {

    position: relative;

    display: grid;

    grid-template-columns: 45px 60px 1fr;

    align-items: center;

    gap: 18px;

    padding: 20px;

    background: rgba(255,255,255,0.035);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 8px;

    transition: .3s;

}


.process-item:hover {

    background: rgba(155,197,66,0.08);

    border-color: rgba(155,197,66,0.35);

    transform: translateX(5px);

}


/* NUMBER */

.process-number {

    color: #65736c;

    font-size: 11px;

    font-weight: 800;

}


/* ICON */

.process-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(155,197,66,0.10);

    color: #9bc542;

    font-size: 20px;

}


/* ACTIVE */

.process-item.active {

    border-color: #9bc542;

    background: rgba(155,197,66,0.08);

}


.process-item.active .process-icon {

    background: #9bc542;

    color: #07130e;

}


/* CONTENT */

.process-content h4 {

    font-size: 15px;

    font-weight: 700;

    margin-bottom: 6px;

}


.process-content p {

    color: #82918a;

    font-size: 11px;

    line-height: 1.6;

    margin: 0;

}


/* CONNECTING LINE */

.process-line {

    height: 28px;

    width: 1px;

    background: rgba(155,197,66,0.35);

    margin-left: 72px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 991px) {

    .solar-intelligence {

        padding: 90px 0;

    }


    .solar-process {

        margin-left: 0;

        margin-top: 60px;

    }

}


@media(max-width: 576px) {

    .solar-intelligence h2 {

        font-size: 38px;

    }


    .process-item {

        grid-template-columns: 30px 50px 1fr;

        gap: 12px;

        padding: 15px;

    }


    .process-icon {

        width: 45px;

        height: 45px;

        font-size: 16px;

    }


    .process-line {

        margin-left: 55px;

    }

}


/* =====================================================
   WHY SOLAR AUTOMATION
===================================================== */

.why-solar-section {

    padding: 120px 0;

    background: #f5f7f3;

}


/* LABEL */

.why-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #789c35;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 18px;

}


.why-label span {

    width: 32px;

    height: 2px;

    background: #94bd43;

}


/* HEADING */

.why-solar-section h2 {

    font-size: 48px;

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -2px;

    color: #101817;

}


.why-solar-section h2 span {

    color: #82a936;

}


/* INTRO */

.why-intro {

    color: #68766f;

    font-size: 14px;

    line-height: 1.8;

    margin: 0;

}


/* =====================================================
   IMAGE
===================================================== */

.solar-feature-image {

    position: relative;

    height: 520px;

    overflow: hidden;

    border-radius: 10px;

}


.solar-feature-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;

}


.solar-feature-image:hover img {

    transform: scale(1.05);

}


/* IMAGE GRADIENT */

.solar-feature-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 40%,
            rgba(0,0,0,.78)
        );

}


/* IMAGE CAPTION */

.image-caption {

    position: absolute;

    z-index: 2;

    bottom: 30px;

    left: 30px;

    right: 30px;

    color: white;

}


.image-caption span {

    display: block;

    color: #a5cf4b;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 8px;

}


.image-caption strong {

    display: block;

    max-width: 450px;

    font-size: 25px;

    line-height: 1.2;

}


/* =====================================================
   BENEFITS
===================================================== */

.benefits-box {

    background: #ffffff;

    border-radius: 10px;

    padding: 15px 30px;

    height: 100%;

    box-shadow:
        0 15px 40px rgba(0,0,0,.05);

}


.benefit-item {

    display: flex;

    gap: 18px;

    padding: 25px 0;

    border-bottom: 1px solid #e9ede9;

}


.benefit-item:last-child {

    border-bottom: none;

}


/* ICON */

.benefit-icon {

    min-width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #edf5df;

    color: #7fa637;

    font-size: 18px;

}


/* TEXT */

.benefit-item h4 {

    font-size: 15px;

    font-weight: 700;

    margin-bottom: 7px;

    color: #17201c;

}


.benefit-item p {

    color: #77837d;

    font-size: 11px;

    line-height: 1.6;

    margin: 0;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 991px) {

    .why-solar-section {

        padding: 90px 0;

    }

    .why-solar-section h2 {

        font-size: 40px;

    }

    .why-intro {

        margin-top: 20px;

    }

    .solar-feature-image {

        height: 450px;

    }

}


@media(max-width: 576px) {

    .why-solar-section h2 {

        font-size: 35px;

    }

    .solar-feature-image {

        height: 380px;

    }

    .image-caption strong {

        font-size: 20px;

    }

    .benefits-box {

        padding: 10px 20px;

    }

}

/* =====================================================
   SOLAR ECOSYSTEM
===================================================== */

.solar-ecosystem {

    position: relative;

    padding: 120px 0;

    background: #06120d;

    color: white;

    overflow: hidden;

}


/* BACKGROUND EFFECT */

.solar-ecosystem::before {

    content: "";

    position: absolute;

    width: 650px;

    height: 650px;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        rgba(145,184,62,0.06);

    filter: blur(70px);

}


/* =====================================================
   HEADING
===================================================== */

.ecosystem-heading {

    position: relative;

    z-index: 2;

    max-width: 700px;

    margin: auto;

}


.ecosystem-label {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    color: #9bc542;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 20px;

}


.ecosystem-label span {

    width: 30px;

    height: 1px;

    background: #9bc542;

}


.ecosystem-heading h2 {

    font-size: 48px;

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -2px;

    margin-bottom: 18px;

}


.ecosystem-heading h2 span {

    color: #9bc542;

}


.ecosystem-heading p {

    color: #899890;

    font-size: 13px;

    line-height: 1.8;

}


/* =====================================================
   ECOSYSTEM WRAPPER
===================================================== */

.ecosystem-wrapper {

    position: relative;

    min-height: 550px;

    margin-top: 70px;

}


/* =====================================================
   CENTER
===================================================== */

.eco-center {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

}


.center-ring {

    width: 260px;

    height: 260px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(155,197,66,0.4);

    box-shadow:
        0 0 0 25px rgba(155,197,66,0.025),
        0 0 0 55px rgba(155,197,66,0.018);

    animation: rotateRing 15s linear infinite;

}


@keyframes rotateRing {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


.center-inner {

    width: 190px;

    height: 190px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle,
            #18311d,
            #08130e
        );

    border: 1px solid rgba(155,197,66,0.35);

}


.center-inner i {

    font-size: 40px;

    color: #9bc542;

    margin-bottom: 10px;

}


.center-inner strong {

    font-size: 23px;

    letter-spacing: 3px;

}


.center-inner small {

    color: #84928b;

    font-size: 8px;

    letter-spacing: 3px;

    margin-top: 5px;

}


/* =====================================================
   CARDS
===================================================== */

.eco-card {

    position: absolute;

    width: 300px;

    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 22px;

    background:
        rgba(255,255,255,0.035);

    border: 1px solid
        rgba(255,255,255,0.09);

    border-radius: 8px;

    transition: .35s;

    z-index: 3;

}


.eco-card:hover {

    transform: translateY(-6px);

    border-color:
        rgba(155,197,66,0.5);

    background:
        rgba(155,197,66,0.07);

}


.eco-icon {

    min-width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(155,197,66,0.1);

    color: #9bc542;

    border-radius: 50%;

}


.eco-card h4 {

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 6px;

}


.eco-card p {

    color: #7f8e86;

    font-size: 10px;

    line-height: 1.6;

    margin: 0;

}


/* =====================================================
   CARD POSITIONS
===================================================== */

.eco-left-top {

    top: 30px;

    left: 0;

}


.eco-left-bottom {

    bottom: 30px;

    left: 0;

}


.eco-right-top {

    top: 30px;

    right: 0;

}


.eco-right-bottom {

    bottom: 30px;

    right: 0;

}


/* =====================================================
   BOTTOM
===================================================== */

.ecosystem-bottom {

    display: flex;

    justify-content: center;

    gap: 70px;

    border-top:
        1px solid rgba(255,255,255,0.08);

    padding-top: 25px;

}


.ecosystem-bottom div {

    display: flex;

    align-items: center;

    gap: 10px;

}


.ecosystem-bottom strong {

    color: #9bc542;

    font-size: 11px;

}


.ecosystem-bottom span {

    color: #89968f;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 991px) {

    .ecosystem-wrapper {

        min-height: auto;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 20px;

    }


    .eco-center {

        position: relative;

        left: auto;

        top: auto;

        transform: none;

        grid-column: 1 / 3;

        grid-row: 1;

        margin: 30px auto;

    }


    .eco-left-top,
    .eco-left-bottom,
    .eco-right-top,
    .eco-right-bottom {

        position: relative;

        top: auto;

        bottom: auto;

        left: auto;

        right: auto;

        width: 100%;

    }

}


@media(max-width: 576px) {

    .solar-ecosystem {

        padding: 90px 0;

    }


    .ecosystem-heading h2 {

        font-size: 36px;

    }


    .ecosystem-wrapper {

        grid-template-columns: 1fr;

    }


    .eco-center {

        grid-column: auto;

    }


    .eco-card {

        width: 100%;

    }


    .ecosystem-bottom {

        gap: 20px;

        justify-content: space-between;

    }

}

/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {

    position: relative;

    padding: 120px 0;

    background: #07130e;

    color: white;

    overflow: hidden;

}


/* BACKGROUND EFFECT */

.contact-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -180px;

    top: -180px;

    border-radius: 50%;

    background: rgba(155, 197, 66, 0.08);

    filter: blur(80px);

}


/* LABEL */

.contact-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #9bc542;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 20px;

}


.contact-label span {

    width: 32px;

    height: 2px;

    background: #9bc542;

}


/* HEADING */

.contact-section h2 {

    font-size: 52px;

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -2px;

    margin-bottom: 25px;

}


.contact-section h2 span {

    color: #9bc542;

}


/* DESCRIPTION */

.contact-intro {

    max-width: 500px;

    color: #9aa9a1;

    font-size: 14px;

    line-height: 1.8;

}


/* HIGHLIGHT */

.contact-highlight {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 35px;

}


.contact-highlight > i {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(155,197,66,0.10);

    color: #9bc542;

    border-radius: 50%;

    font-size: 20px;

}


.contact-highlight strong {

    display: block;

    font-size: 13px;

}


.contact-highlight span {

    display: block;

    color: #7e8d85;

    font-size: 10px;

    margin-top: 4px;

}


/* =====================================================
   CONTACT CARD
===================================================== */

.contact-card {

    position: relative;

    background: #101d17;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 10px;

    padding: 35px;

}


/* ITEM */

.contact-item {

    display: flex;

    gap: 18px;

    padding: 22px 0;

    border-bottom: 1px solid rgba(255,255,255,0.08);

}


.contact-item:first-child {

    padding-top: 0;

}


.contact-item:last-of-type {

    border-bottom: none;

}


/* ICON */

.contact-icon {

    min-width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(155,197,66,0.10);

    color: #9bc542;

    border-radius: 50%;

}


/* TEXT */

.contact-item small {

    color: #9bc542;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

}


.contact-item h4 {

    font-size: 15px;

    font-weight: 700;

    margin: 5px 0;

}


.contact-item p {

    color: #84938b;

    font-size: 11px;

    line-height: 1.7;

    margin: 0;

}


/* BUTTON */

.contact-button {

    margin-top: 25px;

}


.contact-btn-main {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background: #9bc542;

    color: #07130e;

    border-radius: 5px;

    padding: 13px 22px;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

}


.contact-btn-main:hover {

    background: white;

    color: #07130e;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 991px) {

    .contact-section {

        padding: 90px 0;

    }

    .contact-card {

        margin-top: 50px;

    }

}


@media(max-width: 576px) {

    .contact-section h2 {

        font-size: 38px;

    }

    .contact-card {

        padding: 25px 20px;

    }

}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {

    position: relative;

    background: #040b08;

    color: white;

    padding: 80px 0 25px;

    overflow: hidden;

}


/* TOP GREEN GLOW */

.site-footer::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    right: -200px;

    bottom: -250px;

    border-radius: 50%;

    background: rgba(155, 197, 66, 0.07);

    filter: blur(80px);

}


/* =====================================================
   LOGO
===================================================== */

.footer-logo {

    display: inline-block;

    color: white;

    font-size: 27px;

    font-weight: 800;

    letter-spacing: -1.5px;

    text-decoration: none;

    margin-bottom: 20px;

}


.footer-logo span {

    color: #9bc542;

    margin-left: 4px;

}


/* DESCRIPTION */

.footer-description {

    max-width: 340px;

    color: #7d8b84;

    font-size: 12px;

    line-height: 1.8;

    margin-bottom: 25px;

}


/* =====================================================
   SOCIAL
===================================================== */

.footer-social {

    display: flex;

    gap: 9px;

}


.footer-social a {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 50%;

    color: #8b9891;

    font-size: 13px;

    text-decoration: none;

    transition: .3s;

}


.footer-social a:hover {

    background: #9bc542;

    border-color: #9bc542;

    color: #07130e;

    transform: translateY(-3px);

}


/* =====================================================
   TITLES
===================================================== */

.footer-title {

    color: white;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 22px;

}


/* =====================================================
   LINKS
===================================================== */

.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

}


.footer-links li {

    margin-bottom: 12px;

}


.footer-links a {

    color: #78867f;

    text-decoration: none;

    font-size: 11px;

    transition: .3s;

}


.footer-links a:hover {

    color: #9bc542;

    padding-left: 5px;

}


/* =====================================================
   CONTACT
===================================================== */

.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 17px;

}


.footer-contact-item i {

    color: #9bc542;

    font-size: 13px;

    margin-top: 2px;

}


.footer-contact-item span {

    color: #7c8983;

    font-size: 11px;

    line-height: 1.6;

}


/* =====================================================
   DIVIDER
===================================================== */

.footer-divider {

    height: 1px;

    background: rgba(255,255,255,0.08);

    margin: 55px 0 22px;

}


/* =====================================================
   BOTTOM
===================================================== */

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom p {

    color: #65726c;

    font-size: 10px;

    margin: 0;

}


.footer-bottom-links {

    display: flex;

    gap: 25px;

}


.footer-bottom-links a {

    color: #65726c;

    font-size: 10px;

    text-decoration: none;

}


.footer-bottom-links a:hover {

    color: #9bc542;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 767px) {

    .site-footer {

        padding: 65px 0 25px;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

    }


    .footer-bottom-links {

        gap: 15px;

    }

}