/* ---------- Base Theme Variables ---------- */
:root {
    --primary: #1E3A8A;
    --accent: #22c55e;

    --bg: #ffffff;
    --text: #0f172a;
    --muted: #475569;
    --surface: #f8fafc;
    --border: #e2e8f0;
}

/* Bootstrap override: primary */
.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover {
    opacity: .95;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Small helpers */
.text-muted-2 {
    color: var(--muted) !important;
}

.border-soft {
    border-color: var(--border) !important;
}

/* Navbar active style */
.navbar .nav-link.active {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 6px;
}

/* Reduce motion (accessibility) */
@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}


/* HERO */
.gc-hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    padding: 72px 0 90px;
    background: #07140f;
    /* fallback */
}

/* background image + overlay */
.gc-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 600px at 70% 40%, rgba(34, 197, 94, .25), transparent 55%),
        linear-gradient(90deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .45) 45%, rgba(0, 0, 0, .15) 100%),
        url("../images/hero-bg.jpg") center/cover no-repeat;
    transform: scale(1.02);
}

.gc-hero-content {
    z-index: 2;
}

.gc-kicker {
    letter-spacing: .14em;
    font-size: 18px;
    color: rgba(255, 255, 255, .65);
}

.gc-social-link {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .75);
    background: rgba(255, 255, 255, .06);
    text-decoration: none;
}

.gc-social-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .35);
}

.gc-hero-card {
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

/* bottom strip */
.gc-hero-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 0;
    background: rgba(34, 197, 94, .9);
    z-index: 3;
}

.gc-chip {
    font-weight: 600;
    color: #05210f;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    padding: 10px 12px;
}


/* ABOUT SECTION */
.gc-about .gc-kicker {
    letter-spacing: .14em;
    font-size: 18px;
    font-weight: 600;
    color: var(--muted);
}

/* Left media block */
.gc-about-media {
    border-radius: 20px;
}

.gc-about-accent {
    position: absolute;
    left: 0;
    top: 18px;
    width: 10px;
    height: 82%;
    border-radius: 999px;
    background: var(--accent);
    opacity: .9;
}

/* image frame */
.gc-about-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .10);
    padding: 18px;
}

.gc-about-img {
    border-radius: 16px;
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* badge overlay */
.gc-about-badge {
    position: absolute;
    left: 26px;
    bottom: 18px;
    background: rgba(15, 23, 42, .92);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.gc-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(34, 197, 94, .18);
    color: #22c55e;
}

/* Feature list */
.gc-feature-list {
    display: grid;
    gap: 14px;
}

.gc-feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.gc-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(34, 197, 94, .12);
    color: #16a34a;
    flex: 0 0 auto;
}

/* SERVICES (matching inspiration layout) */
.gc-services .gc-kicker {
    letter-spacing: .14em;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
}

.gc-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    display: grid;
    place-items: center;
    color: var(--text);
    transition: transform .15s ease, opacity .15s ease;
}

.gc-nav-btn:hover {
    transform: translateY(-1px);
    opacity: .95;
}

.gc-service-card {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface);
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(15, 23, 42, .08);
    display: flex;
    flex-direction: column;
}

.gc-service-top {
    padding: 18px 18px 14px;
}

.gc-service-icon {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(34, 197, 94, .14);
    color: #16a34a;
    margin-bottom: 12px;
    border: 1px solid rgba(34, 197, 94, .22);
}

.gc-service-media {
    margin-top: auto;
    border-top: 1px solid var(--border);
    background: #0000;
}

.gc-service-media img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

/* PROJECTS */
.gc-projects .gc-kicker {
    letter-spacing: .14em;
    font-size: 18px;
    color: var(--accent);
    font-weight: 600;
}

.gc-chip-btn {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
}

.gc-chip-btn.is-active {
    background: rgba(34, 197, 94, .14);
    border-color: rgba(34, 197, 94, .28);
    color: #166534;
}

.gc-project-card {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface);
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(15, 23, 42, .08);
}

.gc-project-media {
    position: relative;
    border-bottom: 1px solid var(--border);
}

