
:root {
    /* Example: Bootstrap sets these; if not present you can set defaults */
    /* --bs-body-color: #212529;
     --bs-body-color-rgb: 33, 37, 41;
     --bs-body-bg: #fff;
  */
    /* Fallback colors (used when color-mix not supported) */
    --card-bg-color-fallback: rgba(var(--bs-body-color-rgb, 33, 37, 41), 0.04);
    --header-footer-bg-color-fallback: rgba(var(--bs-body-color-rgb, 33, 37, 41), 0.06);
    /*
    Preferred (modern) values:
    - For light themes: mix a little of the body text color into white to produce
      a subtle off-white card background.
    - For header/footer we mix even less (lighter).
  */
    --card-bg-color: color-mix(in srgb, white 92%, var(--bs-body-color) 8%);
    --header-footer-bg-color: color-mix(in srgb, white 96%, var(--bs-body-color) 4%);
    --hero-bg: linear-gradient(90deg, rgb(255 112 67), rgb(255 0 0 / 61%));
    --card-bg: rgb(255 198 198 / 85%);
    --card-text: #0b1220;
    --card-border: rgba(10, 10, 10, 0.06);
    --card-shadow: 0 6px 18px rgba(12, 38, 63, 0.08);
    --bs-primary: rgb(255, 87, 34);
    --dt-row-selected: 255, 87, 34 !important;
    --text-muted: #6c757d;
    --nav-dropdown-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    --about-bg: #FFFFFF;
    --about-main-text: #FFFFFF;
}

/* Dark theme override: make card/header slightly darker than page background */
[data-bs-theme="dark"] {
    --card-bg-color-fallback: rgba(var(--bs-body-color-rgb, 233, 236, 239), 0.06);
    --header-footer-bg-color-fallback: rgba(var(--bs-body-color-rgb, 233, 236, 239), 0.08);
    /* Mix text color into black to produce a subtle dark card background */
    --card-bg-color: color-mix(in srgb, black 92%, var(--bs-body-color) 8%);
    --header-footer-bg-color: color-mix(in srgb, black 88%, var(--bs-body-color) 12%);
    --card-bg: rgba(12, 14, 18, 0.6); /* translucent dark glass */
    --card-text: #e6eef8; /* light text */
    --card-border: rgba(255, 255, 255, 0.04); /* subtle light border */
    --card-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
    --text-muted: #adb5bd;
    --nav-dropdown-shadow: 0 8px 28px rgba(0, 0, 0, 0.75);
    --about-bg: #212529;
    --about-main-text: #FF7043;
    --hero-bg: linear-gradient(135deg, #1f1b16 0%, #2a201c 40%, #ff7043 120%);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-bs-theme]) {
        --card-bg: rgba(12, 14, 18, 0.6);
        --card-text: #e6eef8;
        --card-border: rgba(255, 255, 255, 0.04);
        --card-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
        --card-bg: rgba(12, 14, 18, 0.6);
        --about-bg: #FFFFFF;
    }
}


html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}


body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 1 auto; /* grow to fill remaining space */
}

footer {
    margin-top: auto;
}

/* The card itself */


.btn {
    font-family: "Roboto Flex";
    font-weight: 500;
    font-size: 14px;
}

/*.btn-primary {
    background-color: orange !important;
    border-color: orange !important;
}

    .btn-primary:hover {
        background-color: darkorange !important;
        border-color: darkorange !important;
    }

.btn-blue {
    background-color: #077bff !important;
    border-color: #077bff !important;
    color: white !important;
}

    .btn-blue:hover {
        background-color: blue !important;
        border-color: blue !important;
    }*/



.header-gs {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.subheader-gs {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.gs-card .head {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.gs-icon {
    width: 120px;
    height: 120px;
    background: #75C282; /* green color like the screenshot */
    border-radius: 50%; /* makes it a perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto; /* centers and adds spacing below */
}

    .gs-icon i {
        font-size: 58px; /* adjust as needed */
        color: white; /* white icon inside */
    }
        .gs-icon span {
            font-size: 32px; /* adjust as needed */
            color: white; /* white icon inside */

        }

    .gs-icon i, .gs-icon span {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        color: white;
    }

.gs-item:hover .gs-icon {
    transform: scale(1.08);
    background: #7ddc8f;
}

.gs-cards a {
    text-decoration: none;
}


