@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Roboto:ital,wght@0,400;0,500;0,700;1,400&display=swap");

/* =========================================================
   GLOBAL TRAINING PARTNERS
   Premium Corporate Training Theme
   ========================================================= */

:root {
    /* Primary palette */
    --gtp-red: #003366;          /* Deep Blue */
    --gtp-red-dark: #00264d;
    --gtp-red-deep: #001a33;
    --gtp-red-light: #0a4f8a;

    /* Gold / Amber */
    --gtp-gold: #FFB400;
    --gtp-gold-dark: #D99500;
    --gtp-gold-light: #FFC94D;

    /* Neutral palette */
    --gtp-white: #FFFFFF;
    --gtp-offwhite: #F5F5F5;
    --gtp-light: #F0F2F5;

    --gtp-dark: #1F2933;
    --gtp-dark-2: #34404C;
    --gtp-gray: #666666;
    --gtp-muted: #7A8490;

    --gtp-border: #E1E5EA;

    /* CTA colours */
    --gtp-green: #2E8B57;
    --gtp-green-dark: #246B45;
    --gtp-orange: #FF6600;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;

    --shadow-sm: 0 4px 15px rgba(0, 51, 102, 0.07);
    --shadow-md: 0 12px 35px rgba(0, 51, 102, 0.12);
    --shadow-lg: 0 25px 60px rgba(0, 51, 102, 0.16);

    --transition: all .3s ease;
}


/* =========================================================
   GLOBAL
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", "Segoe UI", Arial, sans-serif;
    color: var(--gtp-dark);
    background: var(--gtp-white);

    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    transition: var(--transition);
}

::selection {
    background: var(--gtp-red);
    color: #fff;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar-gtp {
    background:
        linear-gradient(
            135deg,
            var(--gtp-red) 0%,
            var(--gtp-red-dark) 100%
        ) !important;

    min-height: 74px;

    padding: 0.75rem 0;

    box-shadow:
        0 5px 25px rgba(0, 0, 0, .12);

    position: relative;
    z-index: 1000;
}

.navbar-gtp .container {
    max-width: 1200px;
}

.navbar-gtp .navbar-brand {
    color: #fff !important;

    font-size: 1.35rem;
    font-weight: 800;

    letter-spacing: -.3px;

    display: flex;
    align-items: center;

    white-space: nowrap;
}

.navbar-gtp .navbar-brand span {
    color: var(--gtp-gold-light);
    margin-left: 4px;
}

.navbar-gtp .nav-link {
    color: rgba(255,255,255,.9) !important;

    font-size: .92rem;
    font-weight: 600;

    padding: .65rem .85rem !important;

    position: relative;
}

.navbar-gtp .nav-link::after {
    content: "";

    position: absolute;

    left: .85rem;
    right: .85rem;
    bottom: .25rem;

    height: 2px;

    background: var(--gtp-gold);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform .25s ease;
}

.navbar-gtp .nav-link:hover,
.navbar-gtp .nav-link.active {
    color: var(--gtp-gold-light) !important;
}

.navbar-gtp .nav-link:hover::after,
.navbar-gtp .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-gtp .navbar-toggler {
    border: 1px solid rgba(255,255,255,.35);

    padding: .45rem .65rem;

    border-radius: 8px;
}

.navbar-gtp .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(212,175,55,.25);
}


/* =========================================================
   GOLD STRIP
   ========================================================= */

.gold-strip,
.footer-gold-strip {
    background:
        linear-gradient(
            90deg,
            var(--gtp-gold-dark),
            var(--gtp-gold),
            var(--gtp-gold-light),
            var(--gtp-gold),
            var(--gtp-gold-dark)
        );

    background-size: 200% 100%;
}

.gold-strip {
    height: 4px;

    animation: goldFlow 8s linear infinite;
}

.footer-gold-strip {
    height: 4px;
}

@keyframes goldFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}


/* =========================================================
   HERO
   ========================================================= */

.hero-section {
    min-height: 590px;

    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;

    color: #fff;

    padding: 6rem 0 5rem;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(212,175,55,.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(255,255,255,.06),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #c8102e 0%,
            #9b0c24 55%,
            #700819 100%
        );
}

.hero-section::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    right: -180px;
    top: -220px;

    border: 1px solid rgba(212,175,55,.25);

    border-radius: 50%;
}

.hero-section::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -100px;
    bottom: -250px;

    border: 1px solid rgba(212,175,55,.18);

    border-radius: 50%;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    max-width: 850px;

    font-size: clamp(2.4rem, 5vw, 4.25rem);

    line-height: 1.08;

    letter-spacing: -1.8px;

    font-weight: 800;

    margin-bottom: 1.5rem;
}