.gc-project-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gc-tag {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .88);
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, .14);
}

.gc-meta {
    color: var(--muted);
    font-size: 14px;
}

.gc-link {
    text-decoration: none;
    font-weight: 700;
    color: var(--primary);
}

.gc-link:hover {
    opacity: .9;
}

/* CTA bar */
.gc-cta-bar {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: linear-gradient(90deg, rgba(34, 197, 94, .10), rgba(30, 58, 138, .06));
}

/* TESTIMONIALS */
.gc-testimonials .gc-kicker {
    letter-spacing: .14em;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
}

.gc-rating-card {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .08);
}

.gc-rating-score {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 22px;
    background: rgba(34, 197, 94, .14);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, .28);
}

.gc-pill {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
}

.gc-test-card {
    height: 100%;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 16px;
    box-shadow: 0 18px 60px rgba(15, 23, 42, .06);
}

.gc-test-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.gc-avatar {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-weight: 800;
    background: rgba(30, 58, 138, .10);
    color: var(--primary);
    border: 1px solid rgba(30, 58, 138, .18);
}

.gc-stars {
    color: #f59e0b;
}

/* PRICING */
.gc-pricing .gc-kicker {
    letter-spacing: .14em;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
}

.gc-price-card {
    position: relative;
    height: 100%;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 18px;
    box-shadow: 0 18px 60px rgba(15, 23, 42, .08);
    display: flex;
    flex-direction: column;
}

.gc-price-head {
    margin-bottom: 10px;
}

.gc-price-tag {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    color: #166534;
    background: rgba(34, 197, 94, .14);
    border: 1px solid rgba(34, 197, 94, .25);
    margin-bottom: 12px;
}

.gc-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 6px;
}

.gc-price-currency {
    font-weight: 800;
}

.gc-price-amount {
    font-weight: 900;
    font-size: 42px;
    letter-spacing: -0.03em;
}

.gc-price-period {
    color: var(--muted);
    font-weight: 600;
}

.gc-price-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 18px;
    display: grid;
    gap: 10px;
    color: var(--text);
}

.gc-price-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.gc-price-list i {
    margin-top: 3px;
    color: #16a34a;
}

.gc-price-list li.muted,
.gc-price-list li.muted i {
    color: var(--muted);
}

.gc-price-list li.muted i {
    color: var(--muted);
}

/* Featured plan */
.gc-featured {
    border-color: rgba(34, 197, 94, .35);
    box-shadow: 0 26px 90px rgba(34, 197, 94, .12);
    transform: translateY(-4px);
}

.gc-badge-featured {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .92);
    color: rgba(255, 255, 255, .92);
    font-weight: 800;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
}


/* ABOUT HERO */
.gc-about-hero {
    background: #07140f;
    /* fallback */
    padding-top: 70px;
    padding-bottom: 70px;
}

.gc-about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(650px 650px at 70% 35%, rgba(34, 197, 94, .22), transparent 55%),
        linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .48) 45%, rgba(0, 0, 0, .18) 100%),
        url("../images/about-hero.jpg") center/cover no-repeat;
    transform: scale(1.02);
}

.gc-about-hero .container {
    z-index: 2;
}

.gc-breadcrumb {
    --bs-breadcrumb-divider: "›";
}

.gc-breadcrumb a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
}

.gc-breadcrumb .active {
    color: rgba(255, 255, 255, .55);
}

.gc-hero-pill {
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .14);
}

.gc-about-hero-card {
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.gc-mini-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(34, 197, 94, .16);
    border: 1px solid rgba(34, 197, 94, .26);
    color: #22c55e;
    flex: 0 0 auto;
}

.gc-stat-num {
    font-weight: 900;
    color: rgba(255, 255, 255, .92);
}

.gc-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
}

/* ABOUT SPLIT (like reference) */
.gc-about-split .gc-kicker {
    letter-spacing: .14em;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
}

.gc-media-stack {
    min-height: 340px;
}

/* Back layer */
.gc-media-back {
    position: absolute;
    right: 0;
    top: 26px;
    width: 64%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .10);
    background: var(--surface);
}

