:root {
    --green: #aae136;
    --green-dark: #4e9a1a;
    --green-light: #8fd44a;
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --dark3: #222222;
    --white: #ffffff;
    --gray: #f4f4f2;
    --muted: #888;
    --font-display: "Teko", sans-serif;
    --font-body: "Rubic", sans-serif;


}

.cta-banner-1 {
    font-family: 'Teko', sans-serif;
    font-size: 2.5rem !important;
    font-weight: 600 !important;
}

.premium-quality {
    font-family: 'Teko', sans-serif;
    font-size: 1.5rem !important;
    font-weight: 300;
}

.service-heading {
    font-family: 'Teko', sans-serif;
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    color: rgb(0, 0, 0) !important;
}

.service-heading:hover {
    color: white !important;
}

/* h1, h2, h3 {
  font-family: 'Teko', sans-serif;
} */



/* .header {
  font-family: "Teko", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
} */





*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}


/* .logo img {
    height: 90px;
} */

.logo {
    z-index: 2;
    padding-left: 100px;
    padding-top: 30px;
}

/* ── NAV ── */
/* nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 5%;
    display: flex;
    align-items: center;
    z-index: 1000;
} */


nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 1000;
}



/* .nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-logo span {
    color: var(--green);
} */

/* .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2.2rem;
    list-style: none;
    font-family: var(--font-display);
} */


.nav-links {
    margin-left: auto;
    margin-right: 60px;
    display: flex;
    gap: 2.2rem;
    list-style: none;
    font-family: var(--font-display);
}




.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.3rem;
    /* font-weight: 600; */
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: var(--green);
}


.nav-links li a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 20px;
    height: 2px;
    background: var(--green);
}

/* OPTIONAL HOVER UNDERLINE */
.nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.3s;
}

.nav-links li a:hover::after {
    width: 20px;
}

.nav-cta {
    background: var(--green);
    color: var(--black) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: var(--green-light) !important;
    color: var(--black) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #fff;
    display: block;
}

/* ── HERO ── */
.hero {
    min-height: 90vh;
    background: url('assets/Home-slider-final-banner.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    /* background: linear-gradient(to top, var(--white), transparent); */
}

/* .hero::before {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: var(--green);
    border-radius: 50%;
    z-index: 0;
} */

.hero-inner {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 1rem;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-block;
    background: var(--green);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 5.5rem;
    /* font-size: clamp(3rem, 5vw, 5rem); */
    font-weight: 500;
    color: #fff;
}

.hero h1 em {
    color: var(--green);
    display: block;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.5;
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--green);
    color: var(--black);
    padding: 0.35rem 1.2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.2rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
    letter-spacing: 0.3px;
    font-family: var(--font-display);
}

