/* ===========================
   GLOBAL RESET
=========================== */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root{
  --bg-color: #000;
  --second-color: #FF0000;
}

body{
  background: #000;
  color: #fff;
}

/* ===========================
   HERO SECTION
=========================== */

#page1{
    height: 100vh;
    width: 100%;
    padding: 0 8vw;
    padding-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-container{
    max-width: 1500px;
    width: 100%;
    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;
}

.hero-left h1 span{
    color: var(--second-color);
    text-shadow: 0 0 15px rgba(255,0,0,0.6);
}

.hero-left p{
    max-width: 600px;
    margin-top: 20px;
    line-height: 1.7;
    opacity: .85;
    text-align: justify;
}

.hero-buttons{
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.hero-btn-primary{
    background: var(--second-color);
    padding: 14px 32px;
    border-radius: 30px;
    color: #000;
    font-size: 16px;
    box-shadow: 0 0 22px rgba(255,0,0,0.5);
}

.hero-btn-secondary{
    background: transparent;
    border: 2px solid var(--second-color);
    padding: 14px 32px;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    transition: .3s;
}

.hero-btn-secondary:hover{
    background: var(--second-color);
    color: #000;
}

.hero-right img{
    max-width: 480px;
    width: 100%;
    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: 330px;
    }
}


/* ===========================
   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: .35;
}

@keyframes gridMove{
    0%{ transform: translateY(0);}
    100%{ transform: translateY(-120px);}
}

.fs-container{
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
}

.fs-title{
    font-size: 2.8rem;
    text-align: center;
    font-weight: 800;
}

.fs-title span{
    color: var(--second-color);
    text-shadow: 0 0 12px rgba(255,0,0,0.6);
}

.fs-subtitle{
    max-width: 850px;
    margin: 20px auto 40px auto;
    text-align: center;
    line-height: 1.7;
    opacity: .85;
}

.fs-features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 30px;
}

.fs-card{
    background: #0d0d0d;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    transition: .3s;
}

.fs-card:hover{
    border-color: var(--second-color);
    transform: translateY(-6px);
}

.fs-card i{
    font-size: 40px;
    color: var(--second-color);
}

.fs-card p{
    margin-top: 10px;
    opacity: .85;
    text-align: justify;
}

.fs-buttons{
    margin-top: 40px;
    text-align: center;
}

.fs-btn-main{
    background: var(--second-color);
    color: #000;
    padding: 14px 35px;
    border-radius: 30px;
}

.fs-btn-outline{
    border: 2px solid var(--second-color);
    background: transparent;
    padding: 14px 35px;
    border-radius: 30px;
    color: #fff;
    margin-left: 10px;
    transition: .3s;
}

.fs-btn-outline:hover{
    background: var(--second-color);
    color: #000;
}


/* ===========================
   CURRICULUM SECTION
=========================== */

.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{
    max-width: 850px;
    margin: 20px auto 60px auto;
    text-align: center;
    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: .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 SECTION
=========================== */

.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{
    max-width: 780px;
    margin: 20px auto 50px auto;
    opacity: .85;
}

.fs-tools-slider{
    overflow: hidden;
    width: 100%;
}

.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: 25px;
    border-radius: 12px;
    min-width: 180px;
    border: 1px solid #1a1a1a;
}

.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;
    text-align: center;
    font-weight: 800;
}

.fs-process-title span{
    color: var(--second-color);
}

.fs-process-subtitle{
    max-width: 850px;
    margin: 20px auto 55px auto;
    text-align: center;
    opacity: .85;
}

.fs-process-steps{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 35px;
}

.step-box{
    background: #0d0d0d;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    transition: .3s;
}

.step-box:hover{
    border-color: var(--second-color);
    transform: translateY(-6px);
}

.step-number{
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--second-color);
}


/* ===========================
   FAQ SECTION
=========================== */

.fs-faq{
    padding: 90px 8vw;
}

.fs-faq-title{
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
}

.fs-faq-title span{
    color: var(--second-color);
}

.fs-faq-subtitle{
    max-width: 850px;
    margin: 20px auto 50px auto;
    text-align: center;
    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;
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    color: #fff;
}

.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 HEADINGS
=========================== */

@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: 230px;
    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: 240px;
    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%;
    background: #000;
}

.hero-container{
    max-width: 1200px;
    margin: auto;
    padding: 120px 6vw;
}

.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, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.hero-left h1 span{
    color: #ff0000;
}