.gc-media-back img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* Front layer */
.gc-media-front {
    position: relative;
    width: 78%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 26px 90px rgba(15, 23, 42, .12);
    background: var(--surface);
}

.gc-media-front img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* Play button overlay */
.gc-play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: 0;
    background: rgba(34, 197, 94, .92);
    color: #05210f;
    display: grid;
    place-items: center;
    box-shadow: 0 20px 70px rgba(34, 197, 94, .28);
    cursor: pointer;
    transition: transform .15s ease, opacity .15s ease;
}

.gc-play-btn:hover {
    transform: scale(1.03);
    opacity: .95;
}

/* Small ring for play button */
.gc-play-btn::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 999px;
    border: 1px solid rgba(34, 197, 94, .35);
}

/* OUR MISSION AND VISION */
/* MISSION SECTION (like reference layout) */
.gc-mission-text {
    max-width: 560px;
}

.gc-mission .gc-kicker {
    font-weight: 18px;
    font-weight: 600;
    color: var(--accent);
}

.gc-mission-img-lg,
.gc-mission-img-sm {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .08);
}

.gc-mission-img-lg img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.gc-mission-img-sm img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* Points list */
.gc-mission-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: var(--text);
}

.gc-mission-points li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.gc-mission-points i {
    margin-top: 3px;
    color: #16a34a;
}

/* RECENT WORKS */
.gc-works .gc-kicker {
    letter-spacing: .14em;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
}

.gc-works-tabs .gc-tab {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
}

.gc-works-tabs .gc-tab.is-active {
    background: rgba(34, 197, 94, .14);
    border-color: rgba(34, 197, 94, .28);
    color: #166534;
}

.gc-work-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .08);
}

.gc-work-media {
    display: block;
    text-decoration: none;
}

.gc-work-media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform .2s ease;
}

.gc-work-card:hover .gc-work-media img {
    transform: scale(1.03);
}

/* Bottom green label bar */
.gc-work-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(34, 197, 94, .92);
    color: #05210f;
}

.gc-work-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .22);
    border: 1px solid rgba(255, 255, 255, .25);
}

.gc-work-title {
    font-weight: 900;
    letter-spacing: .2px;
}

/* TEAM */
.gc-team .gc-kicker {
    letter-spacing: .14em;
    font-size: .82rem;
    color: var(--muted);
}

.gc-team-card2 {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface);
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(15, 23, 42, .08);
    transition: transform .15s ease, box-shadow .15s ease;
}

.gc-team-card2:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 90px rgba(15, 23, 42, .12);
}

.gc-team-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gc-role {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(34, 197, 94, .14);
    border: 1px solid rgba(34, 197, 94, .25);
    color: #166534;
    font-weight: 700;
    font-size: 13px;
}

/* Social icons */
.gc-social2 {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    text-decoration: none;
    transition: transform .15s ease, opacity .15s ease;
}

.gc-social2:hover {
    transform: translateY(-1px);
    opacity: .95;
    color: var(--text);
}

/* SERVICES PAGE CARDS */
.gc-svc-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.gc-kicker {
    font-weight: 600;
    font-size: 18px;
    color: var(--accent);
}

.gc-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 90px rgba(15, 23, 42, .15);
}

.gc-svc-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Read more link */
.gc-readmore {
    font-weight: 800;
    text-decoration: none;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.gc-readmore i {
    transition: transform .2s ease;
}

.gc-readmore:hover i {
    transform: translateX(4px);
}

/* Smooth scroll feel */
html {
    scroll-behavior: smooth;
}

/* SERVICE DETAILS PAGE */
.gc-svc-hero {
    background: black;
    padding-top: 70px;
    padding-bottom: 70px;
}



.gc-svc-hero-img {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .08);
}

.gc-svc-hero-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.breadcrumb .breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.gc-included-card {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .05);
}

.gc-mini-icon2 {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(34, 197, 94, .12);
    border: 1px solid rgba(34, 197, 94, .22);
    color: #16a34a;
    margin-bottom: 10px;
}

