/********** Template CSS **********/
:root {
    --primary: #1eb589; /* Fresh green */
    --secondary: #0a2d5b; /* Deep navy */
    --light: #dff5ee; /* Light text on dark */
    --color-light-transparent: rgba(223, 245, 238, 0.25);
    --dark: #021027; /* Midnight blue */
    --accent-color: #0d7a5f; /* Forest accent */
    --color-transparent-blue: rgba(10, 45, 91, 0.25);
    --color-shadow-dark: rgba(0, 0, 0, 0.35);
    --color-border-light: rgba(255, 255, 255, 0.15);
}

.bg-light {
    background-color: #101426 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
/* Brand Icon Animation */
.brand-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #042043 0%, #0f7a5f 50%, #1eb589 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s ease-in-out infinite;
}

.brand-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.brand-icon::after {
    content: 'S';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(30, 181, 137, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(10, 45, 91, 0.5);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Navbar Styles */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(2, 16, 39, 0.92) !important;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(2, 16, 39, 0.97) !important;
    box-shadow: 0 8px 32px rgba(30, 181, 137, 0.18) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Combo", sans-serif;
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    position: relative;
    margin-right: 30px;
    padding: 1rem;
    color: var(--light);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    transition: all 0.3s ease;
}

.navbar .navbar-nav .nav-link .nav-underline {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent-color), transparent);
    transition: width 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover .nav-underline,
.navbar .navbar-nav .nav-link.active .nav-underline {
    width: 80%;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    text-shadow: 0 0 10px rgba(30, 181, 137, 0.45);
}

.navbar .navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 15px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid rgba(30, 181, 137, 0.2);
        padding-top: 20px;
    }
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
}

/* Mobile Toggler Bars */
.toggler-bar {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary);
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.navbar-toggler:hover .toggler-bar {
    background: var(--accent-color);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}

/*** Header ***/
.header-carousel .owl-carousel-text {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 3rem;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: transparent;
    border: 1px solid var(--light);
    border-radius: 45px;
    font-size: 22px;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid var(--light);
    border-radius: 15px;
    transition: 0.5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: var(--light);
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: url(../img/header-page.jpg) top center no-repeat;
    background-size: cover;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

/*** Service ***/
.service-item {
    transition: 0.5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    background: var(--dark);
    border-radius: 40px;
    white-space: nowrap;
    overflow: hidden;
    transition: 0.5s;
}

.service-item:hover .btn {
    width: 140px;
}

/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
        background-color: var(--dark);
    }

    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + 0.75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
    }
}

/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: 0.5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: 0.5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: 0.5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: var(--dark);
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: var(--light);
    background: var(--primary);
}

/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}

/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: #141a2f;
    transform: scale(0.8);
    transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--secondary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--dark) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid var(--primary);
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--accent-color);
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* Google Fonts - Poppins */
@media (max-width: 700px) {
    .cookie-wrapper {
        width: 100%;
    }
}

.cookie-wrapper {
    position: fixed;
    bottom: 0px;
    right: 0;
    width: 100%;
    background: #04162e;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgb(0, 0, 0);
    z-index: 999;
}

.cookie-wrapper * {
    font-family: "Bodoni Moda", serif;
}

.cookie-wrapper .show {
    right: 20px;
}

.hidden {
    display: none;
}

header i {
    color: var(--primary);
    font-size: 32px;
    text-align: center;
}

header h2 {
    color: var(--primary);
    font-weight: 500;
    text-align: center;
}

.data {
    text-align: center;
}

.data p a {
    color: var(--primary);
    text-decoration: none;
    text-align: center !important;
}

.data p a:hover {
    text-decoration: underline;
}

.buttons {
    padding: 20px 0px;
    text-align: center;
}

.buttons .cookie-button {
    border: 2px solid var(--primary);
    color: var(--light);
    padding: 8px 0;
    background: var(--primary);
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.5s ease;
    max-width: 150px;
    border-radius: 0;
}

.buttons #acceptBtn:hover {
    background-color: var(--primary);
    color: var(--primary);
}

#declineBtn {
    background-color: transparent;
    color: var(--primary);
}

#declineBtn:hover {
    background-color: var(--primary);
    color: var(--light);
}

/* Footer Style */