.hero-section .lead {
    max-width: 680px;

    font-size: 1.15rem;

    line-height: 1.8;

    color: rgba(255,255,255,.88);

    margin-bottom: 2rem;
}


/* Hero award icon */

.hero-section .bi-award {
    filter:
        drop-shadow(0 10px 30px rgba(0,0,0,.15));

    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    font-weight: 700;

    border-radius: 8px;

    padding: .78rem 1.5rem;

    transition: var(--transition);
}

.btn-gold {
    background:
        linear-gradient(
            135deg,
            var(--gtp-gold-light),
            var(--gtp-gold)
        );

    color: #191919;

    border: none;

    box-shadow:
        0 8px 20px rgba(0,0,0,.12);
}

.btn-gold:hover {
    background:
        linear-gradient(
            135deg,
            #f3da83,
            var(--gtp-gold-light)
        );

    color: #111;

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(0,0,0,.18);
}

.btn-outline-gold {
    border: 1.5px solid rgba(239,212,119,.9);

    color: #fff;

    background: rgba(255,255,255,.03);

    backdrop-filter: blur(8px);
}

.btn-outline-gold:hover {
    background: var(--gtp-gold);

    border-color: var(--gtp-gold);

    color: #151515;

    transform: translateY(-3px);
}

.btn-red {
    background:
        linear-gradient(
            135deg,
            var(--gtp-red),
            var(--gtp-red-dark)
        );

    color: #fff;

    border: none;

    box-shadow:
        0 8px 20px rgba(200,16,46,.18);
}

.btn-red:hover {
    background:
        linear-gradient(
            135deg,
            var(--gtp-red-light),
            var(--gtp-red)
        );

    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(200,16,46,.25);
}


/* =========================================================
   STATS
   ========================================================= */

.bg-offwhite {
    background: var(--gtp-offwhite) !important;
}

.stat-box {
    text-align: center;

    padding: 1.8rem 1rem;

    position: relative;
}

.stat-box .number {
    font-size: 2.4rem;

    font-weight: 850;

    letter-spacing: -1px;

    color: var(--gtp-red);

    line-height: 1.1;
}

.stat-box .label {
    color: var(--gtp-gray);

    font-size: .88rem;

    font-weight: 600;

    margin-top: .55rem;
}

.stat-box::after {
    content: "";

    position: absolute;

    width: 1px;
    height: 45px;

    background: var(--gtp-border);

    right: 0;
    top: 50%;

    transform: translateY(-50%);
}

.stat-box:last-child::after {
    display: none;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.45rem);

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -.8px;

    color: var(--gtp-dark);

    margin-bottom: .7rem;
}

.section-title::after {
    display: none;
}

.section-subtitle {
    color: var(--gtp-gray);

    font-size: 1rem;

    line-height: 1.8;
}

.gold-bar {
    width: 48px;
    height: 4px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--gtp-gold-dark),
            var(--gtp-gold-light)
        );

    margin-bottom: 1.1rem;
}


/* =========================================================
   SECTION BACKGROUNDS
   ========================================================= */

.bg-light-red {
    background:
        linear-gradient(
            180deg,
            #fff7f8 0%,
            #fff 100%
        );
}


/* =========================================================
   CARDS
   ========================================================= */

.card-gtp {
    background: #fff;

    border: 1px solid var(--gtp-border);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.card-gtp:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow-md);

    border-color: rgba(200,16,46,.14);
}

.card-gtp .card-body {
    padding: 1.7rem;
}


/* =========================================================
   CARD ICON
   ========================================================= */

.card-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    font-size: 1.35rem;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--gtp-red),
            var(--gtp-red-dark)
        );

    box-shadow:
        0 8px 20px rgba(200,16,46,.2);

    transition: var(--transition);
}

.card-gtp:hover .card-icon {
    transform: scale(1.06) rotate(-2deg);
}


/* =========================================================
   COURSE CARDS
   ========================================================= */

.course-category-card {
    border-left: 3px solid var(--gtp-red);

    position: relative;
}

.course-category-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: var(--gtp-gold);

    transition: width .35s ease;
}

.course-category-card:hover::before {
    width: 100%;
}

.course-category-card h5 {
    font-size: 1.08rem;

    margin-top: 1.1rem;
    margin-bottom: .65rem;
}

.course-category-card p {
    line-height: 1.7;

    margin-bottom: 1.1rem;
}

.course-category-card a {
    font-size: .9rem;
}

.course-category-card a:hover {
    color: var(--gtp-red-dark) !important;
}


