/* ==========================================================================
   DESIGN VARIABLES & SYSTEM
   ========================================================================== */
:root {
    --primary-color: #fc6441;
    --paragraph-color: #525271;
    --dark-color: #0d0d25;
    --white-color: #ffffff;
    --purple-theme: #51157C;
    --gold-accent: #F1A63E;
    --dark-purple: #3D2C5E;
    --magenta-accent: #ba1b94;
    --light-gray: #f8f9fa;
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.15);
    --font-heading: "Work Sans", sans-serif;
    --font-body: "Inter", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--paragraph-color);
    background-color: var(--white-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ==========================================================================
   GRID & LAYOUT UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 130px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.align-items-center {
    align-items: center;
}

.align-items-stretch {
    align-items: stretch;
}

.justify-content-center {
    justify-content: center;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.ms-auto {
    margin-left: auto;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: right !important;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-3 {
    margin-bottom: 16px;
}

.mb-4 {
    margin-bottom: 24px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-3 {
    margin-top: 16px;
}

.mt-4 {
    margin-top: 24px;
}

.me-2 {
    margin-right: 8px;
}

.me-3 {
    margin-right: 16px;
}

.py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.px-3 {
    padding-left: 16px;
    padding-right: 16px;
}

.p-4 {
    padding: 24px;
}

.p-md-5 {
    padding: 48px;
}

.rounded-20 {
    border-radius: 20px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.position-relative {
    position: relative;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.ptb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.text-muted {
    color: #777;
}

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

.font-bold {
    font-weight: 700;
}

.uppercase {
    text-transform: uppercase;
}

.small {
    font-size: 13px;
}

/* Mobile-first Default Column Style (spans 100% on mobile by default) */
[class*="col-"] {
    position: relative;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    flex: 0 0 100%;
    max-width: 100%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Gap styles for Row Grid */
.row.g-4 {
    margin-left: -12px;
    margin-right: -12px;
}

.row.g-4>[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
}

.row.g-3 {
    margin-left: -8px;
    margin-right: -8px;
}

.row.g-3>[class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}

/* Visibility helpers & screen layout overrides */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

/* Small Devices (min-width: 576px) */
@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Medium Devices (min-width: 768px) { */
@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-block {
        display: block !important;
    }

    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Large Devices (min-width: 992px) */
@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ==========================================================================
   TOP HEADER SECTION
   ========================================================================== */
.top-header-warp {
    background-color: var(--purple-theme);
    z-index: 99999;
    padding: 8px 0;
}

.header-unified-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 25px;
}

.header-unified-links li {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

@media (min-width: 992px) {
    .header-unified-links li:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 12px;
        background-color: rgba(255, 255, 255, 0.3);
    }
}

.header-unified-links li a,
.dropdown-trigger {
    color: var(--white-color);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-unified-links li a:hover,
.dropdown-wrapper:hover .dropdown-trigger {
    color: var(--gold-accent);
}

.header-unified-links li i {
    color: var(--white-color);
    font-size: 14px;
}

.dropdown-wrapper {
    position: relative;
}

.dropdown-trigger i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-wrapper:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-wrapper .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: var(--white-color);
    min-width: 160px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

.dropdown-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-wrapper .dropdown-menu li {
    padding: 0;
    display: block;
}

.dropdown-wrapper .dropdown-menu li::after {
    display: none !important;
}

.dropdown-wrapper .dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    color: #333 !important;
    font-size: 13px;
    white-space: nowrap;
}

.dropdown-wrapper .dropdown-menu li a:hover {
    background-color: var(--purple-theme);
    color: var(--white-color) !important;
}

/* ==========================================================================
   MAIN NAVBAR SECTION
   ========================================================================== */
.first-navbar {
    background-color: #020103;
    max-height: 90px;
    display: flex;
    align-items: center;
    padding: 10px 0;
    z-index: 9999;
    position: relative;
}

.first-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
    height: 75px;
    display: block;
}

.navbar-toggler {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.burger-menu {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white-color);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-item .nav-link {
    color: var(--white-color);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #8321A5;
}

/* Navbar Programs Dropdown on Hover */
.navbar-nav .nav-item .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #020103;
    border: 1px solid #111;
    min-width: 180px;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    z-index: 100;
}

.navbar-nav .nav-item:hover .dropdown-menu {
    display: flex;
}

.navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
    padding: 8px 20px;
    font-size: 14px;
    display: block;
}

.navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover {
    background-color: #8321A5;
    color: var(--white-color) !important;
}

/* Search bar toggler */
.search-btn {
    cursor: pointer;
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.search-btn i {
    font-size: 20px;
    color: var(--white-color);
}

.search-btn i:hover {
    color: #8321A5;
}

/* Fancy Apply Now button */
.apply-now-btn {
    background: #A13E99;
    color: var(--white-color) !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 14px !important;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(161, 62, 153, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out !important;
}

.apply-now-btn:hover {
    background: #872980;
}

/* Search Dropdown Popup overlay */
.search-dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    justify-content: center;
    padding-top: 100px;
}

.search-dropdown-container {
    background-color: var(--white-color);
    width: 90%;
    max-width: 600px;
    height: fit-content;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    color: #333;
    padding: 8px;
}

.search-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #666;
}

.search-results {
    overflow-y: auto;
    max-height: calc(80vh - 80px);
}

.result-item {
    display: flex;
    align-items: flex-start;
    padding: 16px 20px;
    cursor: pointer;
}

.result-item:hover {
    background-color: #f5f5f5;
}

.result-icon {
    margin-right: 12px;
    color: var(--dark-purple);
    display: flex;
    align-items: center;
}

.result-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.result-description {
    font-size: 14px;
    color: #666;
}

.search-suggestions {
    padding: 20px;
}

.search-suggestions h3 {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 6px;
    color: #333;
}

.suggestion-item:hover {
    background-color: #f5f5f5;
}

/* ==========================================================================
   CPA BANNER & BROCHURE FORM SECTION
   ========================================================================== */
.hero-warp {
    position: relative;
    /* max-height: 100vh; */
}

.hero-slider-warp {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 100px;
    padding-top: 30px;
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-img {
    width: 80%;
}

.program-hero-card {
    background: var(--white-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 550px;
    margin: 0 auto;
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-header h2 {
    font-size: 1.5rem;
    color: #511970;
    margin-bottom: 0.5rem;
}

.card-header p {
    font-size: 0.95rem;
    color: #666;
}

.registration-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.3rem;
    margin-top: 0.5rem;
}

.custom-input {
    width: 100%;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #6a1b9a;
    background-color: var(--white-color);
}

.searchable-select {
    position: relative;
    width: 100%;
}

.searchable-select .dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: var(--white-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    z-index: 9999;
    margin-top: 4px;
    display: none;
}

.searchable-select .dropdown-item {
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    color: #333;
}

.searchable-select .dropdown-item:hover {
    background-color: #f3e5f5;
    color: #6a1b9a;
}

.searchable-select .dropdown-item.highlighted-uni {
    font-weight: 700;
    /* background-color: #fdf6e2; */
}

.register-btn {
    width: 100%;
    background: linear-gradient(135deg, #6a1b9a 0%, #8e24aa 100%);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white-color);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(106, 27, 154, 0.3);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-btn:hover {
    background: linear-gradient(135deg, #7b1fa2 0%, #9c27b0 100%);
}

.form-footer-text {
    font-size: 0.75rem;
    color: #999;
    text-align: center;
    margin-top: 15px;
}

.form-footer-text a {
    color: #6a1b9a;
    font-weight: 600;
}

/* Invalid inputs styling */
.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 11px;
    margin-top: 2px;
    display: none;
}

/* ==========================================================================
   GOVERNMENT PROGRAM SECTION
   ========================================================================== */
.govt-program-area {
    background-color: var(--light-gray);
    padding-top: 39px;
    padding-bottom: 40px;
}

.section-title {
    margin-bottom: 50px;
}

.section-title .title {
    font-size: 32px;
    font-weight: 700;
    color: #0d0d25;
    text-transform: uppercase;
    position: relative;
}

.section-title .title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: var(--gold-accent);
    margin: 15px auto 0;
    border-radius: 10px;
}

.highlight {
    color: var(--gold-accent);
}

.program-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--magenta-accent);
}

.card-image-box {
    position: relative;
    height: 300px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.8s ease;
}

.program-card:hover .card-image-box img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(56, 11, 64, 0.8));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.program-card:hover .image-overlay {
    opacity: 1;
    visibility: visible;
}

.btn-learn-more {
    padding: 10px 25px;
    background: var(--white-color);
    color: #380b40;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.btn-learn-more:hover {
    background: var(--magenta-accent);
    color: var(--white-color);
}

.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.program-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* ==========================================================================
   AI CPA SECTION (INTEGRATED DOMAINS GRID)
   ========================================================================== */
.ai-program-main {
    background-color: #f3f4f6;
    padding-top: 40px;
    padding-bottom: 40px;
}

.ai-program-main .sub-title {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    max-width: 800px;
    margin: 10px auto 0;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.domain-card {
    border-radius: 12px;
    padding: 20px;
    color: var(--white-color);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.domain-card:hover {
    transform: translateY(-5px);
}

.domain-card.blue {
    background-color: #1d2050;
}

.domain-card.magenta {
    background-color: var(--magenta-accent);
}

.domain-card.purple {
    background-color: #63189f;
}

.domain-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    margin: 0;
    line-height: 1.2;
}

.domain-subtitle {
    font-size: 14px;
    color: var(--white-color);
    margin-top: 5px;
}

.domain-icon {
    background: var(--white-color);
    border-radius: 6px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
}

.domain-icon i {
    font-size: 28px;
}

.domain-card.blue .domain-icon i {
    color: #1d2050;
}

.domain-card.magenta .domain-icon i {
    color: var(--magenta-accent);
}

.domain-card.purple .domain-icon i {
    color: #63189f;
}

.custom-svg-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.source-content {
    display: flex;
    justify-content: flex-end;
    margin-right: 150px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-top: 20px;
}

/* ==========================================================================
   AEIAP / AEUAP FLIP CARDS SECTION
   ========================================================================== */
.aeiap-area {
    background-color: var(--light-gray);
    padding-top: 70px;
    padding-bottom: 60px;
}

.ae-cards-grid {
    display: flex;
    justify-content: center;
}

.flip-card-wrapper {
    perspective: 1200px;
    height: 320px;
    margin-bottom: 24px;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
    cursor: pointer;
}

.flip-card-wrapper:hover .flip-card {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

.flip-card-front {
    background: var(--white-color);
    border: 1px solid #f0f0f0;
}

.flip-logo-img {
    height: auto;
    max-height: 206px;
    max-width: 100%;
    object-fit: contain;
}

.flip-card-back {
    background: var(--white-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f0f0;
    transform: rotateY(180deg);
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
    padding: 1.5rem 1.75rem;
}

.card-title-back {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.card-title-back::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #ED3BF6;
    margin: 8px 0 12px;
    border-radius: 10px;
}

.card-desc-back {
    font-size: 0.78rem;
    color: #4b5563;
    line-height: 1.6;
}

.detail-item {
    font-size: 0.78rem;
    color: #374151;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.detail-icon {
    color: var(--purple-theme);
    margin-right: 8px;
    display: flex;
    align-items: center;
}

.detail-text strong {
    min-width: 52px;
    display: inline-block;
}

.key-benefit-box {
    background: #f0f4ff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
}

.benefit-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--purple-theme);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.benefit-text {
    font-size: 0.72rem;
    color: var(--purple-theme);
    line-height: 1.5;
}

.course-badges {
    width: 100%;
}

.course-badge {
    background: #f9fafb;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.course-badge svg {
    color: var(--purple-theme);
}

/* ==========================================================================
   CAREER PATH SECTION
   ========================================================================== */
.career-path-section {
    padding: 65px 0 0;
}

.career-path-heading {
    text-align: center;
}

.career-path-heading h2 {
    font-size: 38px;
    font-weight: 600;
}

.career-path-image {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.career-path-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ==========================================================================
   IA CPA SECTION (I-GEN PATHWAY)
   ========================================================================== */
.ia-program-area {
    background-color: #f3f4f6;
}

.pathway-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ==========================================================================
   ACCA CPA SECTION (US CPA INTRO)
   ========================================================================== */
.cpa-intro-section {
    background-color: var(--white-color);
    padding: 61px 0 25px;
}

.cpa-heading-wrapper {
    margin-bottom: 24px;
    text-align: center;
}

.cpa-main-heading {
    color: #0d0d25;
    font-size: 32px;
    line-height: 1.12;
    font-weight: 700;
    text-transform: uppercase;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.heading-line {
    width: 20%;
    max-width: 930px;
    height: 4px;
    background-color: #e5ad00;
    margin: 12px auto 0;
}

.cpa-info-banner {
    width: 100%;
    min-height: 250px;
    display: grid;
    grid-template-columns: 65.5% 34.5%;
    overflow: hidden;
    border-radius: 12px;
}

.cpa-info-content {
    background: linear-gradient(90deg, #753278 0%, #783478 50%, #743174 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cpa-info-content h3 {
    color: #e7dce9;
    font-size: 35px;
    line-height: 1.2;
    font-weight: 300;
}

.cpa-info-content p {
    color: #e4d9e6;
    font-size: 19px;
    line-height: 1.45;
    font-weight: 300;
    margin-top: 20px;
}

.cpa-info-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image-side {
    width: 100%;
    height: 100%;
}

.card-image-side img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* ==========================================================================
   CPA QUALIFICATION SECTION (EXAM CARDS & PROCESS FLOW)
   ========================================================================== */
.cpa-exam-section {
    background: var(--white-color);
    padding: 40px 0;
}

.exam-group {
    background: #f4f4f8;
    border: 1px solid #e6e6ec;
    border-radius: 18px;
    padding: 16px 28px;
    margin-bottom: 24px;
}

.group-title {
    color: #87358c;
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.exam-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.exam-card {
    border: 1px solid #9b9b9b;
    background: var(--white-color);
    border-radius: 24px;
    padding: 3px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.exam-card-title {
    background: #87358c;
    color: var(--white-color);
    text-align: center;
    min-height: 49px;
    padding: 7px 10px;
    border-radius: 21px 21px 0 0;
    font-size: 14px;
    line-height: 1.12;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exam-content {
    background: #302d72;
    color: var(--white-color);
    padding: 15px 20px;
    flex: 1;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr auto;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 13px;
}

.exam-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    font-size: 11.5px;
    margin-bottom: 13px;
}

.exam-row>span:last-child {
    white-space: nowrap;
    text-align: right;
}

.exam-row small {
    display: block;
    font-size: 8px;
    margin-top: 1px;
}

.exam-footer {
    background: var(--white-color);
    padding: 8px 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.exam-footer span {
    background: #87358c;
    color: var(--white-color);
    border-radius: 20px;
    padding: 7px 4px;
    text-align: center;
    font-size: 10.5px;
    font-weight: 700;
    white-space: nowrap;
}

.exam-summary {
    text-align: center;
    margin-top: 15px;
}

.exam-summary h3 {
    color: #87358c;
    font-size: 20px;
}

.exam-summary p {
    color: #333;
    font-size: 12px;
    margin-top: 2px;
}

/* Process block styling */
.process-wrapper {
    position: relative;
    border: 2px solid #87358c;
    border-radius: 20px;
    margin: 40px 10px 60px;
    padding: 40px 52px;
}

.process-badge {
    position: absolute;
    left: 50%;
    top: -13px;
    transform: translateX(-50%);
    background: #87358c;
    color: var(--white-color);
    border-radius: 20px;
    padding: 5px 20px;
    font-size: 11px;
    font-weight: 700;
}

.process-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.9fr;
    gap: 40px;
}

.process-step h3 {
    color: #444;
    font-size: 23px;
    font-weight: 400;
    margin-bottom: 7px;
}

.process-step h4 {
    color: #111;
    font-size: 12px;
    font-weight: 700;
}

.step-line {
    height: 1px;
    background: #444;
    width: 80%;
    margin: 4px 0 10px;
}

.process-step li {
    position: relative;
    padding-left: 17px;
    font-size: 11px;
    margin-bottom: 9px;
    color: #111;
}

.process-step li::before {
    content: "☑";
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 10px;
}

/* Bottom process flow horizontal list */
.process-flow {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -29px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.65fr 1.55fr;
    background: #87358c;
    border-radius: 35px;
    overflow: hidden;
}

.flow-item {
    position: relative;
    min-height: 48px;
    padding: 6px 18px;
    color: var(--white-color);
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-item:not(.last)::after {
    content: "";
    position: absolute;
    right: -13px;
    top: 5px;
    width: 36px;
    height: 36px;
    border-top: 1px solid var(--white-color);
    border-right: 1px solid var(--white-color);
    transform: rotate(45deg);
    z-index: 2;
}

/* ==========================================================================
   CPA TIMELINE SECTION
   ========================================================================== */
.timeline-section {
    background: #f0f0f5;
    padding: 70px 0;
}

.timeline-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 40px 36px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.timeline-heading {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    color: #1e1b4b;
    text-align: center;
    margin-bottom: 28px;
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline-row {
    display: flex;
    align-items: stretch;
    border-radius: 10px;
    overflow: hidden;
    min-height: 52px;
}

.row-left {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    flex: 0 0 72%;
    color: var(--white-color);
}

.row-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.row-icon img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.row-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: pre-line;
}

.row-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 10px 18px;
    background: #f0eeff;
    font-size: 13.5px;
    font-weight: 500;
    color: #1e1b4b;
}

/* ==========================================================================
   TEE CPA / TEEE SECTION
   ========================================================================== */
.teee-area {
    padding-top: 50px;
    padding-bottom: 50px;
}

.hero-mockup-wrapper {
    margin: 40px auto;
    width: 100%;
}

.mockup-container {
    position: relative;
    width: 100%;
}

.image-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.image-frame img {
    width: 80%;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.step-card {
    padding: 40px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
}

.step-icon {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white-color);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--white-color);
    border: 2px solid;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.step-title {
    font-size: 24px;
    font-weight: 800;
    color: #1d2050;
}

.step-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
}

.step-footer {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    margin-top: 15px;
}

/* Step color themes */
.gray-step {
    background-color: #f8f9fa;
    border-color: #eee;
}

.gray-step .step-icon {
    background-color: #4b5563;
}

.gray-step .step-number {
    border-color: #4b5563;
    color: #4b5563;
}

.gray-step .footer-tag {
    color: #4b5563;
}

.orange-step {
    background-color: #fffcf0;
    border-color: #ffeeb3;
}

.orange-step .step-icon {
    background-color: #f39c12;
}

.orange-step .step-number {
    border-color: #f39c12;
    color: #f39c12;
}

.orange-step .footer-tag {
    color: #d35400;
}

.green-step {
    background-color: #f0fff4;
    border-color: #c6f6d5;
}

.green-step .step-icon {
    background-color: #27ae60;
}

.green-step .step-number {
    border-color: #27ae60;
    color: #27ae60;
}

.green-step .footer-tag {
    color: #27ae60;
}

.blue-step {
    background-color: #ebf8ff;
    border-color: #bee3f8;
}

.blue-step .step-icon {
    background-color: #3498db;
}

.blue-step .step-number {
    border-color: #3498db;
    color: #3498db;
}

.blue-step .footer-tag {
    color: #2980b9;
}

/* ==========================================================================
   LMS FEATURES SECTION
   ========================================================================== */
.lms-features-area {
    background-color: #f7f7f9;
    padding-top: 17px;
    padding-bottom: 19px;
}

.section-container {
    padding: 60px 40px;
    border-radius: 24px;
    background-color: #F5F5F7;
}

.feature-card {
    background: var(--white-color);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: left;
    height: 100%;
}

.icon-box {
    width: 48px;
    height: 48px;
    background-color: #8e44ad;
    color: var(--white-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 24px;
}

.feature-content .card-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-content .desc {
    font-size: 14px;
    color: #777;
}

/* ==========================================================================
   FOOTER & COPYRIGHT SECTION
   ========================================================================== */
.footer-warp {
    background: var(--dark-purple);
}

.footer-widget h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white-color);
}

.footer-widget .footer-list li {
    margin-bottom: 12px;
}

.footer-widget .footer-list li a {
    color: #c5c5cf;
    font-size: 14px;
}

.footer-widget .footer-list li a:hover {
    color: var(--gold-accent);
}

.footer-widget .form-control {
    width: 100%;
    height: 60px;
    background: #595970;
    color: #cacad1;
    font-size: 14px;
    padding-left: 20px;
    border-radius: 8px;
    border: none;
    outline: none;
    margin-bottom: 15px;
}

.footer-btn {
    display: block;
    color: var(--gold-accent);
    font-weight: 600;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.footer-btn span {
    position: relative;
    padding-bottom: 3px;
}

.footer-btn span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    width: 0%;
    transition: 0.6s;
    background-color: rgb(252, 100, 65);
}

.footer-btn:hover {
    color: rgb(252, 100, 65);
}

.footer-btn:hover span::before {
    width: 100%;
}

.footer-form {
    margin-bottom: 40px;
}

.company-adrr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
}

.address-item h6 {
    font-size: 15px;
    color: var(--gold-accent) !important;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.address-item p {
    font-size: 13px;
    line-height: 1.6;
    color: #c5c5cf;
}

.social-list {
    display: flex;
    gap: 12px;
}

.social-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-list li a img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.social-list li a:hover {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
}

.footer-apply-btn {
    background: #A13E99;
    border: none;
    border-radius: 6px;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.footer-apply-btn:hover {
    background: #8b2e87;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(161, 62, 153, 0.35);
}

.copy-right-warp {
    background: #862E84;
    padding: 25px 0;
}

.copy-right-content {
    text-align: center;
}

.copy-right-content p {
    color: #b8b8b8;
    font-size: 14px;
}

/* ==========================================================================
   CUSTOM MODALS & PORTALS (APPLY NOW MODAL)
   ========================================================================== */
.custom-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.custom-modal-overlay.show {
    display: flex;
}

.custom-modal-container {
    background: var(--white-color);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: modalScaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScaleUp {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header-box {
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.modal-header-box h3 {
    color: #511970;
    font-size: 1.3rem;
}

.modal-header-box p {
    font-size: 0.9rem;
    color: #777;
    margin-top: 4px;
}

.modal-body-box {
    padding: 20px;
}

.modal-overlay-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #999;
}

.modal-overlay-close:hover {
    color: #333;
}

/* Standard Alert Dialog Popup */
#customAlertPopup {
    z-index: 110000;
}

.alert-icon-box {
    margin-bottom: 15px;
}

.modal-close {
    margin-top: 20px;
    background: #6a1b9a;
    color: var(--white-color);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* ==========================================================================
   PAYMENT STATUS MODAL STYLING
   ========================================================================== */
.payment-status-container {
    max-width: 650px !important;
    padding: 45px 35px !important;
    border-radius: 24px !important;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Success State styling to match the exact shared UI image */
.status-content.status-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.success-icon-wrap {
    width: 76px;
    height: 76px;
    background-color: #388e3c;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 8px 20px rgba(56, 142, 60, 0.35);
}

.success-icon-wrap svg {
    color: #ffffff;
    display: block;
    margin: 0;
}

.payment-success-title {
    color: #2e7d32;
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Work Sans', 'Inter', sans-serif;
}

.payment-success-subtitle {
    color: #555555;
    font-size: 15.5px;
    line-height: 1.5;
    margin-bottom: 24px;
    font-family: 'Work Sans', 'Inter', sans-serif;
}

.payment-txn-box {
    background-color: #f1f9f1;
    border: 1px solid #d0ecd0;
    border-radius: 12px;
    padding: 16px 20px;
    width: 100%;
    margin-bottom: 24px;
    text-align: center;
}

.payment-txn-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #7d8a80;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.payment-txn-id {
    font-size: 15.5px;
    font-weight: 700;
    color: #2e7d32;
    font-family: 'Work Sans', 'Inter', sans-serif;
}

.payment-success-note {
    color: #555555;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.btn-payment-done {
    width: 100%;
    border: none;
    padding: 15px;
    border-radius: 12px;
    background-color: #388e3c;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(56, 142, 60, 0.25);
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.btn-payment-done:hover {
    background-color: #2e7d32;
    box-shadow: 0 8px 20px rgba(56, 142, 60, 0.35);
}

.btn-payment-done:active {
    transform: scale(0.98);
}

/* Processing State styling */
.status-content.status-processing {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.processing-icon-wrap {
    width: 76px;
    height: 76px;
    background-color: #f3e5f5;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.processing-spinner {
    width: 36px;
    height: 36px;
    border: 4px solid rgba(81, 21, 124, 0.1);
    border-top-color: #51157C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.payment-processing-title {
    color: #51157C;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.payment-processing-subtitle {
    color: #555555;
    font-size: 15px;
    margin-bottom: 10px;
}

.payment-processing-note {
    color: #999999;
    font-size: 12px;
}

/* Failed State styling */
.status-content.status-failed {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.failed-icon-wrap {
    width: 76px;
    height: 76px;
    background-color: #ffebee;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.2);
}

.failed-icon-wrap svg {
    color: #e74c3c;
    display: block;
    margin: 0;
}

.payment-failed-title {
    color: #e74c3c;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.payment-failed-subtitle {
    color: #555555;
    font-size: 15px;
    margin-bottom: 20px;
}

.payment-failed-note {
    color: #999999;
    font-size: 12px;
    margin-bottom: 30px;
}

.btn-payment-retry {
    width: 100%;
    border: none;
    padding: 15px;
    border-radius: 12px;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.25);
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.btn-payment-retry:hover {
    background-color: #c0392b;
}

.btn-payment-retry:active {
    transform: scale(0.98);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/*
Footer Warp Style
======================================================*/
.footer-warp {
    background: #3D2C5E;
}

.footer-widget h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-widget .footer-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 10px;
}

.footer-widget .footer-list li {
    position: relative;
    margin-bottom: 8px;
}

.footer-widget .footer-list li:last-child {
    margin-bottom: 0;
}

.footer-widget .footer-list li a {
    color: #c5c5cf;
}

.footer-widget .footer-list li a:hover {
    color: var(--primary);
    letter-spacing: 1px;
}

.footer-widget .form-control {
    height: 70px;
    background: #595970;
    color: #cacad1;
    font-size: 14px;
    padding-left: 20px;
    border-radius: 0;
    border: none;
    transition: 0.6s;
    margin-bottom: 20px;
}

.footer-widget .form-control:focus {
    box-shadow: unset;
}

.footer-widget .form-control:focus::-moz-placeholder {
    color: transparent;
}

.footer-widget .form-control:focus::placeholder {
    color: transparent;
}

.footer-widget .form-control::-moz-placeholder {
    -moz-transition: 0.6s;
    transition: 0.6s;
    color: #cacad1;
}

.footer-widget .form-control::placeholder {
    transition: 0.6s;
    color: #cacad1;
}

.footer-widget .footer-btn {
    display: block;
    color: #f8ca4d;
    font-weight: 600;
    font-family: Work Sans;
    background-color: transparent;
    border: none;
}

.footer-widget .footer-btn:nth-child(3) {
    margin-bottom: 0;
}

.footer-widget .footer-btn i {
    position: relative;
    left: 2px;
    top: 2px;
    font-size: 20px;
}

.footer-widget .footer-btn span {
    position: relative;
}

.footer-widget .footer-btn span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    width: 0%;
    transition: 0.6s;
    background-color: rgb(252, 100, 65);
}

.footer-widget .footer-btn:hover {
    color: rgb(252, 100, 65);
}

.footer-widget .footer-btn:hover span::before {
    width: 100%;
}

.footer-widget .footer-form {
    margin-bottom: 50px;
}

.footer-widget .footer-logos {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-widget .footer-logos li {
    display: inline-block;
    padding-right: 24px;
}

.footer-widget .footer-logos li:last-child {
    padding-right: 0;
}

.col-lg-4:nth-child(4) .footer-widget {
    margin-left: 30px;
}

.col-lg-3:nth-child(2) .footer-widget {
    margin-left: -20px;
}

.col-lg-2:nth-child(3) .footer-widget {
    margin-left: -50px;
}

.copy-right-warp {
    background: #862E84;
    padding-top: 25px;
    padding-bottom: 25px;
}

.copy-right-warp .copy-right-content {
    text-align: center;
}

.copy-right-warp .copy-right-content p {
    color: #b8b8b8;
    font-weight: 400;
}

.copy-right-warp .copy-right-content p a {
    color: var(--white);
    font-weight: 700;
}

.copy-right-warp .copy-right-content p span {
    color: var(--white);
    font-weight: 700;
}