.btn-primary:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(109, 191, 47, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

/* hero form */
.hero-form {
    background: var(--green);
    border-radius: 14px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    width: 430px;
}

.hero-form h3 {
    color: var(--black);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.hero-form p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.83rem;
    margin-bottom: 1.5rem;
}

.form-field {
    width: 100%;
    padding: 0.9rem 1rem;
    background: #fff;
    border: none;
    border-radius: 6px;
    color: #000;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.form-field::placeholder {
    color: #888;
}

.form-field:focus {
    border-color: var(--green);
}

.form-submit {
    width: 100%;
    background: #000;
    color: #fff;
    border-radius: 6px;
    padding: 0.9rem;
    font-weight: 700;
    cursor: pointer;
}

.form-submit:hover {
    background: #222;
}

/* ── PARTNERS ── */
.partners {
    background: var(--dark);
    padding: 2rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.partner-item {
    height: 80px;
    transition: 0.3s ease;
    opacity: 0.85;
    margin-right: 50px;
}

.partner-item:hover {
    opacity: 1;
    transform: scale(1.1);
}


























/* ── SECTION COMMONS ── */
section {
    padding: 90px 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    color: var(--green-light);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    /* font-size: clamp(2rem, 3.5vw, 2.8rem); */
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--dark);
}

.section-title span {
    color: var(--green);
}

.section-title-light {
    color: var(--white);
}

/* ── ABOUT ── */
.about {
    background: var(--gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.about-img-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--green);
    color: var(--black);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.about-img-badge span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.25rem;
    letter-spacing: 1px;
}

.about-content {
    padding: 1rem 0;
}

.about-content .section-title {
    margin-bottom: 1rem;
}






.about-content {
    position: relative;
}

.about-badge {
    position: absolute;
    right: 150px;
    top: 70%;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgb(0, 0, 0);
}

.about-badge span {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 1px;
}

.about-badge::before {
    content: "";
    position: absolute;
    left: -20px;
    height: 100px;
    width: 2px;
    background: #8BC34A;
    /* green color */
}

@media (max-width: 768px) {
    .about-badge {
        position: static;
        margin-top: 20px;
        transform: none;
    }
}














.about-lead {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.about-list {
    list-style: none;
    margin-bottom: 2rem;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--dark);
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.07); */
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list .check {
    width: 20px;
    height: 20px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 0.65rem;
    color: var(--black);
    font-weight: 900;
}

/* ── SERVICES ── */
.services {
    background-image: url('assets/services-categories.png');
    /* opacity: 0.2; */
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header .section-title {
    margin-bottom: 0.75rem;
}

.services-header p {
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.service-card {
    background: var(--green);
    border-radius: 8px;
    padding: 1.75rem 1.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--green);
    box-shadow: 0 12px 32px rgba(109, 191, 47, 0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.service-card:hover .service-icon {
    background: var(--green);
}

.service-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}

.service-card:hover h4 {
    color: var(--green);
}

.service-card p {
    font-size: 0.83rem;
    line-height: 1.6;
    color: rgb(0, 0, 0);
    transition: color 0.3s;
}

.service-card:hover p {
    color: rgb(255, 255, 255);
}

.services-cta {
    text-align: center;
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ── STATS ── */
.stats {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    padding: 0px 0%;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(109, 191, 47, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
    z-index: 1;
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    display: block;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
    align-self: stretch;
}

/* ── WHY US ── */
.why {
    background: var(--gray);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.why-left .section-title {
    margin-bottom: 1.5rem;
}

.why-features {
    list-style: none;
}

.why-features li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.why-features li:first-child {
    padding-top: 0;
}

.why-feat-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.why-feat-text h5 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.why-feat-text p {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
}

.why-right-head {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}

.why-right-head span {
    color: var(--green);
}

.why-right-desc {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.why-checklist {
    list-style: none;
    margin-bottom: 2rem;
}

.why-checklist li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    color: var(--dark);
}

.why-checklist li::before {
    content: '✓';
    color: var(--green);
    font-weight: 900;
    font-size: 1rem;
}

.books-stack {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1512820790803-83ca734da794?w=800&q=80') center/cover;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* ── PORTFOLIO ── */
.portfolio {
    background: var(--dark);
}

.portfolio .section-title-light {
    margin-bottom: 0.75rem;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 3rem;
}

.portfolio-header p {
    color: rgb(255, 255, 255);
    font-size: 0.93rem;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.book-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 2/3;
    cursor: pointer;
    background: var(--dark2);
}

.book-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.book-card:hover img {
    transform: scale(1.08);
}

.book-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.book-card:hover .book-overlay {
    opacity: 1;
}

.book-overlay span {
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* book placeholder colors */
.book-c1 {
    background: linear-gradient(135deg, #1a3a0a, #2d6b12);
}

.book-c2 {
    background: linear-gradient(135deg, #0a1a2a, #0d3a5a);
}

.book-c3 {
    background: linear-gradient(135deg, #2a1a0a, #5a3212);
}

.book-c4 {
    background: linear-gradient(135deg, #1a0a2a, #3a1260);
}

.book-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}

.book-placeholder .book-emoji {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.book-placeholder h4 {
    font-family: var(--font-display);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.3;
}

.book-placeholder p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    margin-top: 0.3rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 80px 0;
    background-color: #e9e9e9;
    background-image: url('assets/reviews-banner.jpg');
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.testi-header .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #000;
}

.section-subtitle {
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Layout & Container */
.testi-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.testi-grid {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testi-card {
    min-width: 100%;
    flex-shrink: 0;
    padding: 40px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Dots Styling */
.testi-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    width: 100%;
}

.author-info {
    text-align: center;
}

/* .dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #000;
    transform: scale(1.2);
} */

.testi-text {
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testi-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.testi-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-name {
    font-weight: bold;
    font-size: 1rem;
}

.testi-role {
    color: #aae136;
    font-size: 0.9rem;

}


.faq-heading {
    color: #aae136;
    font-size: 2.5rem;
    font-weight: bold;
}



/* ── FAQ ── */
.faq {
    background: var(--gray);
}

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.faq-left .section-title {
    margin-bottom: 1rem;
}

.faq-left p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.93rem;
    margin-bottom: 2rem;
}

.faq-illustration {
    width: 100%;
    height: 689px;
    border-radius: 10px;
    overflow: hidden;
    background: url('assets/dr.png');
}

.accordion-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.accordion-btn {
    width: 100%;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: color 0.2s;
}

.accordion-btn:hover {
    color: var(--green);
}

.accordion-btn.active {
    color: var(--green);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--black);
    transition: transform 0.3s;
    font-weight: 700;
    line-height: 1;
}

.accordion-btn.active .accordion-icon {
    transform: rotate(45deg);
    background: var(--dark);
    color: var(--green);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-body.open {
    max-height: 300px;
}

.accordion-body p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--muted);
}

/* ── CTA BANNER ── */
.cta-banner {
    background-color: #aae136;
    padding: 40px 20px;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

/* .cta-banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
} */

.cta-banner h2 {
    font-size: 2rem;
    font-weight: 900;
    margin: 0;
    color: #000;
}

.cta-banner p {
    color: rgba(0, 0, 0, 0.6);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    font-size: 1.02rem;
    position: relative;
    z-index: 1;
}

.cta-btns {
    display: flex;
    gap: 15px;
}

.btn-white {
    background: #fff;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 0.9rem;
}

.btn-white:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn-black {
    background: #000;
    color: #aae136;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 0.9rem;

}

.btn-black:hover {
    background: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
    .cta-flex {
        flex-direction: column;
        /* Stack everything */
        gap: 20px;
    }
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    padding: 0.9rem 2.25rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
}

.btn-dark:hover {
    background: var(--dark2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-white-outline {
    background: transparent;
    color: var(--black);
    padding: 0.9rem 2.25rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    border: 2px solid rgba(0, 0, 0, 0.35);
    transition: all 0.25s;
}

.btn-white-outline:hover {
    border-color: var(--black);
    background: rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {

    background: #222429 url(assets/footer-bg.png) center top no-repeat;
    padding: 60px 5% 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .nav-logo {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 1rem;
}

.nav-logo {
    margin-left: 90px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.2s;
}

.social-btn:hover {
    background: var(--green);
    color: var(--black);
}

.footer-col h5 {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--green);
}

.contact-item {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-bottom: 0.9rem;
}

.contact-icon {
    color: var(--green);
    font-size: 0.9rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.83rem;
    line-height: 1.5;
}

.footer-bottom {
    background-color: #aae136;
    max-width: 1200px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;

    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.78rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--green);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-form {
        max-width: 440px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .books-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-grid,
    .why-grid,
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-img-badge {
        right: 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .books-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .books-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    nav {
        padding: 0 4%;
    }
}

/* ── MOBILE NAV ── */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    padding: 90px 30px;
    gap: 1.5rem;
    transition: 0.3s;
    z-index: 999;
}


.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a:hover {
    color: var(--green);
}

/* animate in */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text>* {
    animation: fadeUp 0.6s ease both;
}

.hero-text>*:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-text>*:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-text>*:nth-child(3) {
    animation-delay: 0.35s;
}

.hero-text>*:nth-child(4) {
    animation-delay: 0.45s;
}

.hero-form {
    animation: fadeUp 0.7s 0.3s ease both;
}





















/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-display);
} */

/* ===== STATS ===== */
/* .stats {
    background: url('assets/mid-2.png') center/cover no-repeat;
    height: 530px;
    position: relative;
} */

.stats-overlay {
    background: rgba(0, 0, 0, 0.75);
    height: 100%;
}

.stats-wrapper {
    max-width: 1200px;
    margin: auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.stat-box {
    text-align: center;
    width: 23%;
}

.stat-box h2 {
    font-size: 80px !important;
    font-weight: 700 !important;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.stat-box p {
    font-size: 11px;
    letter-spacing: 1px;
    margin-top: 5px;
}


@media (max-width: 768px) {
    .main {
        margin: 15px 10px;
        margin-top: 0;
        gap: 20px;
    }
}


/* Mobile View (480px and below) */
@media (max-width: 480px) {
    .main {
        margin: 10px 8px;
        margin-top: 0;
        gap: 15px;
        align-items: stretch; /* better for small screens */
    }
}


@media (min-width: 1025px) {
    .stats {
        height: 530px;
    }

    .stats-wrapper {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .stat-box {
        width: 23%;
    }

    .stat-box h2 {
        font-size: 50px;
        margin-top: 60px;
    }
}


@media (max-width: 768px) {

    .stats {
        height: auto;
        min-height: 500px;
        padding: 50px 0;
    }

    .stats-wrapper {
        flex-direction: column;
        justify-content: center;
        gap: 40px;
    }

    .stat-box {
        width: 100%;
        margin-top: 0 !important;
    }

    .stat-box h2 {
        font-size: 45px;
        margin-top: 0;
    }

    .main {
        flex-direction: column;
        gap: 20px;
        margin-top: -30px;
        padding: 0 15px;
    }
}

/* ===== MAIN ===== */
.main {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    margin-top: -75px;
    gap: 220px;
}



/* Base Style (Small Mobile - Default) */
.main {
    display: flex;
    flex-direction: column;
    /* Stack vertically on mobile */
    align-items: center;
    /* Center items */
    max-width: 100%;
    margin: 20px 15px;
    /* Side spacing for mobile */
    margin-top: -20px;
    /* Reduced negative margin for mobile */
    gap: 30px;
    /* Smaller gap for mobile */
}

/* Tablet View (600px to 900px) */
@media (min-width: 600px) {
    .main {
        margin-top: -40px;
        gap: 50px;
        padding: 0 20px;
    }
}

/* Small Laptop / Large Tablet (900px to 1199px) */
@media (min-width: 900px) {
    .main {
        flex-direction: row;
        /* Switch back to side-by-side */
        margin-top: -60px;
        gap: 100px;
        /* Medium gap */
        justify-content: center;
    }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .main {
        flex-direction: row;
        max-width: 1200px;
        margin: 20px auto;
        margin-top: -75px;
        /* Your original design */
        gap: 220px;
        /* Your original gap */
    }
}

/* LEFT */
.left {
    width: 38%;
}



.feature-list .item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.num {
    width: 45px;
    height: 45px;
    background: #eef7c7;
    color: #9db600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-weight: bold;
}

.item h4 {
    font-size: 30px !important;
}

.item span {
    font-size: 11px;
    color: #999;
    letter-spacing: 1px;
}

/* RIGHT */
.right {
    width: 62%;
    margin-top: 100px;
}

.right h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 15px;
}

.dot {
    color: red;
}

.desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.content-flex {
    display: flex;
    /* align-items: center; */
    gap: 70px;
}

.books {
    width: 170px;
}

.stats{
    background-image: url(assets/banner-counter.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 350px;
}

.right-side-text {
    font-family: var(--font-display);
    font-size: 4rem !important;
    font-weight: 500 !important;
}











.checks {
    list-style: none;
}

.checks li {
    margin-bottom: 10px;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.checks li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: red;
    font-size: 12px;
}

/* BUTTONS */
.buttons {
    margin-top: 30px;
    display: flex;
    gap: 10px;
}

.btn {
    padding: 12px 22px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.green {
    background: #b7e10c;
}

.light {
    background: #e5f88c;
}





.trusted-section .col-header {
    position: relative;
    text-align: center;
}

.trusted-section .col-header .header-inner {
    position: relative;
    padding: 40px 30px 40px;
    min-height: 240px;
    background: #b7e10c;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2em;
    text-transform: uppercase;
    color: black;
    border-radius: 7px 7px 0px 0px;
}

.header-inner p {
    margin: 0;
}

/* .green-box {
    background: #b7e10c;
    padding: 30px;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 40px;
} */

























.page-banner .image-layer {
    background-image: url('assets/services-banner.webp');
}

.page-banner .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

}


.page-banner {
    position: relative;
    padding: 0;
    color: #ffffff;
    background: #222429;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-banner .banner-inner {
    position: relative;
    display: block;
    text-align: center;
    z-index: 3;
}



.page-banner .shape-1 {
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    max-width: 100%;
    height: 100%;
    background: url('assets/b-shape-1.png') right bottom no-repeat;
    z-index: 1;
}

.page-banner .shape-2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 250px;
    max-width: 100%;
    height: 100%;
    background: url('assets/b-shape-2.webp') right top no-repeat;
    z-index: 1;
}


.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.page-banner .inner-container {
    position: relative;
    padding: 240px 0px 120px;
}

.page-banner h1 {
    position: relative;
    font-size: 100px;
    color: #ffffff;
    line-height: 0.9em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    word-break: break-word;
    font-family: var(--font-display);
}

.page-banner .page-nav {
    position: relative;
    padding-top: 5px;
    text-align: center;
}

.page-banner .bread-crumb {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-banner .bread-crumb li a {
    color: #ffffff;
    font-weight: 400;
    transition: all 300ms ease;
    text-decoration: none;
}

.page-banner .bread-crumb li a:hover,
.page-banner .bread-crumb li.active {
    color: #aae136;
}

.page-banner .bread-crumb li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.page-banner .bread-crumb li {
    position: relative;
    float: left;
    font-size: 20px;
    line-height: 30px;
    color: #ccd6df;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: default;
    padding-right: 15px;
    margin-right: 15px;
}

.page-banner .bread-crumb li:before {
    position: absolute;
    right: -15px;
    width: 30px;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    content: "-";
}