/* =========================================================
   VISION / MISSION
   ========================================================= */

.value-item {
    text-align: center;

    padding: 2rem 1.5rem;
}

.value-item .icon-circle {
    width: 76px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 1.3rem;

    border-radius: 50%;

    color: #fff;

    font-size: 1.5rem;

    background:
        linear-gradient(
            135deg,
            var(--gtp-red),
            var(--gtp-red-dark)
        );

    box-shadow:
        0 12px 28px rgba(200,16,46,.2);

    transition: var(--transition);
}

.value-item:hover .icon-circle {
    transform: translateY(-5px) scale(1.04);

    box-shadow:
        0 16px 35px rgba(200,16,46,.27);
}

.value-item h5 {
    font-size: 1.08rem;
}

.value-item p {
    font-size: .94rem;

    line-height: 1.7;
}


/* =========================================================
   BADGES
   ========================================================= */

.badge-red {
    background: rgba(200,16,46,.09);

    color: var(--gtp-red);

    border: 1px solid rgba(200,16,46,.12);

    padding: .5rem .75rem;

    border-radius: 6px;

    font-size: .76rem;

    font-weight: 700;
}

.badge-gold {
    background: rgba(212,175,55,.15);

    color: #7d6412;

    border: 1px solid rgba(212,175,55,.2);

    padding: .5rem .75rem;

    border-radius: 6px;
}


/* =========================================================
   LIST CHECK
   ========================================================= */

.list-check li {
    position: relative;

    padding-left: 2rem;

    margin-bottom: .8rem;

    color: var(--gtp-gray);

    font-size: .95rem;
}

.list-check li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(200,16,46,.1);

    color: var(--gtp-red);

    font-size: .75rem;

    font-weight: 800;
}


/* =========================================================
   DELIVERY CARDS
   ========================================================= */

.card-gtp h6 {
    font-size: 1rem;
}

.card-gtp h6 i {
    font-size: 1.05rem;
}

.card-gtp .text-red {
    color: var(--gtp-red) !important;
}


/* =========================================================
   PAGE HEADER
   ========================================================= */

.page-header {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(212,175,55,.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--gtp-red),
            var(--gtp-red-dark)
        );

    color: #fff;

    padding: 4.5rem 0 3.5rem;

    position: relative;

    overflow: hidden;
}

.page-header::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -150px;
    top: -180px;

    border: 1px solid rgba(212,175,55,.2);

    border-radius: 50%;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 800;

    letter-spacing: -.8px;

    margin-bottom: .5rem;
}

.breadcrumb-gtp {
    position: relative;
    z-index: 2;
}

.breadcrumb-gtp .breadcrumb-item a {
    color: rgba(255,255,255,.75);

    text-decoration: none;
}

.breadcrumb-gtp .breadcrumb-item a:hover {
    color: var(--gtp-gold-light);
}

.breadcrumb-gtp .breadcrumb-item.active {
    color: var(--gtp-gold-light);
}


/* =========================================================
   TABLES
   ========================================================= */

.table-gtp {
    border-radius: var(--radius-md);

    overflow: hidden;

    box-shadow: var(--shadow-sm);
}

.table-gtp thead {
    background:
        linear-gradient(
            135deg,
            var(--gtp-red),
            var(--gtp-red-dark)
        );

    color: #fff;
}

.table-gtp thead th {
    border: none;

    padding: 1rem;

    font-size: .88rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .3px;
}

.table-gtp tbody td {
    padding: 1rem;

    vertical-align: middle;

    border-color: var(--gtp-border);
}

.table-gtp tbody tr {
    transition: var(--transition);
}

.table-gtp tbody tr:hover {
    background: #fff7f8;
}


/* =========================================================
   ACCORDION
   ========================================================= */

.accordion-gtp {
    --bs-accordion-border-color: var(--gtp-border);
    --bs-accordion-border-radius: var(--radius-md);
}

.accordion-gtp .accordion-item {
    border-radius: var(--radius-md) !important;

    overflow: hidden;

    margin-bottom: .8rem;

    border: 1px solid var(--gtp-border);

    box-shadow: var(--shadow-sm);
}

.accordion-gtp .accordion-button {
    padding: 1.2rem 1.3rem;

    font-weight: 700;

    color: var(--gtp-dark);

    background: #fff;
}

.accordion-gtp .accordion-button:not(.collapsed) {
    background:
        linear-gradient(
            135deg,
            var(--gtp-red),
            var(--gtp-red-dark)
        );

    color: #fff;

    box-shadow: none;
}

