/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Sans+3:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('../css/vendor/bootstrap.min.css');
@import url('../css/vendor/fontawesome.css');
@import url('../css/vendor/brands.css');
@import url('../css/vendor/regular.css');
@import url('../css/vendor/solid.css');
@import url('../css/vendor/swiper-bundle.min.css');
/* Regular (400) */
@font-face {
    font-family: 'Sans Mateo';
    src: url('/font/SansMateo2-Regular.woff2') format('woff2'),
         url('/font/SansMateo2-Regular.woff') format('woff');
    font-weight: 400; /* or "normal" */
    font-style: normal;
    font-display: swap; /* optional, but recommended */
  }
html {
  scroll-behavior: smooth;
}

  :root {
    --bs-body-font-size: 1.2rem;
  }
  p {
    text-align: justify;
  }
  /* Italic (400) */
  @font-face {
    font-family: 'Sans Mateo';
    src: url('/font/SansMateo2-Italic.woff2') format('woff2'),
         url('/font/SansMateo2-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }
  
  /* Medium (500) */
  @font-face {
    font-family: 'Sans Mateo';
    src: url('/font/SansMateo2-Medium.woff2') format('woff2'),
         url('/font/SansMateo2-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap; 
  }
  
  /* Medium Italic (500) */
  @font-face {
    font-family: 'Sans Mateo';
    src: url('/font/SansMateo2-MediumItalic.woff2') format('woff2'),
         url('/font/SansMateo2-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap; 
  }
  
  /* SemiBold (600) */
  @font-face {
    font-family: 'Sans Mateo';
    src: url('/font/SansMateo2-SemiBold.woff2') format('woff2'),
         url('/font/SansMateo2-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap; 
  }
  
  /* SemiBold Italic (600) */
  @font-face {
    font-family: 'Sans Mateo';
    src: url('/font/SansMateo2-SemiBoldItalic.woff2') format('woff2'),
         url('/font/SansMateo2-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap; 
  }
  
  /* Bold (700) */
  @font-face {
    font-family: 'Sans Mateo';
    src: url('/font/SansMateo2-Bold.woff2') format('woff2'),
         url('/font/SansMateo2-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap; 
  }
  
  /* Bold Italic (700) */
  @font-face {
    font-family: 'Sans Mateo';
    src: url('/font/SansMateo2-BoldItalic.woff2') format('woff2'),
         url('/font/SansMateo2-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
  }
  
@property --progress {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}

@keyframes load {
    to {
        --progress: var(--value)
    }
}

@keyframes background_animation {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(1, 1, 1);
        transform-origin: center;
        border-width: 0px;
    }

    to {
        opacity: 0;
        transform: scale3d(1.7, 1.7, 1.8);
        transform-origin: center;
        border-width: 13px;
    }
}


:root {
    --dark-bg: #000000;
    --secondary-dark: #1c2326;
    --secondary-color: #21282b;
    --gray-color: #c2c2c2;
    --accent-color: #e12929;
    
    /* Replace the old font references with Sans Mateo */
    --font-1: 'Sans Mateo', sans-serif;
    --font-2: 'Sans Mateo', sans-serif;
  }
  

body {
    font-family: var(--font-2);
    color: white;
    background-color: #1c2326;
    font-weight: 500;
}

h1 {
    font-size: 76px;
}

h2 {
    font-size: 68px;
}

h3 {
    font-size: 48px
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 18px;
}

ul {
    list-style: none;
}

img {
    object-fit: cover;
}

section {
    background-size: cover;
    background-position: center;
}

button {
    padding-inline: 1rem;
    padding-block: 0.5rem;
    text-decoration: none;
    transition: all 0.5s;
}

.button {
    padding-inline: 17px;
    padding-block: 15px;
    text-decoration: none;
    transition: all 0.5s;
    background-color: var(--accent-color);
    border: solid 2px var(--accent-color);
    font-weight: 600;
}

.button-outline,
.button-outline:hover {
    border-width: 1px;
    border-color: currentColor;
    border-style: solid;
}

.button:hover {
    color: white;
    background-color: transparent;
    border: solid 2px var(--accent-color);
}

.hover-transform:hover {
    transform: translateY(-10px);
}

button:hover {
    color: black;
}

a {
    text-decoration: none;
}

.font-1 {
    font-family: var(--font-1);
}

.font-2 {
    font-family: var(--font-2);
}

.ls-2 {
    letter-spacing: 2px;
}

.fs-7 {
    font-size: 0.8rem !important;
}

.fw-black {
    font-weight: 900 !important;
}

.btn-outline {
    background-color: transparent;
    border: solid 1px currentColor !important;
}

.form input,
.form textarea,
.form select {
    background-color: transparent;
    border-radius: 0;
    border: solid 2px var(--accent-color) ;
    color: white;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    box-shadow: none;
    border: solid 2px var(--accent-color) ;

}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--gray-color);
    font-family: var(--font-2);
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="blue" class="bi bi-check-lg" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z"/></svg>');
}

.form input.form-check-input {
    background-color: transparent;
    border: 1px solid gray;
}

.form input.form-check-input:checked {
    border: 1px solid blue;
    color: blue;
}

.form .submit_form {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    background-color:red;
    color: white;
    border-radius: 5px;
    border: solid 2px var(--accent-color);
}
.submit_form {
    background-color:var(--accent-color);}
.submit_form:hover {
    background-color: transparent;
}

.submit_form-subscribe {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    color: white;
    background-color: var(--accent-color-1);
    border-radius: 5px;
}

.submit_form-subscribe:hover {
    background-color: var(--dark-bg);
    color: white;
    filter: none;
}

.maps {
    width: 100%;
    height: 480px;
    transition: filter 0.5s;
}

#header {
    transition: all 0.5s ease;
}

.nav-link {
    border-bottom: 2px solid transparent;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-2);
    padding-block: 1.2rem;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link.active {
    color: var(--accent-color) !important;
}

.navbar-toggler {
    border: none;
    color: var(--accent-color);
}

.navbar-toggler:focus {
    box-shadow: none;
    background-color: transparent;
    color: var(--accent-color);
}

.dropdown-menu {
    background-color: #21282b;
    border-radius: 0;
    border: none;
    padding: 0.75rem;
    width: 200px;
}

.dropdown-item {
    padding-block: 0.75rem;
    color: white;
    font-family: var(--font-2);
    font-size: 0.95rem;
    font-weight: 400;
    padding-inline: 0.75rem;
}

.dropdown-item.active {
    color: white;
    background-color: var(--accent-color);
}

.dropdown-item:hover {
    background-color: var(--accent-color);
    color: white;
}

.dropdown-item:focus {
    color: var(--accent-color);
}

.section {
    padding: 6em 2em 6em 2em;
    overflow: hidden;
}

.r-container {
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
}

.bg-dark-color {
    background-color: var(--dark-bg);
}

.bg-secondary-color {
    background-color: var(--secondary-color);
}

.bg-secondary-dark {
    background-color: var(--secondary-dark);
}

.bg-accent-color {
    background-color: var(--accent-color);
}

.accent-color {
    color: var(--accent-color);
}


.border-accent-color {
    border-color: var(--accent-color) !important;
}

.text-gray {
    color: var(--gray-color) !important;
}

.text-secondary-color {
    color: var(--secondary-color);
}

.bg-accent-color-hover:hover {
    background-color: var(--accent-color);
    color: white;
}

.bg-dark-transparent {
    background-color: #232323b7;
}

.btn-dark {
    background-color: var(--dark-bg);
    color: white;
    border: none;
}

.btn-dark:hover {
    background-color: var(--accent-color-1);
    color: white;
    border: none;
}

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: black;
    opacity: 0.6;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.image-overlay-2 {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: black;
    opacity: 0.3;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(180deg, transparent 0%, #000000 100%);
    opacity: 1;
}

.texture-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-image: url("../image/texture.png");
    background-position: center center;
    background-size: cover;
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.logo-container {
    max-width: 170px;
}

.logo-filter {
    filter: brightness(200%) contrast(0%) saturate(200%) blur(0px) hue-rotate(0deg);
}

.divider {
    display: flex;
    align-items: center;
}

.divider::after {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid #8692af;
    max-width: 30px;
    min-width: 30px;
}


.divider-element {
    letter-spacing: 2px;
    flex-shrink: 0;
    flex-grow: 1;
    margin: 0;
    margin-left: 1rem;
    font-weight: 400;
}

.image-infinite-bg {
    height: 90vh;
}

.animation-bg {
    animation: background_animation 10s forwards;
}

.r-progress {
    --value: 17;
    --progress-color: var(--accent-color);
    --secondary-progress-color: var(--secondary-color);
    --animation-duration: 2000;
}

.r-progress-bar {
    position: relative;
    height: 8px;
    background-color: var(--secondary-progress-color);
    display: flex;
    border-radius: 3px;
}

.r-progress-bar .progress-value {
    height: 100%;
    width: calc(var(--progress) * 1%);
    background-color: var(--progress-color);
    position: relative;
    /* border-radius: 3px; */
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: black;
}

.r-progress-bar.percentage-label::after {
    counter-reset: percentage var(--progress);
    content: counter(percentage) '%';
    display: block;
    position: absolute;
    left: calc((var(--progress) * 1%) - 2rem);
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: var(--accent-color);
    font-size: 14px;
    line-height: 1.2;
    /* font-weight: 700; */
    font-family: var(--font-1);
    top: -1.2rem;
}

.bg-attach-fixed {
    background-attachment: fixed;
}

.social-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.social-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 15px;
    width: 1.8rem;
    height: 1.8rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    color: white;
}

.social-item:hover {
    color: var(--accent-color) !important;
    background-color: white;
}

.share-button {
    background-color: var(--accent-color-1);
    aspect-ratio: 1/1;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.share-button:hover {
    background-color: var(--accent-color);
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    background-color: transparent;
    color: var(--accent-color);
    border: none;
    position: relative;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: white;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    border: none;
}

.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.breadcrumb .breadcrumb-item>a {
    color: var(--accent-color);
}

.breadcrumb .breadcrumb-item.active {
    color: var(--accent-color-1);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--accent-color-1);
}

.swiper-pagination {
    margin-block: 1rem;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: black;
}

.video-container {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.video-iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-btn {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 5rem;
    background-color: transparent;
    border: solid 2px var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 2rem;
}

.video-btn:hover {
    color: var(--accent-color);
}

.border-custom {
    border-width: 0px 1px 0px 0px;
    border-color: var(--accent-color);
    border-style: solid;
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2.5rem;
    aspect-ratio: 1/1;
    width: 4rem;
    height: 4rem;
}

.request-loader {
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50% !important;
    border: solid 2px var(--accent-color);
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 25px;
}

.request-loader:hover {
    border: solid 2px var(--accent-color);
    color: white;
    background-color: transparent;
}


.request-loader::after,
.request-loader::before {
    opacity: 0.2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    color: var(--accent-color);
    border: 4px solid currentColor;
    border-radius: 50%;
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;
}

.request-loader::after {
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.request-loader::before {
    animation-delay: 0.2s;
    animation-duration: 3s;
}

.ifr-video {
    aspect-ratio: 16/9;
    width: 100%;
}

.post-button {
    background-color: transparent;
    color: var(--accent-color) !important;
    border: none !important;
}

.post-button:hover {
    background-color: transparent !important;
    color: var(--accent-color) !important;
    transform: scale(1.15);
}

.card.with-border-bottom {
    border-bottom: 5px solid var(--accent-color) !important;
}

.list-group .list-group-item {
    border: none;
    border-radius: 5px;
}

.list-group .list-group-item.active {
    background-color: var(--accent-color);
}

.list-group .list-group-item.list-group-item-action:hover {
    background-color: var(--accent-color);
    color: white;
}

.accordion-button:not(.collapsed) {
    background-color: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.accordion-button:not(.collapsed):hover {
    color: white;
}


.accordion-button {
    background-color: transparent;
    border-radius: 0px;
    color: white;
    border: 2px solid var(--accent-color);
    font-family: var(--font-2);
    border-radius: 5px;
}

.accordion-button:hover {
    color: var(--accent-color);
}

.accordion-button:focus {
    outline: 0;
    box-shadow: none;
    border: 2px solid var(--accent-color);

}

.accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 1rem;
}

.accordion-button::after {
    filter: invert(1);
}

[data-bs-theme=dark] .accordion-button::after {
    --bs-accordion-btn-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
    --bs-accordion-btn-active-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
}

.outer-margin {
    margin-right: -7rem;
}

.list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.list li {
    padding: 0;
}

.card .link {
    color: white;
    transition: color 0.5s;
}

.card .link:hover {
    color: var(--accent-color);
}

.link.accent-color {
    color: var(--accent-color);
    transition: color 0.5s;
}

.link.accent-color:hover {
    color: var(--dark-bg);
}


.link-white {
    color: white;
}

.link-white:hover {
    color: var(--accent-color);
}

.glass-effect {
    background: #202020b3;
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}

.fs-very-large {
    font-size: 4.125rem;
}

.border-bottom-hover:hover {
    border-bottom: 2px solid var(--accent-color);
}

.testimonial-container {
    background-color: #1c2326b3;
    border-radius: 5px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.rating {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
}

.rating li {
    color: var(--accent-color);
}

.logo-partner {
    filter: brightness(200%) contrast(0%) saturate(0%) blur(0px) hue-rotate(0deg);
    transition-duration: 0.5s;
}

.logo-partner:hover {
    filter: none;
    cursor: pointer;
}

@media only screen and (max-width:993px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 14px;
    }

    h6 {
        font-size: 12px;
    }

    .section {
        padding: 6em 2em 6em 2em;
    }

    .divider {
        width: 330px;
    }

    .fs-very-large {
        font-size: 3.125rem;
    }

    .image-absolute-1 {
        left: 45%;
        top: 35%;
    }

    .image-infinite-bg {
        background-size: cover !important;
    }

    #header {
        background: #202020b3;
        backdrop-filter: blur(11px);
        -webkit-backdrop-filter: blur(11px);
    }

    .border-custom {
        border-width: 0px 0px 1px 0px;
    }

    .outer-margin {
        margin-right: 0;
    }

    .nav-link {
        padding-block: 0.2rem;
    }

    .banner-image {
        margin: 0;
        transform: none;
    }

    .heading {
        margin-top: -40px;
    }

    .testimonial-img {
        margin: 0;
        margin-bottom: 1rem;
    }

    .dropdown-menu {
        width: 100%;
    }
}
.btn.mastering {
    height: auto;
  font-size: 45px;
  width: 100%;
  color: white;
}

/* ==============================================================
   DASHBOARD REVAMP  –– add this AFTER your existing style.css
   ============================================================== */

/* 1. Global helpers
   ------------------------------------------------------------ */
   :root {
    /* A slightly brighter accent just for CTAs inside the dashboard */
    --accent-bright: hsl(0 80% 60%);
  }
  .dashboard-grid {
    display: grid;
    gap: 2rem;
  }
  /* collapse to single-column on tablets / phones  */
  @media (min-width: 992px) { .dashboard-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 575.98px) { .dashboard-grid { gap: 1.25rem; } }
  
  /* 2. Section “cards”
     ------------------------------------------------------------ */
  .section.dashboard-card {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 1rem;
    background: linear-gradient(145deg,#21282b 0%,#1b2023 60%);
    box-shadow:
      0 0.5rem 1.2rem rgba(0,0,0,.35),
      inset 0 0 0 1px rgba(255,255,255,.02);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .section.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 1rem 2rem rgba(0,0,0,.45),
      inset 0 0 0 1px rgba(255,255,255,.05);
  }
  /* out-of-the-box header bar */
  .section.dashboard-card > h2 {
    position: relative;
    font-size: clamp(1.25rem, 2.3vw, 1.9rem);
    margin-bottom: 1.5rem;
    letter-spacing: .5px;
  }
  .section.dashboard-card > h2::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -1.2rem;
    top: 50%;
    transform: translateY(-50%) skewX(-15deg);
    width: 260px;
    height: 105%;
    background: var(--accent-color);
    opacity: .12;
    pointer-events: none;
  }
  
  /* 3. File input → pretty drop zone
     ------------------------------------------------------------ */
  .dashboard-filepicker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 2.2rem 1.5rem;
    border: 2px dashed var(--accent-color);
    border-radius: .75rem;
    cursor: pointer;
    transition: background .3s ease, border-color .3s ease;
    text-align: center;
  }
  .dashboard-filepicker:hover {
    background-color: rgba(255,255,255,.04);
    border-color: var(--accent-bright);
  }
  .dashboard-filepicker input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
  }
  
  /* 4. Action buttons inside dashboard
     ------------------------------------------------------------ */
  .btn-dash {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.4rem;
    font-weight: 600;
    font-family: var(--font-2);
    background: var(--accent-color);
    color: #fff;
    border: 2px solid transparent;
    border-radius: 50rem;
    transition: background .25s, color .25s, transform .25s;
  }
  .btn-dash--secondary {
    background: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
  }
  .btn-dash:hover {
    background: var(--accent-bright);
    transform: translateY(-2px);
  }
  .btn-dash--secondary:hover {
    background: var(--accent-color);
    color: #fff;
  }
  
  /* 5. Jobs list –– modern pill rows
     ------------------------------------------------------------ */
  .job-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem 1.25rem;
    padding: .85rem 1.25rem;
    border-radius: 0.85rem;
    background: #262d30;
    position: relative;
    transition: background .2s ease, transform .2s ease;
    margin: 9px 0;
  }
  .job-row:hover { background:#2c3538; transform: translateY(-2px); }
  .job-row strong { font-weight: 600; color: var(--accent-color); }
  .job-row button { margin-top: 0; }          /* kill legacy margin-top */
  
  .job-meta{
  flex:1 1 100%;
  text-align:center;
  line-height:1.45;
}
.job-buttons{
  flex:1 1 100%;
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
  justify-content:center;
}

/* emphasise the main CTA */
.job-buttons .btn-dash{
  /* looks like .btn-master, just a bit smaller */
  padding:.7rem 2.1rem;
}

/* ghost buttons = border only */
.job-buttons .btn-dash--secondary{
  background:transparent;
  border-color:var(--accent-color);
  color:var(--accent-color);
}
.job-buttons .btn-dash--secondary:hover{
  background:var(--accent-color);
  color:#fff;
}

/* full-width stack on phones */
@media (max-width:575.98px){
  .job-buttons .btn-dash{ width:100%; }
}


  /* Inline status glow */
  .job-row[data-active="true"]::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    padding:1px;             /* trick → outer “glow” border */
    background:linear-gradient(120deg,
                rgba(225,41,41,.6) 0%,
                rgba(225,41,41,.2) 33%,
                transparent 100%);
    -webkit-mask:
       linear-gradient(#000 0 0) content-box,
       linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events:none;
  }
  
  /* 6. Modal polish (only if you use the BS modals already in page)
     ------------------------------------------------------------ */
  .modal-content {
    background:#202427;
    border:1px solid rgba(255,255,255,.04);
    box-shadow:0 1rem 2rem rgba(0,0,0,.6);
    border-radius:1rem;
  }
  .modal-header,
  .modal-footer { border-color: rgba(255,255,255,.07); }
  
  /* 7. Utility: “success / info / error” call-outs
     ------------------------------------------------------------ */
  .info, .success, .error {
    border-radius:.55rem;
    font-size:.925rem;
    line-height:1.45;
    background:#2b3336;
  }
  .info   { border-left-color:#1b95e0; }
  .success{ border-left-color:#53b35e; }
  .error  { border-left-color:#d9534f; }
  
  /* 8. Phone optimisations
     ------------------------------------------------------------ */
  @media (max-width: 575.98px){
    .job-row { font-size: .875rem; }
    .btn-dash { width: 100%; justify-content: center; }
    .job-row button { width: 100%; }
  }
/* ==============================================================
   MUSICAL HERO  –– Upload & Master spotlight
   ============================================================== */

/* put the card on its own row inside .dashboard-grid  */
#uploadSection { grid-column: 1 / -1; }

/* outer “hero” shell */
.upload-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2.25rem;
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: 1.5rem;
  overflow: hidden;
  isolation: isolate;
  background: #1b2023;
  box-shadow: 0 1.2rem 2.5rem rgba(0, 0, 0, .45);
}

/* decorative blurred colour wash – subtle, responsive */
.upload-hero::before,
.upload-hero::after{
  content:"";
  position:absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%,
              hsla(0 80% 60% /.45) 0%,
              transparent 60%),
              radial-gradient(circle at 70% 70%,
              hsla(240 70% 65% /.35) 0%,
              transparent 55%);
  filter: blur(80px);
  z-index:-2;
  animation: heroPulse 18s ease-in-out infinite alternate;
}
@keyframes heroPulse{
  to{ transform: scale(1.25) translate(-8%,6%); }
}

/* vertical equaliser bars */
.equalizer{
  display: flex;
  gap: 5px;
  height: 46px;
}
.equalizer span{
  width: 7px;
  background: var(--accent-color);
  border-radius: 4px;
  animation: eq 1s ease-in-out infinite;
}
@keyframes eq{
  0%,100%{ transform: scaleY(.3); }
  50%     { transform: scaleY(1); }
}
/* stagger each bar */
.equalizer span:nth-child(2){ animation-delay:.1s; }
.equalizer span:nth-child(3){ animation-delay:.2s; }
.equalizer span:nth-child(4){ animation-delay:.3s; }
.equalizer span:nth-child(5){ animation-delay:.4s; }

/* headline + tag-line */
.upload-hero h2{
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin: 0;
  letter-spacing: .5px;
}
.upload-hero .tagline{
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  max-width: 40ch;
  color: var(--gray-color);
  margin: 0;
}

/* drop-zone */
.hero-picker{
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 2.2rem 1.6rem;
  border: 2px dashed var(--accent-color);
  border-radius: .9rem;
  cursor: pointer;
  transition: background .3s, border-color .3s;
}
.hero-picker:hover{
  background: rgba(255,255,255,.05);
  border-color: var(--accent-bright);
}
.hero-picker input[type=file]{
  position:absolute; inset:0; opacity:0; cursor:pointer;
}
.hero-picker i{
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: .5rem;
}

/* big CTA button */
.btn-master{
  display:inline-flex; align-items:center; gap:.65rem;
  padding:.85rem 2.7rem;
  border-radius: 50rem;
  font-size: 1.05rem;
  font-weight: 600;
  background: var(--accent-color);
  color:#fff;
  border:2px solid transparent;
  transition: background .25s, transform .25s;
}
.btn-master:hover{
  background: var(--accent-bright);
  transform: translateY(-3px);
}
.btn-master i{ font-size:1.35em; }
/* visual highlight when file is hovering */
.hero-picker.dragover {
    background: rgba(255,255,255,.09);
    border-style: solid;
    border-color: var(--accent-bright);
  }
  
  /* after file has been chosen */
  .hero-picker.ready {
    background: rgba(83,179,94,.09);          /* soft green aura   */
    border-style: solid;
    border-color: #53b35e;                    /* match success col */
  }
  .hero-picker.ready i { color:#53b35e; }     /* icon turns green  */
  
  /* file-name text */
  .hero-picker .picker-text {
    display:inline-block;
    line-height:1.45;
    font-weight:600;
    margin-top:.25rem;
    transition: color .25s;
  }
  .hero-picker.ready .picker-text { color:#a0ffa9; }
  
  /* disabled CTA */
  .btn-master:disabled{
    opacity:.45;
    cursor: not-allowed;
    transform:none;
  }
footer .img-fluid {
    max-width:200px;
}
@media (min-width: 768px) {
  .listed-on {
    /* turn it into a 2-col grid */
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem !important;          /* adjust spacing between images */
  }

  /* make sure the heading stays full-width */
  .listed-on h5 {
    grid-column: 1 / -1;
  }

  /* images fill their grid cell */
  .listed-on img {
    width: 100%;
    height: auto;
    display: block;
    align-self: center;
  }
}
.anim {
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      min-height: 100vh;
      font-family: sans-serif;
    }

    /* --- single-step container --- */
    #workflow {
      position: relative;
      width: 300px; height: 300px;
      margin-bottom: 40px;
    }

    /* --- card style for steps --- */
    .step-card {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      width: 200px; height: 200px;
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 16px 32px rgba(0,0,0,0.1);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
    }

    .step-card .icon {
      font-size: 3rem;
      margin-bottom: 0.5rem;
    }
    .step-card p {
      font-size: 1.1rem;
      line-height: 1.3;
      font-weight: 600;
      color: var(--accent-color);
    }

    /* --- final grid of all steps --- */
    #all-steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 24px;
      width: 80%; max-width: 800px;
      opacity: 0;
    }
    /* reuse same card style but static positioning */
    #all-steps-grid .step-card {
      position: static; transform: none;
      width: auto; height: auto; padding: 20px;
      background: #fff;
      box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    }
.file-error {
    color: #dc3545;
    margin-top: 8px;
    font-size: 0.9rem;
    display: none;
  }
.hero-picker.error {
    border-color: #dc3545 !important;
  }
  .caccount {
    text-align: center;
  }

ul.mainul {
    padding-left: 0;
  }
ul.mainul li {
    color: var(--gray-color) !important;
    margin-bottom: 9px;
  }
ul.mainul li strong {
    color:white;
}
.fa.fa-heart {
    color:red;
}
.nav-link {
    color:white;
}