.hero-left p{
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-btn-primary{
    background: #ff0000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.hero-btn-secondary{
    background: transparent;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid #ff0000;
    font-weight: 600;
    cursor: pointer;
}

/* RIGHT IMAGE */
.hero-right{
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-right img{
    max-width: 100%;
    width: 420px;
    height: auto;
    border-radius: 16px;
}

/* =========================
   TABLET (≤ 900px)
========================= */
@media (max-width: 900px){

    .hero{
        flex-direction: column;
        text-align: center;
    }

    .hero-left p{
        margin: 0 auto 30px;
    }

    .hero-buttons{
        justify-content: center;
    }

    .hero-right img{
        width: 360px;
    }
}

/* =========================
   MOBILE (≤ 480px)
========================= */
@media (max-width: 480px){

    .hero-container{
        padding: 90px 18px;
    }

    .hero-left h1{
        font-size: 2rem;
    }

    .hero-left p{
        font-size: 0.95rem;
    }

    .hero-buttons{
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons button{
        width: 100%;
    }

    .hero-right img{
        width: 100%;
        max-width: 300px;
    }
}

/* ===============================
   INTRO SECTION (FS-INTRO)
================================ */

.fs-intro{
    position: relative;
    background: #000;
    padding: 100px 6vw;
    overflow: hidden;
}

/* Optional subtle grid */
.grid-overlay{
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
        rgba(255,255,255,0.03) 1px,
        transparent 1px
    ),
    linear-gradient(
        90deg,
        rgba(255,255,255,0.03) 1px,
        transparent 1px
    );
    background-size: 40px 40px;
    pointer-events: none;
}

.fs-container{
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* TITLE */
.fs-title{
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.fs-title span{
    color: #ff0000;
}

/* SUBTITLE */
.fs-subtitle{
    max-width: 780px;
    margin: 0 auto 60px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cfcfcf;
}

/* FEATURES GRID */
.fs-features{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.fs-card{
    background: #0c0c0c;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 36px 26px;
    transition: all 0.3s ease;
}

.fs-card i{
    font-size: 32px;
    color: #ff0000;
    margin-bottom: 18px;
}

.fs-card h3{
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.fs-card p{
    color: #bdbdbd;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* HOVER EFFECT */
.fs-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(255,0,0,0.15);
    border-color: rgba(255,0,0,0.4);
}

/* BUTTONS */
.fs-buttons{
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.fs-btn-main{
    background: #ff0000;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.fs-btn-outline{
    background: transparent;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid #ff0000;
    cursor: pointer;
}

/* ===============================
   TABLET (≤ 900px)
================================ */
@media (max-width: 900px){

    .fs-features{
        grid-template-columns: repeat(2, 1fr);
    }

    .fs-subtitle{
        font-size: 1rem;
    }
}

/* ===============================
   MOBILE (≤ 480px)
================================ */
@media (max-width: 480px){

    .fs-intro{
        padding: 80px 18px;
    }

    .fs-features{
        grid-template-columns: 1fr;
    }

    .fs-card{
        padding: 30px 22px;
    }

    .fs-buttons{
        flex-direction: column;
        width: 100%;
    }

    .fs-buttons button{
        width: 100%;
    }
}

/* ===============================
   SERVICES / CURRICULUM SECTION
================================ */

.fs-services{
    background: #000;
    padding: 100px 6vw;
    text-align: center;
}

/* TITLE */
.fs-services-title{
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.fs-services-title span{
    color: #ff0000;
}

/* SUBTITLE */
.fs-services-subtitle{
    max-width: 800px;
    margin: 0 auto 60px;
    color: #cfcfcf;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* GRID */
.fs-services-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.fs-service-box{
    background: #0c0c0c;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 38px 28px;
    transition: all 0.35s ease;
    text-align: left;
    position: relative;
}

/* ICON */
.fs-service-box i{
    font-size: 34px;
    color: #ff0000;
    margin-bottom: 18px;
    display: block;
}

/* HEADING */
.fs-service-box h3{
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

/* TEXT */
.fs-service-box p{
    color: #bdbdbd;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* HOVER EFFECT */
.fs-service-box:hover{
    transform: translateY(-10px);
    border-color: rgba(255,0,0,0.5);
    box-shadow: 0 0 28px rgba(255,0,0,0.18);
}

/* ===============================
   TABLET (≤ 900px)
================================ */
@media (max-width: 900px){

    .fs-services-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .fs-services-subtitle{
        font-size: 1rem;
    }
}

/* ===============================
   MOBILE (≤ 480px)
================================ */
@media (max-width: 480px){

    .fs-services{
        padding: 80px 18px;
    }

    .fs-services-grid{
        grid-template-columns: 1fr;
    }

    .fs-service-box{
        padding: 30px 22px;
    }
}

/* ===============================
   COURSE DETAILS / PROCESS
================================ */

.fs-process{
    background: #000;
    padding: 100px 6vw;
    text-align: center;
}

/* TITLE */
.fs-process-title{
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.fs-process-title span{
    color: #ff0000;
}

/* SUBTITLE */
.fs-process-subtitle{
    max-width: 820px;
    margin: 0 auto 60px;
    color: #cfcfcf;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* GRID */
.fs-process-steps{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* STEP CARD */
.step-box{
    background: #0c0c0c;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 36px 26px;
    transition: all 0.35s ease;
    position: relative;
}

/* STEP LABEL */
.step-number{
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ff0000;
    border: 1px solid rgba(255,0,0,0.4);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

/* HEADING */
.step-box h3{
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

/* TEXT */
.step-box p{
    font-size: 0.95rem;
    color: #bdbdbd;
    line-height: 1.6;
}

/* HOVER EFFECT */
.step-box:hover{
    transform: translateY(-10px);
    border-color: rgba(255,0,0,0.5);
    box-shadow: 0 0 30px rgba(255,0,0,0.2);
}

/* ===============================
   TABLET (≤ 900px)
================================ */
@media (max-width: 900px){

    .fs-process-steps{
        grid-template-columns: repeat(2, 1fr);
    }

    .fs-process-subtitle{
        font-size: 1rem;
    }
}

/* ===============================
   MOBILE (≤ 480px)
================================ */
@media (max-width: 480px){

    .fs-process{
        padding: 80px 18px;
    }

    .fs-process-steps{
        grid-template-columns: 1fr;
    }

    .step-box{
        padding: 30px 22px;
    }
}

/* ===============================
   FAQ SECTION
================================ */

.fs-faq{
    background: #000;
    padding: 100px 6vw;
}

/* TITLE */
.fs-faq-title{
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.fs-faq-title span{
    color: #ff0000;
}

/* SUBTITLE */
.fs-faq-subtitle{
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
    color: #cfcfcf;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* CONTAINER */
.fs-faq-container{
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* FAQ ITEM */
.faq-item{
    background: #0c0c0c;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* QUESTION */
.faq-question{
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 22px 26px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

/* ARROW */
.faq-question .arrow{
    font-size: 1.4rem;
    color: #ff0000;
    transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer{
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    font-size: 0.95rem;
    color: #bdbdbd;
    line-height: 1.7;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

/* OPEN STATE */
.faq-answer.open{
    max-height: 300px;
    padding: 18px 26px 24px;
}

/* OPTIONAL HOVER */
.faq-item:hover{
    border-color: rgba(255,0,0,0.4);
}

/* ===============================
   TABLET (≤ 768px)
================================ */
@media (max-width: 768px){

    .fs-faq{
        padding: 80px 5vw;
    }

    .faq-question{
        font-size: 1rem;
        padding: 20px 22px;
    }

    .faq-answer{
        font-size: 0.92rem;
    }
}

/* ===============================
   MOBILE (≤ 480px)
================================ */
@media (max-width: 480px){

    .fs-faq{
        padding: 70px 18px;
    }

    .faq-question{
        font-size: 0.95rem;
        padding: 18px 18px;
    }

    .faq-answer.open{
        padding: 16px 18px 20px;
    }
}

/* ===============================
   HERO SECTION
================================ */

#page1{
    width: 100%;
    background: #000;
}

.hero-container{
    max-width: 1300px;
    margin: auto;
    padding: 120px 6vw;
}

.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.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-left h1 span{
    color: #ff0000;
}

.hero-left p{
    max-width: 600px;
    color: #cfcfcf;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 36px;
}

/* BUTTONS */
.hero-buttons{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-btn-primary{
    background: #ff0000;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.hero-btn-secondary{
    background: transparent;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
}

/* RIGHT IMAGE */
.hero-right{
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-right img{
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
}

/* ===============================
   TABLET (≤ 992px)
================================ */

@media (max-width: 992px){

    .hero{
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-left p{
        margin: 0 auto 32px;
    }

    .hero-buttons{
        justify-content: center;
    }

    .hero-right img{
        max-width: 420px;
    }
}

/* ===============================
   MOBILE (≤ 480px)
================================ */

@media (max-width: 480px){

    .hero-container{
        padding: 90px 18px;
    }

    .hero-left h1{
        font-size: 2.1rem;
    }

    .hero-left p{
        font-size: 0.95rem;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
        width: 100%;
        text-align: center;
    }
}

/* ===============================
   INTRO SECTION
================================ */

.fs-intro{
    position: relative;
    width: 100%;
    background: #000;
    padding: 120px 0;
    overflow: hidden;
}

/* Optional grid overlay */
.grid-overlay{
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Container */
.fs-container{
    max-width: 1200px;
    margin: auto;
    padding: 0 6vw;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Title */
.fs-title{
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.fs-title span{
    color: #ff0000;
}

/* Subtitle */
.fs-subtitle{
    max-width: 800px;
    margin: 0 auto 70px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #cfcfcf;
}

/* FEATURES GRID */
.fs-features{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

/* CARD */
.fs-card{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 34px 24px;
    transition: all 0.3s ease;
}

.fs-card:hover{
    transform: translateY(-8px);
    border-color: rgba(255,0,0,0.4);
}

/* ICON */
.fs-card i{
    font-size: 32px;
    color: #ff0000;
    margin-bottom: 18px;
}

/* CARD TITLE */
.fs-card h3{
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

/* CARD TEXT */
.fs-card p{
    color: #cfcfcf;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* BUTTONS */
.fs-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fs-btn-main{
    background: #ff0000;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.fs-btn-outline{
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
}

/* ===============================
   TABLET (≤ 992px)
================================ */

@media (max-width: 992px){

    .fs-features{
        grid-template-columns: repeat(2, 1fr);
    }

    .fs-subtitle{
        font-size: 1rem;
    }
}

/* ===============================
   MOBILE (≤ 480px)
================================ */

@media (max-width: 480px){

    .fs-intro{
        padding: 90px 0;
    }

    .fs-features{
        grid-template-columns: 1fr;
    }

    .fs-card{
        padding: 28px 22px;
    }

    .fs-btn-main,
    .fs-btn-outline{
        width: 100%;
        text-align: center;
    }
}

/* ===============================
   CURRICULUM / SERVICES SECTION
================================ */

.fs-services{
    width: 100%;
    background: #000;
    padding: 120px 0;
}

/* Container behavior (inherits page width) */
.fs-services-title{
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.fs-services-title span{
    color: #ff0000;
}

.fs-services-subtitle{
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #cfcfcf;
}

/* GRID */
.fs-services-grid{
    max-width: 1200px;
    margin: auto;
    padding: 0 6vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.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;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover glow */
.fs-service-box::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,0,0,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fs-service-box:hover::before{
    opacity: 1;
}

.fs-service-box:hover{
    transform: translateY(-8px);
    border-color: rgba(255,0,0,0.5);
}

/* ICON */
.fs-service-box i{
    font-size: 34px;
    color: #ff0000;
    margin-bottom: 18px;
    display: inline-block;
}

/* TITLE */
.fs-service-box h3{
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

/* TEXT */
.fs-service-box p{
    color: #cfcfcf;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===============================
   TABLET (≤ 992px)
================================ */

@media (max-width: 992px){

    .fs-services{
        padding: 100px 0;
    }

    .fs-services-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .fs-services-subtitle{
        font-size: 1rem;
    }
}

/* ===============================
   MOBILE (≤ 480px)
================================ */

@media (max-width: 480px){

    .fs-services{
        padding: 80px 0;
    }

    .fs-services-grid{
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .fs-service-box{
        padding: 28px 22px;
    }

    .fs-service-box i{
        font-size: 30px;
    }
}

/* ===============================
   COURSE DETAILS / PROCESS
================================ */

.fs-process{
    width: 100%;
    background: #000;
    padding: 120px 0;
}

/* TITLE */
.fs-process-title{
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.fs-process-title span{
    color: #ff0000;
}

/* SUBTITLE */
.fs-process-subtitle{
    max-width: 820px;
    margin: 0 auto 70px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #cfcfcf;
}

/* GRID */
.fs-process-steps{
    max-width: 1100px;
    margin: auto;
    padding: 0 6vw;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* STEP CARD */
.step-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;
    position: relative;
    overflow: hidden;
}

/* RED GLOW HOVER */
.step-box::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,0,0,0.18), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-box:hover::before{
    opacity: 1;
}

.step-box:hover{
    transform: translateY(-8px);
    border-color: rgba(255,0,0,0.6);
}

/* LABEL (Duration / Capstone etc.) */
.step-number{
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255,0,0,0.12);
    color: #ff0000;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

/* HEADING */
.step-box h3{
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

/* DESCRIPTION */
.step-box p{
    color: #cfcfcf;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===============================
   TABLET (≤ 992px)
================================ */

@media (max-width: 992px){

    .fs-process{
        padding: 100px 0;
    }

    .fs-process-steps{
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }

    .fs-process-subtitle{
        font-size: 1rem;
    }
}

/* ===============================
   MOBILE (≤ 480px)
================================ */

@media (max-width: 480px){

    .fs-process{
        padding: 80px 0;
    }

    .fs-process-steps{
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .step-box{
        padding: 28px 22px;
    }

    .step-number{
        font-size: 0.72rem;
    }
}

/* 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 SCIENCE 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;
}