.gc-steps {
    display: grid;
    gap: 14px;
}

.gc-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.gc-step-num {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 900;
    background: rgba(30, 58, 138, .10);
    border: 1px solid rgba(30, 58, 138, .18);
    color: var(--primary);
    flex: 0 0 auto;
}

.gc-sidebar-card {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .06);
}

.gc-link2 {
    text-decoration: none;
    font-weight: 700;
    color: var(--primary);
}

.gc-link2:hover {
    opacity: .9;
}

/* CONTACT PAGE PANELS */
.gc-panel {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .06);
}

.gc-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.gc-contact-ic {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(34, 197, 94, .12);
    border: 1px solid rgba(34, 197, 94, .22);
    color: #16a34a;
    flex: 0 0 auto;
}

/* MAP */
.gc-map {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .06);
}

.gc-map iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

/* 404 PAGE */
.gc-404 {
    min-height: 80vh;
    padding: 80px 0;
}

.gc-404-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: rgba(34, 197, 94, .14);
    border: 1px solid rgba(34, 197, 94, .28);
    color: #16a34a;
    font-size: 28px;
}

.gc-404-code {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    color: rgba(34, 197, 94, .20);
}

.gc-404-search {
    max-width: 420px;
}

/* MINIMAL COMING SOON (like reference) */
.gc-cs-body {
    min-height: 100vh;
    margin: 0;
}

.gc-cs {
    min-height: 100vh;
    padding: 60px 0;
    position: relative;
    background:
        radial-gradient(900px 600px at 50% 10%, rgba(255, 255, 255, .06), transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .70)),
        url("/assets/image/banner/banner3.jpg") center/cover no-repeat;
}

.gc-cs-wrap {
    max-width: 760px;
}

.gc-cs-topline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
}

.gc-cs-small {
    color: rgba(255, 255, 255, .85);
    font-weight: 800;
    letter-spacing: .18em;
    font-size: 14px;
}

.gc-cs-line {
    width: 70px;
    height: 2px;
    background: var(--accent);
    /* your primary blue */
    opacity: .9;
}

.gc-cs-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .92);
    font-size: clamp(44px, 6vw, 72px);
    margin: 0;
}

/* progress */
.gc-cs-progress {
    position: relative;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.gc-cs-progress-bar {
    height: 18px;
    border-radius: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .20);
    border: 1px solid rgba(255, 255, 255, .22);
}

.gc-cs-fill {
    height: 100%;
    background: var(--accent);
    /* blue bar like reference */
}

.gc-cs-percent {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
    color: rgba(255, 255, 255, .88);
    font-size: 12px;
    pointer-events: none;
}

/* social circles */
.gc-cs-social-btn {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, .86);
    border: 2px solid rgba(255, 255, 255, .60);
    background: rgba(0, 0, 0, .08);
    transition: transform .15s ease, opacity .15s ease;
}

.gc-cs-social-btn:hover {
    transform: translateY(-2px);
    opacity: .95;
}

/* =========================
   DASHBOARD BASE LAYOUT
========================= */

.gc-dash-body {
    background: var(--bg-color);
}

.gc-dash-layout {
    display: flex;
    min-height: 100vh;
}

/* =========================
   SIDEBAR
========================= */

.gc-dash-sidebar {
    width: 280px;
    flex: 0 0 auto;
    background: var(--card-bg);
    border-right: 1px solid var(--border-color);
    padding: 18px;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gc-dash-brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.gc-dash-logo {
    text-decoration: none;
    font-weight: 900;
    font-size: 20px;
    color: var(--text-color);
}

.gc-dash-badge {
    font-size: 12px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, .15);
    border: 1px solid rgba(34, 197, 94, .35);
    color: #166534;
}

.gc-dash-nav {
    display: grid;
    gap: 6px;
}

.gc-dash-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
}

.gc-dash-link:hover {
    background: rgba(30, 58, 138, .08);
    border-color: rgba(30, 58, 138, .18);
}

