﻿:root {
    --dark: #36400A;
    --primary: #434C00;
    --accent: #4E7B12;
    --light-accent: #90C745;
    --grey: #DEDED8;
    --white: #FFFFFF;
}

* {
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    margin: 0;
    background: #fff;
    color: #333;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

/* ---------- GLOBAL ---------- */
.section {
    padding: 70px 10%;
}

h1, h2, h3 {
    color: var(--primary);
}

p {
    line-height: 1.7;
}

.center {
    text-align: center;
}

/* ---------- HERO ---------- */
.hero {
    background: linear-gradient(135deg,var(--dark),var(--primary));
    color: #fff;
    padding: 90px 10%;
}

    .hero h1 {
        font-size: 38px;
        color: #fff;
    }

    .hero p {
        max-width: 750px;
        margin-top: 15px;
        font-size: 18px;
    }

/* ---------- FEATURE CARDS ---------- */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
    gap: 25px;
    margin-top: -50px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    text-align: center;
}

    .card h3 {
        color: var(--accent);
        margin-bottom: 10px;
    }

/* ---------- SPLIT SECTIONS ---------- */
.split {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

    .split.reverse {
        flex-direction: row-reverse;
    }

    .split img {
        width: 100%;
        max-width: 450px;
    }

.split-content {
    flex: 1;
}
.innerpagebanner {
    background: url(../Images/banner-bg.png) no-repeat;
    background-size: 100% 100%;
    padding: 150px 0 100px;
}

    .innerpagebanner h1 {
        color: #fff;
        font-size: 48px;
        line-height: 48px;
        font-weight: 700;
        margin-bottom: 30px;
    }
/* ---------- LIST ---------- */
ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

/* ---------- PROCESS ---------- */
.process {
    background: var(--grey);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.step {
    background: #fff;
    border-left: 6px solid var(--accent);
    padding: 25px;
    border-radius: 10px;
}

/* ---------- CTA ---------- */
.cta {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 70px 10%;
}

    .cta button {
        background: var(--light-accent);
        color: #000;
        border: none;
        padding: 14px 35px;
        font-size: 16px;
        border-radius: 30px;
        cursor: pointer;
        margin-top: 20px;
    }

/* ---------- RESPONSIVE ---------- */
@media(max-width:768px) {
    .hero h1 {
        font-size: 30px;
    }
}



@media (max-width: 480px) {

    .section,
    .hero,
    .cta {
        padding: 50px 6%;
    }

        .hero h1 {
            font-size: 26px;
            line-height: 32px;
        }

        .hero p {
            font-size: 15px;
        }

    .cards {
        margin-top: 0;
        gap: 15px;
    }

    .card {
        padding: 18px;
        border-radius: 12px;
    }

    .split {
        gap: 30px;
    }

        .split img {
            max-width: 100%;
        }

    .innerpagebanner {
        background-size: cover;
        padding: 110px 20px 60px;
    }

        .innerpagebanner h1 {
            font-size: 28px;
            line-height: 32px;
        }
}
@media (min-width: 390px) and (max-width: 430px) {
    .hero {
        padding-top: 100px;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}
@media (min-width: 600px) and (max-width: 820px) {

    .section {
        padding: 60px 8%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .split {
        gap: 40px;
    }
}
@media (min-width: 900px) and (max-width: 1366px) {

    .section {
        padding: 70px 10%;
    }

    .cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero h1 {
        font-size: 36px;
    }

    .split img {
        max-width: 500px;
    }
}

.form-control {
    height: 50px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
}

    header:after {
        content: "";
        display: block;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 133px;
        background: #363c0a;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s all ease;
    }

    header.fixed {
        padding: 0;
        z-index: 11;
    }

        header.fixed:after {
            opacity: 1;
            visibility: visible;
            height: 73px;
        }

    header .navbar-expand-lg {
        background: transparent !important;
        position: relative;
        z-index: 1;
    }

.navbar-expand-lg .navbar-nav .nav-link {
    color: #fff;
    font-weight: 700;
    /*padding: 0 25px;*/
}

    .navbar-expand-lg .navbar-nav .nav-link:hover {
        color: #90c745;
    }

@media(min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 100%;
    }

        .navbar-expand-lg .navbar-nav .nav-item {
            margin-left: 20px;
        }
}
@media(max-width:991px) {
    .navbar-toggler {
        background: #fff;
    }

    .about-section3 .items {
        margin-bottom: 40px;
    }

    .about-section4 .items {
        margin-bottom: 40px;
    }
}

@media(max-width:767px) {
    .home-section1 {
        background-size: cover;
    }

        .home-section1 .text .title {
            font-size: 36px;
            line-height: 36px;
        }

        .home-section1 .text .btn-container {
            margin-bottom: 30px;
        }

    .home-section2 {
        padding: 40px 0 0;
    }

        .home-section2 .title {
            font-size: 36px;
            line-height: 36px;
        }

    .navbar-collapse {
        background: #363c0a;
        padding: 30px;
        border-radius: 10px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 15px 0;
    }

    footer {
        padding: 30px 0;
    }

    .innerpagebanner {
        background-size: cover;
        padding-bottom: 80px;
        padding-top: 150px;
    }

    .traning-tier1 {
        padding: 40px 0;
    }

        .traning-tier1 .text {
            margin-bottom: 40px;
        }

    .traning-tier2 .text {
        padding-left: 0;
    }

    .contactblock {
        margin-bottom: 40px;
    }

        .contactblock:after {
            display: none;
        }

    .contactpageblock:before {
        display: none;
    }

    .contactdetails {
        padding: 20px;
    }

        .contactdetails .title {
            font-size: 24px;
        }

        .contactdetails p span:first-child {
            width: 130px;
        }

    .contactblock .form {
        padding: 20px;
    }

    .innerpagebanner h1 {
        font-size: 36px;
    }

    .innerpagebanner {
        background-size: cover;
        padding-bottom: 50px;
        padding-top: 120px;
    }

        .innerpagebanner h1 {
            margin-bottom: 10px;
        }

    .about-section1 {
        padding: 60px 0 60px;
    }

        .about-section1 .title {
            font-size: 28px;
            line-height: 24px;
        }

        .about-section1 .img {
            margin-bottom: 40px;
        }

        .about-section1 .text {
            padding-left: 0;
        }

    .about-section2 {
        padding: 60px 0 20px;
    }

        .about-section2 .title {
            font-size: 28px;
            line-height: 24px;
        }

        .about-section2 .items {
            margin-bottom: 40px;
        }

    .about-section3 {
        padding: 60px 0 20px;
    }

        .about-section3 .title {
            font-size: 28px;
            line-height: 24px;
        }

        .about-section3 .items {
            margin-bottom: 40px;
        }

    .about-section4 {
        padding: 60px 0 20px;
    }

        .about-section4 .title {
            font-size: 28px;
            line-height: 24px;
        }

    .about-section5 {
        padding: 0;
    }

        .about-section5 .title {
            font-size: 28px;
            line-height: 24px;
        }

        .about-section5 .img {
            margin-bottom: 40px;
        }

        .about-section5 .text {
            padding-left: 0;
        }

    .about-section6 .img {
        margin-bottom: 40px;
    }

    .about-section6 .text {
        padding-left: 0;
    }

    .about-section6 {
        padding: 0;
    }

        .about-section6 .title {
            font-size: 28px;
            line-height: 24px;
        }

    .about-section7 {
        padding-bottom: 0;
    }

        .about-section7 .title {
            font-size: 28px;
            line-height: 24px;
        }

    .about-section8 {
        padding: 60px 0 20px 0;
    }

        .about-section8 .title {
            font-size: 28px;
            line-height: 24px;
        }
}

/* ================================
   NAVBAR
================================ */
header .navbar {
    background: transparent !important;
    position: relative;
    z-index: 2;
}

/* ================================
   NAV LINKS
================================ */
.navbar-nav .nav-link {
    color: #fff;
    font-weight: 700;
    padding: 10px 18px;
    transition: 0.3s;
}

    .navbar-nav .nav-link:hover {
        color: #90c745;
    }

/* ================================
   DESKTOP (>= 992px)
================================ */
@media (min-width: 992px) {
    .navbar-nav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }

        .navbar-nav .nav-item {
            margin-left: 20px;
        }
}

/* ================================
   TABLET & MOBILE
================================ */
@media (max-width: 991px) {

    /* Hamburger */
    .navbar-toggler {
        background: #fff;
        border-radius: 6px;
        padding: 6px 12px;
    }

    /* Menu dropdown */
    .navbar-collapse {
        background: #363c0a;
        padding: 20px;
        margin-top: 10px;
        border-radius: 12px;
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 15px 0;
        font-size: 16px;
        display: block;
    }
}

/* ================================
   SMALL MOBILE
================================ */
@media (max-width: 480px) {
    header {
        padding: 12px 0;
    }

    .navbar-nav .nav-link {
        font-size: 15px;
    }
}

.btn-primary {
    background: #A6CF3D;
    border-color: #A6CF3D;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 30px;
    transition: 0.5s all ease;
    margin-bottom: 20px;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:active:focus {
        background: #000;
        color: #fff;
        border-color: #000;
    }
