/* ===========================
   GLOBAL + RESET
=========================== */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root{
  --bg-color: #000000;
  --primary-color: #000000;
  --second-color: #FF0000;
  --hover-bg-color: #FF0000;
  --shadow-1: 0px 2px 10px rgba(0, 0, 0, 0.3);
}

body{
  background-color: #000;
  color: #fff;
}

/* ===========================
   HERO SECTION
=========================== */

#page1 {
    height: 100vh;
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8vw;
    padding-top: 80px;
    position: relative;
}

.hero-container {
    width: 100%;
    max-width: 1500px;
    margin: auto;
    padding: 0 40px;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.hero-left h1 {
    font-size: clamp(2.5rem, 5vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-left h1 span {
    color: var(--second-color);
    text-shadow: 0 0 18px rgba(255, 0, 0, 0.6);
}

.hero-left p {
    max-width: 600px;
    text-align: justify;
    opacity: .85;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.hero-btn-primary {
    background: var(--second-color);
    color: #000;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.hero-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid var(--second-color);
    padding: 14px 32px;
    border-radius: 30px;
    transition: 0.3s;
    font-size: 16px;
}

.hero-btn-secondary:hover {
    background: var(--second-color);
    color: #000;
}

.hero-right img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 0 25px rgba(255,0,0,0.3));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0);}
    50% { transform: translateY(-12px);}
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-right img {
        max-width: 340px;
    }
}

/* ===========================
   INTRO SECTION
=========================== */

.fs-intro {
    padding: 100px 8vw;
    position: relative;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,0,0,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,0,0,0.05) 1px, transparent 1px);
    background-size: 55px 55px;
    animation: gridMove 12s linear infinite;
    opacity: 0.35;
}

@keyframes gridMove {
    0% { transform: translateY(0);}
    100% { transform: translateY(-120px);}
}

.fs-container {
    position: relative;
    z-index: 2;
}

.fs-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
}

.fs-title span {
    color: var(--second-color);
    text-shadow: 0 0 12px rgba(255,0,0,0.6);
}

.fs-subtitle {
    margin: 20px auto;
    text-align: center;
    max-width: 850px;
    line-height: 1.7;
    opacity: .85;
}

.fs-features {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
}

.fs-card {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

.fs-card:hover {
    border-color: var(--second-color);
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255,0,0,0.25);
}

.fs-card i {
    font-size: 40px;
    color: var(--second-color);
}

.fs-card p {
    margin-top: 10px;
    opacity: .85;
    text-align: justify;
    font-size: .95rem;
}

.fs-buttons {
    margin-top: 40px;
    text-align: center;
}

.fs-btn-main {
    background: var(--second-color);
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 1rem;
    color: #000;
}

.fs-btn-outline {
    border: 2px solid var(--second-color);
    background: transparent;
    padding: 14px 35px;
    border-radius: 30px;
    margin-left: 15px;
    color: #fff;
    transition: 0.3s;
}

.fs-btn-outline:hover {
    background: var(--second-color);
    color: #000;
}

/* ===========================
   CURRICULUM
=========================== */

.fs-services {
    padding: 90px 8vw;
}

.fs-services-title {
    font-size: 2.6rem;
    text-align: center;
    font-weight: 800;
}

.fs-services-title span {
    color: var(--second-color);
}

.fs-services-subtitle {
    text-align: center;
    max-width: 850px;
    margin: 20px auto 60px auto;
    opacity: .85;
}

.fs-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 35px;
}

.fs-service-box {
    background: #0d0d0d;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    transition: 0.3s;
}

.fs-service-box:hover {
    border-color: var(--second-color);
    transform: translateY(-6px);
}

.fs-service-box i {
    font-size: 40px;
    color: var(--second-color);
}

.fs-service-box p {
    margin-top: 8px;
    opacity: .85;
}

/* ===========================
   TOOLS
=========================== */

.fs-tools {
    padding: 90px 8vw;
    text-align: center;
}

.fs-tools-title {
    font-size: 2.6rem;
    font-weight: 800;
}

.fs-tools-title span {
    color: var(--second-color);
}