.growth {
    background-image: url('img/background-image.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light);
    padding: 100px 0;
}

.lead {
    color: var(--light);
    font-weight: 500;
}

.rounded-pill {
    cursor: pointer;
}

.programme-section {
    background: linear-gradient(135deg, rgba(2, 16, 39, 0.85), rgba(30, 181, 137, 0.1));
    color: var(--light);
}

.programme-section h1 {
    font-size: clamp(2.5rem, 3vw, 3rem);
    line-height: 1.2;
}

.programme-section .programme-pill {
    border-color: rgba(223, 245, 238, 0.5);
}

.programme-text p {
    color: var(--light);
}

.programme-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.programme-list li::before {
    content: "•";
    color: var(--primary);
    margin-right: 0.5rem;
}

.programme-actions .btn {
    min-width: 190px;
}

.programme-meta {
    gap: 1rem;
}

.programme-meta__card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 0.9rem;
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.programme-meta__card strong {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.programme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.programme-card {
    padding: 1.8rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

.programme-card__rank {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.3rem;
    color: rgba(223, 245, 238, 0.65);
}

.programme-card h4 {
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.programme-card p {
    color: rgba(223, 245, 238, 0.8);
}

.contact-hero {
    background: linear-gradient(135deg, rgba(2, 16, 39, 0.95), rgba(30, 181, 137, 0.2));
}

.contact-info {
    background: rgba(2, 16, 39, 0.92);
    color: var(--light);
}

.info-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 1.1rem;
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.info-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.info-card ul li {
    margin-bottom: 0.6rem;
}

.info-card a {
    color: var(--light);
}

.info-card__bonus {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(30, 181, 137, 0.18);
    border: 1px solid rgba(30, 181, 137, 0.4);
}

.hero-section {
    background: linear-gradient(135deg, rgba(2, 16, 39, 0.95), rgba(30, 181, 137, 0.2));
    color: var(--light);
}

.hero-section .hero-text h1 {
    font-size: clamp(2.5rem, 3.6vw, 3.4rem);
    line-height: 1.2;
}

.hero-section .hero-text p {
    max-width: 520px;
}

.hero-section .hero-meta {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 1.2rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-section .hero-meta__item h3 {
    margin: 0;
    font-size: 2rem;
}

.hero-section .hero-meta__list {
    margin-top: 1rem;
    padding: 0;
    list-style: none;
    color: rgba(223, 245, 238, 0.85);
}

.hero-section .hero-meta__list li {
    margin-bottom: 0.5rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}
.programme-timeline {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.timeline-step {
    flex: 1;
    min-width: 140px;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.timeline-step span {
    font-size: 0.8rem;
    letter-spacing: 0.3rem;
    color: rgba(223, 245, 238, 0.7);
}

.timeline-step p {
    margin: 0.4rem 0 0;
    color: var(--light);
}

.growth-panel {
    background: linear-gradient(135deg, rgba(2, 16, 39, 0.9), rgba(30, 181, 137, 0.18));
    color: var(--light);
}

.growth-panel__inner {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    padding: 3rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.growth-panel__copy {
    flex: 1;
    min-width: 260px;
}

.growth-panel__copy h2 {
    font-size: clamp(2rem, 2.8vw, 2.6rem);
}

.growth-panel__list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.growth-panel__list li::before {
    content: "▹";
    margin-right: 0.5rem;
    color: var(--primary);
}

.growth-panel__stats {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.growth-stat {
    padding: 1.2rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.growth-stat span {
    font-size: 2.2rem;
    display: block;
}

.growth-panel__stats p {
    margin: 0;
    color: rgba(223, 245, 238, 0.85);
}

.growth-card {
    background: rgba(30, 181, 137, 0.15);
    border-radius: 1.1rem;
    padding: 1.2rem;
    border: 1px solid rgba(30, 181, 137, 0.4);
}

.growth-card h3 {
    font-size: 1.5rem;
    margin: 0.2rem 0;
}

.about-section {
    background: linear-gradient(135deg, rgba(30, 181, 137, 0.12), rgba(2, 16, 39, 0.9));
    color: var(--light);
}

.about-section h1 {
    font-size: clamp(2.5rem, 3vw, 3rem);
}

.about-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.about-visual__image {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(2, 16, 39, 0.6);
}

.about-visual__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(30, 181, 137, 0.9);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
}

.about-visual__card {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(2, 16, 39, 0.9);
    border: 1px solid rgba(30, 181, 137, 0.3);
    padding: 1rem 1.3rem;
    border-radius: 1rem;
    text-align: center;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.about-values div {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
}

.about-values h6 {
    margin-bottom: 0.4rem;
}

.about-values p {
    margin: 0;
    color: rgba(223, 245, 238, 0.85);
}

.about-stats {
    gap: 1rem;
}

.about-stat-card {
    min-width: 140px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.about-stat-card strong {
    display: block;
    font-size: 1.8rem;
}

.team-section {
    background: rgba(2, 16, 39, 0.92);
    color: var(--light);
}

.team-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.price-section {
    background: rgba(30, 181, 137, 0.1);
    color: var(--light);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
}

.price-card {
    background: rgba(2, 16, 39, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    gap: 1rem;
}

.price-card.featured {
    background: linear-gradient(180deg, rgba(30, 181, 137, 0.15), rgba(2, 16, 39, 0.9));
    box-shadow: 0 20px 45px rgba(2, 16, 39, 0.6);
}

.price-card__tag {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.3rem;
    color: var(--primary);
}

.price-card h3 {
    margin: 0;
    font-size: 1.5rem;
}

.price-card__price {
    font-size: 1.8rem;
    margin: 0;
}

.price-card__price span {
    font-weight: 700;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(223, 245, 238, 0.85);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.price-card ul li::before {
    content: "✓";
    color: var(--primary);
    margin-right: 0.5rem;
}

.price-card a {
    align-self: flex-start;
    font-size: 0.9rem;
}

.mentor-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    transition: transform 0.3s ease;
}

.mentor-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.mentor-card:hover {
    transform: translateY(-6px);
}

.mentor-body {
    padding: 1.5rem;
}

.mentor-body h5 {
    margin-bottom: 0.3rem;
}

.mentor-body p {
    margin: 0;
    color: rgba(223, 245, 238, 0.8);
}

@media (max-width: 991.98px) {
    .growth-panel__inner {
        flex-direction: column;
    }

    .programme-actions .btn {
        width: 100%;
        text-align: center;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Global Typography */
body {
    font-family: "Bodoni Moda", serif;
    background-color: var(--dark);
    color: var(--light);
}

.btn.btn-primary {
    background-color: var(--accent-color);
    border: none;
}

.btn.btn-primary:hover {
    background-color: var(--primary);
}