.gc-dash-link.is-active {
    background: rgba(34, 197, 94, .15);
    border-color: rgba(34, 197, 94, .35);
    color: #166534;
}

.gc-dash-divider {
    height: 1px;
    background: var(--border-color);
    margin: 10px 0;
}

.gc-dash-footer {
    margin-top: auto;
}

/* =========================
   MAIN AREA
========================= */

.gc-dash-main {
    flex: 1;
    min-width: 0;
    background: var(--bg-color);
}

.gc-dash-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gc-dash-content {
    padding: 18px;
}

/* =========================
   CARDS / PANELS
========================= */

.gc-panel2 {
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

/* =========================
   STATS
========================= */

.gc-stat {
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
}

.gc-stat-ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(34, 197, 94, .15);
    border: 1px solid rgba(34, 197, 94, .35);
    color: #16a34a;
    margin-bottom: 10px;
}

.gc-stat-num {
    font-weight: 900;
    font-size: 26px;
}

/* =========================
   FAKE CHART
========================= */

.gc-chart-placeholder {
    height: 180px;
    display: grid;
    grid-auto-flow: column;
    gap: 10px;
    align-items: end;
    padding: 10px;
    border-radius: 12px;
    border: 1px dashed var(--border-color);
}

.gc-chart-bar {
    width: 100%;
    border-radius: 8px;
    background: rgba(34, 197, 94, .4);
}

/* =========================
   AVATAR
========================= */

.gc-dash-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 900;
    background: rgba(30, 58, 138, .15);
    border: 1px solid rgba(30, 58, 138, .25);
}

/* =========================
   OFFCANVAS
========================= */

.gc-dash-offcanvas {
    background: var(--card-bg);
    color: var(--text-color);
}

/* =========================
   RTL SUPPORT
========================= */

html[dir="rtl"] .gc-dash-sidebar {
    border-right: 0;
    border-left: 1px solid var(--border-color);
}

html[dir="rtl"] .gc-dash-link {
    text-align: right;
}

/* =========================
   MOBILE SIDEBAR ALWAYS WHITE
========================= */

.gc-dash-offcanvas {
    background: #ffffff !important;
    color: #111827 !important;
}

.gc-dash-offcanvas .gc-dash-link {
    color: #111827 !important;
}

.gc-dash-offcanvas .gc-dash-link:hover {
    background: rgba(30, 58, 138, .08) !important;
}

.gc-dash-offcanvas .gc-dash-divider {
    background: #e5e7eb !important;
}

.gc-dash-offcanvas .btn,
.gc-dash-offcanvas button {
    color: #111827 !important;
    border-color: #e5e7eb !important;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
}

.dash {
    display: flex;
    min-height: 100vh
}

/* Sidebar */
.sidebar {
    width: 270px;
    background: var(--accent);
    color: #fff;
    padding: 18px;
    position: sticky;
    top: 0;
    height: 100vh;
}

.brand {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    margin-bottom: 16px
}

.side-link {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.side-link:hover {
    background: rgba(255, 255, 255, .12)
}

.side-link.active {
    background: rgba(255, 255, 255, .22)
}

.side-footer {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px
}

/* Main */
.main {
    flex: 1;
    padding: 22px
}

/* Topbar */
.topbar {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
    display: grid;
    place-items: center;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(22, 101, 52, .12);
    border: 1px solid rgba(22, 101, 52, .25);
    display: grid;
    place-items: center;
    font-weight: 900;
    color: var(--accent);
}

/* Cards */
.stat-card,
.panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .04);
}

.stat-title {
    color: var(--muted);
    font-weight: 800;
    font-size: 13px
}

.stat-value {
    font-size: 28px;
    font-weight: 900
}

.badge-pill {
    background: rgba(22, 101, 52, .1);
    color: var(--accent);
    border: 1px solid rgba(22, 101, 52, .2);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px
}

/* Mobile Sidebar */
@media(max-width:992px) {
    .sidebar {
        position: fixed;
        left: -290px;
        z-index: 1050;
        transition: .25s
    }

    .sidebar.open {
        left: 0
    }

    .overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .45);
        display: none;
        z-index: 1040
    }

    .overlay.show {
        display: block
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .gc-dash-sidebar {
        display: none !important;
    }
}