.fs-tools-subtitle {
    opacity: .85;
    max-width: 780px;
    margin: 20px auto 50px auto;
}

.fs-tools-slider {
    overflow: hidden;
}

.fs-tools-track {
    display: flex;
    gap: 40px;
    animation: slideTools 22s linear infinite;
}

@keyframes slideTools {
    0% { transform: translateX(0);}
    100% { transform: translateX(-50%);}
}

.fs-tool-box {
    background: #0d0d0d;
    padding: 22px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    text-align: center;
    min-width: 180px;
}

.fs-tool-box img {
    width: 70px;
    filter: drop-shadow(0 0 12px rgba(255,0,0,0.4));
}

/* ===========================
   COURSE DETAILS
=========================== */

.fs-process {
    padding: 90px 8vw;
}

.fs-process-title {
    font-size: 2.6rem;
    font-weight: 800;
    text-align: center;
}

.fs-process-title span {
    color: var(--second-color);
}

.fs-process-subtitle {
    text-align: center;
    max-width: 850px;
    margin: 20px auto 60px auto;
    opacity: .85;
}

.fs-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 35px;
}

.step-box {
    background: #0d0d0d;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    transition: 0.3s;
}

.step-box:hover {
    border-color: var(--second-color);
    transform: translateY(-6px);
}

.step-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--second-color);
}

/* ===========================
   FAQ
=========================== */

.fs-faq {
    padding: 90px 8vw;
}

.fs-faq-title {
    font-size: 2.6rem;
    text-align: center;
    font-weight: 800;
}

.fs-faq-title span {
    color: var(--second-color);
}

.fs-faq-subtitle {
    text-align: center;
    max-width: 850px;
    margin: 20px auto 50px auto;
    opacity: .85;
}

.fs-faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    margin-bottom: 18px;
}

.faq-question {
    width: 100%;
    background: #0d0d0d;
    padding: 16px 20px;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    color: #ffffff !important;   /* TEXT WHITE */
}


.faq-question:hover {
    border-color: var(--second-color);
}

.arrow {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--second-color);
}

.faq-answer {
    display: none;
    background: #111;
    padding: 14px 18px;
    border-left: 3px solid var(--second-color);
    margin-top: 6px;
    border-radius: 8px;
    line-height: 1.6;
}

.faq-answer.open {
    display: block;
}

/* ===========================
   Responsive Titles
=========================== */

@media (max-width: 700px) {
    .fs-title,
    .fs-services-title,
    .fs-tools-title,
    .fs-process-title,
    .fs-faq-title {
        font-size: 2rem;
    }
}