.accordion-gtp .accordion-button:focus {
    box-shadow:
        0 0 0 3px rgba(200,16,46,.12);

    border-color: transparent;
}


/* =========================================================
   FORM CONTROLS
   ========================================================= */

.form-control,
.form-select {
    min-height: 48px;

    border: 1px solid #dfe2e7;

    border-radius: 8px;

    padding: .7rem .9rem;

    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gtp-red);

    box-shadow:
        0 0 0 4px rgba(200,16,46,.1);
}

textarea.form-control {
    min-height: 130px;
}


/* =========================================================
   CTA
   ========================================================= */

section[style*="C8102E"] {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 30%,
            rgba(212,175,55,.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--gtp-red),
            var(--gtp-red-dark)
        ) !important;
}

section[style*="C8102E"]::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    border: 1px solid rgba(212,175,55,.15);

    right: -180px;
    top: -200px;
}

section[style*="C8102E"] .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer-gtp {
    background:
        linear-gradient(
            180deg,
            #181a1f 0%,
            #101216 100%
        );

    color: #aeb3bd;

    padding: 4rem 0 1.5rem;
}

.footer-gtp h5 {
    color: var(--gtp-gold-light);

    font-size: 1rem;

    font-weight: 750;

    margin-bottom: 1.2rem;
}

.footer-gtp p {
    line-height: 1.8;
}

.footer-gtp a {
    color: #aeb3bd;

    text-decoration: none;
}

.footer-gtp a:hover {
    color: var(--gtp-gold-light);

    padding-left: 2px;
}

.footer-gtp ul {
    margin-bottom: 0;
}

.footer-gtp .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);

    margin-top: 3rem;

    padding-top: 1.5rem;

    color: #777d87;
}


/* =========================================================
   BACK TO TOP
   ========================================================= */

#backToTop {
    width: 50px !important;
    height: 50px !important;

    padding: 0 !important;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50% !important;

    box-shadow:
        0 10px 25px rgba(0,0,0,.2) !important;

    transition: var(--transition);

    z-index: 999;
}

#backToTop:hover {
    transform: translateY(-4px);
}


/* =========================================================
   UTILITY
   ========================================================= */

.text-red {
    color: var(--gtp-red) !important;
}

.text-gold {
    color: var(--gtp-gold) !important;
}

.bg-red {
    background: var(--gtp-red) !important;
}

.bg-gold {
    background: var(--gtp-gold) !important;
}


/* =========================================================
   COURSE LIST
   ========================================================= */

.course-list-item {
    padding: 1rem 0;

    border-bottom: 1px solid var(--gtp-border);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 1rem;

    transition: var(--transition);
}

.course-list-item:hover {
    padding-left: .4rem;
}

.course-list-item:last-child {
    border-bottom: none;
}

.course-list-item a {
    color: var(--gtp-dark);

    text-decoration: none;

    font-weight: 650;
}