/* Responsive tuning */
@media (max-width: 998px) {
    .gc-hero {
        padding: 56px 0 96px;
        min-height: auto;
    }

    .gc-hero-bg {
        background:
            radial-gradient(600px 600px at 70% 25%, rgba(34, 197, 94, .25), transparent 55%),
            linear-gradient(180deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .35) 100%),
            url("../images/hero-bg.jpg") center/cover no-repeat;
    }

    .gc-hero-card1 img {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .gc-about-img {
        height: 300px;
    }

    .gc-about-badge {
        left: 18px;
        right: 18px;
    }

    .gc-about-accent {
        display: none;
    }

    /* ABOUT PAGE HERO SECTION */
    .gc-about-hero {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .gc-about-hero::before {
        background:
            radial-gradient(650px 650px at 70% 20%, rgba(34, 197, 94, .22), transparent 55%),
            linear-gradient(180deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .35) 100%),
            url("../images/about-hero.jpg") center/cover no-repeat;
    }

    /* ABOUT SECTION */
    .gc-media-stack {
        min-height: 300px;
    }

    .gc-media-back {
        width: 70%;
        top: 18px;
    }

    .gc-media-back img {
        height: 220px;
    }

    .gc-media-front {
        width: 100%;
    }

    .gc-media-front img {
        height: 260px;
    }

}

@media (max-width: 384px) {
    .flex-grow-1 {
        text-align: center;
    }

    .flex-grow-1 h1 {
        font-size: 28px;
    }

    .flex-grow-1 .flex-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gc-hero-card1 {
        margin-top: 24px;
    }

}

/* RTL: swap spacing automatically */
html[dir="rtl"] .gc-social {
    order: 2;
}

/* RTL niceness */
html[dir="rtl"] .gc-nav-btn i {
    transform: rotate(180deg);
}

/* RTL tweaks */
html[dir="rtl"] .gc-tag {
    left: auto;
    right: 12px;
}

/* RTL */
html[dir="rtl"] .gc-badge-featured {
    right: auto;
    left: 14px;
}

/* RTL support: swap stacking side */
html[dir="rtl"] .gc-media-back {
    right: auto;
    left: 0;
}

html[dir="rtl"] .gc-media-front {
    margin-left: auto;
}

/* RTL */
html[dir="rtl"] .gc-work-label {
    flex-direction: row-reverse;
}


/* RTL */
html[dir="rtl"] .gc-mission-points li {
    flex-direction: row-reverse;
}

/* RTL */
html[dir="rtl"] .gc-team-card2 .d-flex {
    flex-direction: row-reverse;
}

/* RTL */
html[dir="rtl"] .gc-step {
    flex-direction: row-reverse;
}

/* RTL */
html[dir="rtl"] .gc-contact-item {
    flex-direction: row-reverse;
}

/* RTL */
html[dir="rtl"] .gc-404-search .input-group {
    flex-direction: row-reverse;
}

/* RTL */
html[dir="rtl"] .gc-cs-topline {
    flex-direction: row-reverse;
}

/* =========================
   FOOTER
========================= */

.gc-footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, .04);
}

.gc-footer-brand i {
    color: #22c55e;
    font-size: 22px;
}

.gc-footer-text {
    color: #6b7280;
    font-weight: 600;
    line-height: 1.7;
}

.gc-footer-title {
    font-weight: 800;
    margin-bottom: 14px;
}

.gc-footer-links li {
    margin-bottom: 10px;
}

.gc-footer-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 400;
    transition: .2s ease;
}

.gc-footer-links a:hover {
    color: #22c55e;
    padding-left: 4px;
}

.gc-footer-contact li {
    margin-bottom: 12px;
    color: #374151;
    font-weight: 400;
}

.gc-footer-bottom {
    border-top: 1px solid #e5e7eb;
    background: #fafafa;
    font-weight: 700;
    color: #6b7280;
}