/* ================= RESET & BASE ================= */
html {
    font-size: 16px;
}

body {
    zoom: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    zoom: 1;
}

/* ================= BRAND COLORS ================= */
.gar-text { color: #A6CE39; font-weight: 700; }
.consultants-text { color: #00A6A6; font-weight: 700; }

.garhero-text { color: #ffffff; font-weight: 700; }
.consultantshero-text { color: #f1f1f1; font-weight: 700; }

/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-area img {
    height: 55px;
    margin-bottom: 6px;
}

.company-text h1 {
    font-size: 22px;
    display: flex;
    gap: 6px;
    justify-content: center;
}

.tagline {
    font-size: 12px;
    font-weight: 600;
    color: #6B6B6B;
}

/* ================= NAV LINKS ================= */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    color: #0b5fa5;
    padding: 12px 22px;
    border-radius: 6px;
    transition: 0.3s;
}

.nav-links a:hover {
    background: rgba(11, 95, 165, 0.12);
}

.nav-links a.active {
    background: linear-gradient(135deg, #0b5fa5, #6fbf3a);
    color: #ffffff;
}

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #0b5fa5;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    height: 100vh;
    padding-top: 80px;
    overflow: hidden;
}

/* Background slides */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-bg.active {
    opacity: 1;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(11, 95, 165, 0.7),
        rgba(111, 191, 58, 0.7)
    );
}

/* Brand center */
.hero-brand {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.hero-brand img {
    height: 120px;
    margin-bottom: 14px;
}

.hero-brand h1 {
    font-size: 48px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.hero-brand p {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1.4px;
}

/* Hero text */
.hero-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 46px;
    color: #ffffff;
    margin-bottom: 12px;
}

.hero-content p {
    font-size: 19px;
    color: #f1f1f1;
}

/* ================= JOURNEY ================= */
.journey-section {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #0b5fa5, #6fbf3a);
    text-align: center;
}

.journey-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 28px;
    color: #ffffff;
}

.journey-section img {
    width: 100%;
    max-width: 1200px;
    border-radius: 22px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

/* ================= ABOUT ================= */
.about-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #0b5fa5, #6fbf3a);
}

.about-frame {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 14px;
}

.about-frame h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #0b5fa5, #6fbf3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-frame h3 {
    font-size: 22px;
    margin: 25px 0 12px;
    color: #6fbf3a;
}

.about-frame p,
.about-frame li {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
}

.about-frame ul {
    padding-left: 22px;
}

/* ================= CERTIFICATIONS ================= */
.certifications-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #0b5fa5, #6fbf3a);
}