/* COLORS */
.red{ color:#ff0000; }

/* ================= NAV ================= */
.nav{
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6vw;
    z-index: 9999;
}

/* LOGO */
.logo{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}
.desktop-only{ display: inline; }

/* DESKTOP MENU */
.nav-menu{
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-link{
    color: #fff;
    font-size: 15px;
}
.nav-link:hover{ color:#ff0000; }

/* BUTTON */
.btn{
    background:#ff0000;
    color:#000;
    padding:10px 26px;
    border-radius:30px;
    border:none;
    font-weight:600;
    cursor:pointer;
}

/* HAMBURGER */
.mobile-menu-icon{
    display:none;
    font-size:26px;
    color:#fff;
    cursor:pointer;
}

/* ================= MOBILE MENU ================= */
.mobile-menu{
    position: fixed;
    inset: 0;
    background: #000;
    padding: 35px 28px;
    display: none;
    z-index: 9998;
}

.mobile-menu.active{ display:block; }

/* MOBILE BRAND */
.mobile-brand{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
.mobile-brand span{ color:#ff0000; }

.brand-line-mobile{
    width: 220px;
    height: 3px;
    background: #ff0000;
    margin: 8px 0 28px;
}

/* MOBILE TITLE */
.mobile-title{
    font-size: 22px;
    font-weight: 600;
    color:#fff;
}
.mobile-title span{ color:#ff0000; }

.mobile-line{
    width: 230px;
    height: 3px;
    background:#ff0000;
    margin:10px 0 25px;
}

/* LINKS */
.mobile-links{
    list-style:none;
}
.mobile-links li{
    margin-bottom:22px;
}
.mobile-links a{
    color:#fff;
    font-size:17px;
}

/* SIGN IN */
.mobile-signin{
    width:100%;
    height:52px;
    margin-top:30px;
    background:#ff0000;
    color:#fff;
    border:none;
    border-radius:30px;
    font-size:16px;
    font-weight:600;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .nav-menu,
    .desktop-btn,
    .desktop-only{
        display:none;
    }
    .mobile-menu-icon{
        display:block;
    }
}

@media(min-width:901px){
    .mobile-menu,
    .mobile-menu-icon{
        display:none !important;
    }
}

/* ===============================
   HERO SECTION — RESPONSIVE
================================ */

#page1{
    width: 100%;
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
}

.hero-container{
    width: 100%;
    padding: 0 8vw;
}

.hero{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT CONTENT */
.hero-left{
    flex: 1;
}

.hero-left h1{
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-left h1 span{
    color: #ff0000;
    text-shadow: 0 0 15px rgba(255,0,0,0.6);
}

.hero-left p{
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 35px;
}

/* BUTTONS */
.hero-buttons{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-btn-primary{
    background: #ff0000;
    color: #fff;
    padding: 14px 26px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-btn-primary:hover{
    box-shadow: 0 0 25px rgba(255,0,0,0.7);
    transform: translateY(-2px);
}

.hero-btn-secondary{
    background: transparent;
    color: #fff;
    padding: 14px 26px;
    border-radius: 30px;
    border: 1px solid #ff0000;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-btn-secondary:hover{
    background: #ff0000;
    box-shadow: 0 0 25px rgba(255,0,0,0.7);
}

/* RIGHT IMAGE */
.hero-right{
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-right img{
    max-width: 100%;
    width: 460px;
    border-radius: 18px;
    box-shadow: 0 0 40px rgba(255,0,0,0.35);
}

/* ===============================
   TABLET (≤ 900px)
================================ */
@media (max-width: 900px){

    #page1{
        min-height: auto;
        padding: 90px 0;
    }

    .hero{
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-left p{
        margin: 0 auto 35px;
    }

    .hero-buttons{
        justify-content: center;
    }

    .hero-right img{
        width: 360px;
    }
}

/* ===============================
   MOBILE (≤ 480px)
================================ */
@media (max-width: 480px){

    .hero-container{
        padding: 0 18px;
    }

    .hero-left h1{
        font-size: 2.1rem;
    }

    .hero-left p{
        font-size: 0.95rem;
    }

    .hero-right img{
        width: 280px;
    }

    .hero-buttons{
        gap: 14px;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ===============================
   FS INTRO / OVERVIEW SECTION
================================ */

.fs-intro{
    position: relative;
    width: 100%;
    background: #000;
    padding: 120px 0;
    overflow: hidden;
}

/* Optional grid glow overlay */
.grid-overlay{
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,0,0,0.15), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255,0,0,0.12), transparent 45%);
    pointer-events: none;
}

.fs-container{
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 0 6vw;
    text-align: center;
}

/* TITLE */
.fs-title{
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.fs-title span{
    color: #ff0000;
    text-shadow: 0 0 18px rgba(255,0,0,0.6);
}

/* SUBTITLE */
.fs-subtitle{
    max-width: 760px;
    margin: 0 auto 70px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ccc;
}

/* FEATURES GRID */
.fs-features{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.fs-card{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 34px 26px;
    transition: all 0.35s ease;
    backdrop-filter: blur(6px);
}

.fs-card:hover{
    transform: translateY(-10px);
    border-color: rgba(255,0,0,0.6);
    box-shadow: 0 0 30px rgba(255,0,0,0.25);
}

/* ICON */
.fs-card i{
    font-size: 2.2rem;
    color: #ff0000;
    margin-bottom: 18px;
}

/* CARD TITLE */
.fs-card h3{
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
}

/* CARD TEXT */
.fs-card p{
    font-size: 0.95rem;
    line-height: 1.7;
    color: #ccc;
}

/* BUTTONS */
.fs-buttons{
    margin-top: 70px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fs-btn-main{
    background: #ff0000;
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.fs-btn-main:hover{
    box-shadow: 0 0 28px rgba(255,0,0,0.7);
    transform: translateY(-2px);
}

.fs-btn-outline{
    background: transparent;
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid #ff0000;
    cursor: pointer;
    transition: 0.3s ease;
}

.fs-btn-outline:hover{
    background: #ff0000;
    box-shadow: 0 0 28px rgba(255,0,0,0.7);
}

/* ===============================
   TABLET (≤ 992px)
================================ */
@media (max-width: 992px){

    .fs-features{
        grid-template-columns: repeat(2, 1fr);
    }

    .fs-subtitle{
        margin-bottom: 55px;
    }
}

/* ===============================
   MOBILE (≤ 520px)
================================ */
@media (max-width: 520px){

    .fs-intro{
        padding: 90px 0;
    }

    .fs-container{
        padding: 0 18px;
    }

    .fs-features{
        grid-template-columns: 1fr;
    }

    .fs-title{
        font-size: 2rem;
    }

    .fs-subtitle{
        font-size: 0.95rem;
        margin-bottom: 45px;
    }

    .fs-card{
        padding: 30px 22px;
    }

    .fs-buttons{
        gap: 14px;
    }

    .fs-btn-main,
    .fs-btn-outline{
        width: 100%;
        text-align: center;
    }
}

/* ===============================
   FS SERVICES / CURRICULUM
================================ */

.fs-services{
    width: 100%;
    background: #000;
    padding: 120px 0;
}

.fs-services-title{
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.fs-services-title span{
    color: #ff0000;
    text-shadow: 0 0 18px rgba(255,0,0,0.6);
}

.fs-services-subtitle{
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ccc;
}

/* GRID */
.fs-services-grid{
    max-width: 1200px;
    margin: auto;
    padding: 0 6vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* SERVICE BOX */
.fs-service-box{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 34px 26px;
    text-align: center;
    transition: all 0.35s ease;
    backdrop-filter: blur(6px);
}

.fs-service-box:hover{
    transform: translateY(-10px);
    border-color: rgba(255,0,0,0.6);
    box-shadow: 0 0 30px rgba(255,0,0,0.25);
}

/* ICON */
.fs-service-box i{
    font-size: 2.3rem;
    color: #ff0000;
    margin-bottom: 18px;
}

/* TITLE */
.fs-service-box h3{
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

/* TEXT */
.fs-service-box p{
    font-size: 0.95rem;
    line-height: 1.7;
    color: #ccc;
}

/* ===============================
   TABLET (≤ 992px)
================================ */
@media (max-width: 992px){

    .fs-services-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .fs-services-subtitle{
        margin-bottom: 55px;
    }
}

/* ===============================
   MOBILE (≤ 520px)
================================ */
@media (max-width: 520px){

    .fs-services{
        padding: 90px 0;
    }

    .fs-services-grid{
        grid-template-columns: 1fr;
        padding: 0 18px;
    }

    .fs-services-title{
        font-size: 2rem;
    }

    .fs-services-subtitle{
        font-size: 0.95rem;
        margin-bottom: 45px;
    }

    .fs-service-box{
        padding: 30px 22px;
    }
}

/* ===============================
   FS PROCESS / COURSE DETAILS
================================ */

.fs-process{
    width: 100%;
    background: #000;
    padding: 120px 0;
}

.fs-process-title{
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.fs-process-title span{
    color: #ff0000;
    text-shadow: 0 0 18px rgba(255,0,0,0.6);
}

.fs-process-subtitle{
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ccc;
}

/* GRID */
.fs-process-steps{
    max-width: 1200px;
    margin: auto;
    padding: 0 6vw;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* STEP CARD */
.step-box{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 36px 26px;
    text-align: center;
    transition: all 0.35s ease;
    backdrop-filter: blur(6px);
}

.step-box:hover{
    transform: translateY(-10px);
    border-color: rgba(255,0,0,0.6);
    box-shadow: 0 0 30px rgba(255,0,0,0.25);
}

/* BADGE */
.step-number{
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff0000;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

/* TITLE */
.step-box h3{
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

/* TEXT */
.step-box p{
    font-size: 0.95rem;
    line-height: 1.7;
    color: #ccc;
}

/* ===============================
   TABLET (≤ 992px)
================================ */
@media (max-width: 992px){

    .fs-process-steps{
        grid-template-columns: repeat(2, 1fr);
    }

    .fs-process-subtitle{
        margin-bottom: 55px;
    }
}

/* ===============================
   MOBILE (≤ 520px)
================================ */
@media (max-width: 520px){

    .fs-process{
        padding: 90px 0;
    }

    .fs-process-steps{
        grid-template-columns: 1fr;
        padding: 0 18px;
    }

    .fs-process-title{
        font-size: 2rem;
    }

    .fs-process-subtitle{
        font-size: 0.95rem;
        margin-bottom: 45px;
    }

    .step-box{
        padding: 30px 22px;
    }
}

/* ===============================
   FS FAQ SECTION
================================ */

.fs-faq{
    width: 100%;
    background: #000;
    padding: 120px 0;
}

.fs-faq-title{
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.fs-faq-title span{
    color: #ff0000;
    text-shadow: 0 0 18px rgba(255,0,0,0.6);
}

.fs-faq-subtitle{
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ccc;
}

/* FAQ CONTAINER */
.fs-faq-container{
    max-width: 900px;
    margin: auto;
    padding: 0 6vw;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* FAQ ITEM */
.faq-item{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item:hover{
    border-color: rgba(255,0,0,0.5);
}

/* QUESTION */
.faq-question{
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
}

.faq-question .arrow{
    font-size: 1.4rem;
    color: #ff0000;
    transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer{
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #ccc;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

/* OPEN STATE */
.faq-answer.open{
    max-height: 200px;
    padding: 0 24px 20px;
}

/* ===============================
   TABLET (≤ 768px)
================================ */
@media (max-width: 768px){

    .fs-faq-subtitle{
        margin-bottom: 50px;
    }

    .faq-question{
        font-size: 0.95rem;
        padding: 18px 20px;
    }

    .faq-answer{
        font-size: 0.92rem;
    }
}

/* ===============================
   MOBILE (≤ 520px)
================================ */
@media (max-width: 520px){

    .fs-faq{
        padding: 90px 0;
    }

    .fs-faq-title{
        font-size: 2rem;
    }

    .fs-faq-subtitle{
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .fs-faq-container{
        padding: 0 18px;
    }

    .faq-question{
        font-size: 0.9rem;
        padding: 16px 18px;
    }

    .faq-answer{
        font-size: 0.9rem;
    }
}

/* UNIVERSAL BUY NOW BUTTON */
.buy-now-btn {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 12px 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.buy-now-btn i {
    font-size: 14px;
}

/* Hover */
.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,0,0,0.3);
}

/* Desktop */
.desktop-btn {
    min-width: 140px;
}

/* Mobile */
.mobile-btn {
    text-align: center;
    font-size: 15px;
    padding: 14px;
}

/* Prevent link styling issues */
.buy-now-link {
    text-decoration: none;
}

/* ===============================
   COURSE MODAL (GLOBAL)
================================= */
.course-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.course-modal.active {
    display: flex;
}

.course-modal-box {
    background: #0c0c0c;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    border: 1px solid #ff0000;
}

.course-modal-box h3 {
    margin-bottom: 20px;
    color: #fff;
}

.course-modal-box select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background: #000;
    color: #fff;
    border: 1px solid #444;
    border-radius: 6px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* =========================================
   MOBILE BUY NOW FIX – DATA ANALYST COURSE
   (CSS ONLY – NO HTML / JS CHANGES)
========================================= */

/* Hide desktop Buy Now button on mobile */
@media (max-width: 768px) {
    .desktop-btn {
        display: none !important;
    }
}

/* Hide mobile menu by default */
.mobile-menu {
    display: none;
}

/* Show mobile menu only when hamburger is active */
.mobile-menu.active {
    display: block;
}

/* Hide mobile Buy Now everywhere by default */
.mobile-btn {
    display: none;
}

/* Show Buy Now ONLY inside opened hamburger menu */
.mobile-menu.active .mobile-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
}