.course-list-item a:hover {
    color: var(--gtp-red);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {

    .navbar-gtp .navbar-collapse {
        margin-top: 1rem;

        padding: .75rem;

        border-radius: 12px;

        background: rgba(0,0,0,.12);
    }

    .navbar-gtp .nav-link {
        padding: .75rem !important;
    }

    .navbar-gtp .nav-link::after {
        display: none;
    }

    .hero-section {
        min-height: auto;

        padding: 5rem 0 4.5rem;
    }

    .hero-section h1 {
        max-width: 700px;
    }

    .stat-box::after {
        display: none;
    }
}


@media (max-width: 767.98px) {

    .navbar-gtp {
        min-height: 68px;
    }

    .navbar-gtp .navbar-brand {
        font-size: 1.15rem;
    }

    .hero-section {
        padding: 4rem 0 3.5rem;
    }

    .hero-section h1 {
        font-size: 2.35rem;

        letter-spacing: -1px;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .hero-section .btn {
        width: 100%;
    }

    .stat-box {
        padding: 1.25rem .5rem;
    }

    .stat-box .number {
        font-size: 1.8rem;
    }

    .stat-box .label {
        font-size: .78rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .card-gtp .card-body {
        padding: 1.35rem;
    }

    .value-item {
        padding: 1.5rem 1rem;
    }

    .page-header {
        padding: 3.5rem 0 2.8rem;
    }

    .footer-gtp {
        padding-top: 3rem;
    }
}


@media (max-width: 575.98px) {

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 3.5rem 0 3rem;
    }

    .stat-box .number {
        font-size: 1.6rem;
    }

    .stat-box .label {
        font-size: .72rem;
    }

    .gold-bar {
        height: 3px;
        width: 40px;
    }

    .btn {
        padding: .7rem 1.2rem;
    }

    .footer-gtp .footer-bottom {
        text-align: center;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* =========================================================
   DESIGN CHECKLIST OVERRIDES
   Deep Blue + Gold + Emerald Green
   ========================================================= */

h1, h2, h3, h4, h5, h6,
.navbar-gtp .navbar-brand,
.navbar-gtp .nav-link,
.section-title,
.page-header h1,
.hero-section h1,
.card-gtp h5,
.card-gtp h6,
.btn {
    font-family: "Montserrat", "Segoe UI", sans-serif;
}

h1 { font-size: 32px; }
h2 { font-size: 24px; }

body {
    font-size: 16px;
}

.hero-section {
    background:
        linear-gradient(135deg, rgba(0, 51, 102, .96), rgba(0, 38, 77, .98)),
        linear-gradient(90deg, #003366, #00264d);
}

.page-header {
    background:
        radial-gradient(circle at 80% 20%, rgba(255,180,0,.18), transparent 30%),
        linear-gradient(135deg, #003366, #00264d);
}

.navbar-gtp {
    background: linear-gradient(135deg, #003366 0%, #00264d 100%) !important;
}

.btn-red {
    background: #2E8B57;
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px rgba(46,139,87,.18);
}

.btn-red:hover {
    background: #246B45;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(46,139,87,.25);
}

.btn-gold {
    background: #FF6600;
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px rgba(255,102,0,.16);
}

.btn-gold:hover {
    background: #E65300;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255,102,0,.24);
}

.btn-outline-gold {
    border: 1.5px solid #FFB400;
    color: #fff;
    background: rgba(255,255,255,.04);
}

.btn-outline-gold:hover {
    background: #FFB400;
    border-color: #FFB400;
    color: #003366;
}

.section-title {
    color: #003366;
}

.section-subtitle {
    color: #666666;
}

.gold-bar {
    background: #FFB400;
}

.bg-light-red {
    background: linear-gradient(180deg, #F5F5F5 0%, #FFFFFF 100%);
}

.card-gtp {
    border-color: #E1E5EA;
}

.card-gtp:hover {
    border-color: rgba(0,51,102,.20);
}

.card-icon {
    background: linear-gradient(135deg, #003366, #0a4f8a);
    box-shadow: 0 8px 20px rgba(0,51,102,.18);
}

.course-category-card {
    border-left-color: #003366;
}

.course-category-card::before {
    background: #FFB400;
}

.value-item .icon-circle {
    background: linear-gradient(135deg, #003366, #0a4f8a);
    box-shadow: 0 12px 28px rgba(0,51,102,.18);
}

.badge-red {
    background: rgba(0,51,102,.08);
    color: #003366;
    border-color: rgba(0,51,102,.14);
}

.badge-gold {
    background: rgba(255,180,0,.14);
    color: #8A6200;
    border-color: rgba(255,180,0,.25);
}

.list-check li::before {
    background: rgba(46,139,87,.12);
    color: #2E8B57;
}

.card-gtp .text-red,
.text-red {
    color: #003366 !important;
}

.text-gold {
    color: #FFB400 !important;
}

.bg-red {
    background: #003366 !important;
}

.bg-gold {
    background: #FFB400 !important;
}

.table-gtp thead {
    background: linear-gradient(135deg, #003366, #00264d);
}

.table-gtp tbody tr:hover {
    background: #F5F5F5;
}

.accordion-gtp .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #003366, #00264d);
}

.accordion-gtp .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(0,51,102,.12);
}

.form-control:focus,
.form-select:focus {
    border-color: #003366;
    box-shadow: 0 0 0 4px rgba(0,51,102,.10);
}

section[style*="C8102E"] {
    background:
        radial-gradient(circle at 90% 30%, rgba(255,180,0,.16), transparent 30%),
        linear-gradient(135deg, #003366, #00264d) !important;
}

.footer-gtp {
    background: linear-gradient(180deg, #00264d 0%, #001a33 100%);
}

.footer-gtp h5 {
    color: #FFB400;
}

.footer-gtp a:hover {
    color: #FFB400;
}

/* Testimonials / accents */
.testimonial,
.testimonial-text,
blockquote {
    font-family: "Roboto", sans-serif;
    font-style: italic;
    font-weight: 400;
    color: #666666;
}

/* Make CTA placement and readability consistent */
.section-cta,
.cta-section {
    text-align: center;
}

@media (max-width: 767.98px) {
    h1 { font-size: 30px; }
    h2 { font-size: 23px; }

    .hero-section h1 {
        font-size: 2.35rem;
    }
}