.certifications-frame {
    max-width: 1200px;
    margin: auto;
    padding: 60px;
    border-radius: 26px;
    background: rgba(255,255,255,0.06);
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

.certifications-frame h2 {
    text-align: center;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 50px;
}

.certifications-content {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
}

.cert-logos {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.cert-logos img {
    max-width: 140px;
    background: #ffffff;
    padding: 12px;
    border-radius: 12px;
}

.cert-text {
    flex: 2;
    color: #ffffff;
}

.cert-text p {
    font-size: 16px;
    line-height: 1.8;
}

/* ================= CONTACT ================= */
.services-contact-section {
    padding: 120px 20px;
    background: #f5f7fa;
}

.services-contact-frame {
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.services-contact-frame h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #0b5fa5, #6fbf3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.services-contact-box {
    text-align: center;
}

.services-contact-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0b5fa5;
}

.services-contact-box p,
.contact-text {
    font-size: 16px;
    line-height: 1.7;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .menu-toggle { display: block; }

    nav {
        position: absolute;
        top: 75px;
        width: 100%;
        background: #ffffff;
        display: none;
    }

    nav.active { display: block; }

    .nav-links {
        flex-direction: column;
        padding: 20px 0;
    }

    .hero-brand img { height: 75px; }
    .hero-brand h1 { font-size: 28px; }

    .hero-content h2 { font-size: 26px; }
    .hero-content p { font-size: 15px; }

    .about-frame,
    .certifications-frame,
    .services-contact-frame {
        padding: 40px 25px;
    }
}

.why-gar-section {
    min-height: 100vh;
    padding: 220px 20px 80px;
    background: linear-gradient(135deg, #0b5fa5, #6fbf3a);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.why-gar-frame {
    max-width: 1100px;
    background: #ffffff;
    padding: 60px;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

.why-gar-frame h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #0b5fa5, #6fbf3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-intro {
    font-size: 17px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 35px;
    color: #333;
}

.why-gar-list {
    list-style: none;
    padding: 0;
}

.why-gar-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.why-gar-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #6fbf3a;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
    .why-gar-section {
        padding: 160px 20px 60px;
    }

    .why-gar-frame {
        padding: 35px 22px;
    }

    .why-gar-frame h2 {
        font-size: 26px;
    }

    .why-intro,
    .why-gar-list li {
        font-size: 15px;
    }
}


.services-accordion-section {
    padding: 160px 20px;
    background: linear-gradient(135deg, #0b5fa5, #6fbf3a);
}

.services-accordion-section h2 {
    text-align: center;
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 50px;
}

.accordion {
    max-width: 1100px;
    margin: auto;
}

.accordion-item {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

.accordion-title {
    width: 100%;
    padding: 18px 22px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    background: #ffffff;
    cursor: pointer;
    text-align: left;
    position: relative;
}

.accordion-title::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 22px;
    color: #0b5fa5;
}

.accordion-title.active::after {
    content: "−";
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    transition: max-height 0.35s ease;
}

.accordion-content p,
.accordion-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.accordion-content ul {
    margin: 10px 0 20px 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .services-accordion-section {
        padding: 130px 15px;
    }

    .accordion-title {
        font-size: 16px;
    }
}


/* ================= BBS SECTION ================= */

.bbs-section {
    padding: 120px 20px 120px;
    background: linear-gradient(135deg, #0b5fa5, #6fbf3a);
    display: flex;
    justify-content: center;
}

.bbs-frame {
    max-width: 1100px;
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

/* Badge */
.bbs-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0b5fa5, #6fbf3a);
    color: #ffffff;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 25px;
}

/* Headings */
.bbs-frame h2 {
    font-size: 34px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0b5fa5, #6fbf3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bbs-frame h3 {
    font-size: 22px;
    margin: 35px 0 20px;
    color: #0b5fa5;
}

.bbs-block h4 {
    font-size: 18px;
    color: #0b5fa5;
    margin-bottom: 10px;
}

/* Text */
.bbs-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
}

.bbs-block p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
}

.bbs-block ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.bbs-block ul li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 6px;
}

/* Highlight */
.bbs-highlight {
    font-weight: 600;
    color: #000;
}

/* Offset for fixed navbar */
#bbs {
    scroll-margin-top: 140px;
}

/* ================= BBS VIDEO HERO ================= */

.bbs-video-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    margin-top: 70px;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
}

/* Slides */
.bbs-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.bbs-bg.active {
    opacity: 1;
}

/* Image as background */
.bbs-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Gradient overlay */
.bbs-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(11, 95, 165, 0.7),
        rgba(111, 191, 58, 0.7)
    );
}

/* Center text */
.bbs-center-text {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.bbs-center-text h1 {
    font-size: 110px;
    font-weight: 800;
    letter-spacing: 12px;
}

.bbs-center-text p {
    font-size: 22px;
    letter-spacing: 4px;
    margin-top: 10px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .bbs-frame {
        padding: 35px 22px;
    }

    .bbs-frame h2 {
        font-size: 26px;
    }

    .bbs-intro {
        font-size: 15px;
    }

    .bbs-block h4 {
        font-size: 16px;
    }

    .bbs-video-hero {
        margin-top: 56px;
        height: calc(100vh - 56px);
    }

    .bbs-center-text h1 {
        font-size: 60px;
        letter-spacing: 6px;
    }

    .bbs-center-text p {
        font-size: 15px;
        letter-spacing: 2px;
    }
}
