/* =====================================
   GLOBAL BASE STYLES
===================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root{
  --bg-color: #000000;
  --second-color: #FF0000;
}

body{
  background-color: #000;
  color: #fff;
}

a{
  text-decoration: none;
  color: white;
  font-weight: 500;
}

ul{
  list-style: none;
}

/* =====================================
   WHATSAPP BUTTON
===================================== */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 0 15px rgba(0,255,0,0.4);
    transition: .3s;
    z-index: 99999;
}

.whatsapp-float:hover {
    transform: scale(1.12);
}

/* =====================================
   CALL ICON
===================================== */
.call-container{
    position: fixed;
    top: 14px;
    right: 25px;
    z-index: 99999;
}

.call-icon{
    width: 40px;
    height: 40px;
    background: red;
    color: black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}

.call-icon:hover{
    transform: scale(1.12);
}

.call-dropdown{
    position: absolute;
    background: #0d0d0d;
    padding: 15px 18px;
    border-radius: 6px;
    border-top: 2px solid red;
    border: 1px solid #333;
    top: 60px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .35s;
}

.call-container:hover .call-dropdown{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.call-option{
    display: flex;
    gap: 10px;
    color: white;
    padding: 6px 0;
}

.call-option i{
    color: red;
}

.call-option:hover{
    color: red;
}

/* =====================================
   HERO SECTION
===================================== */
#page1{
    height: 100vh;
    padding: 80px 8vw 0 8vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-container{
    max-width: 1500px;
    width: 100%;
}

.hero{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.hero-left{
    flex: 1;
}

.hero-left h1{
    font-size: clamp(2.5rem, 5vw, 6rem);
    font-weight: 900;
    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;
    line-height: 1.7;
    color: #ddd;
    text-align: justify;
    margin-bottom: 25px;
}

.hero-buttons{
    display: flex;
    gap: 20px;
}

.hero-btn-primary{
    background: red;
    color: black;
    padding: 14px 32px;
    border-radius: 30px;
}

.hero-btn-secondary{
    border: 2px solid red;
    background: transparent;
    padding: 14px 32px;
    color: white;
    border-radius: 30px;
    transition: .3s;
}

.hero-btn-secondary:hover{
    background: red;
    color: black;
}

.hero-right img{
    width: 100%;
    max-width: 520px;
    animation: floatImg 4s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(255,0,0,.3));
}

@keyframes floatImg{
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media(max-width:900px){
    .hero{
        flex-direction: column;
        text-align: center;
    }
}

/* =====================================
   INTRO SECTION
===================================== */
.va-intro{
    padding: 80px 8vw;
}

.va-container{
    max-width: 1200px;
    margin: 0 auto;
}

.va-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.va-left, .va-right{
    flex: 0 0 48%;
}

.va-left img{
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(255,0,0,.18);
}

.va-right h2{
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.va-right h2 span{
    color: var(--second-color);
}

.va-right p{
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 14px;
}

@media(max-width:900px){
    .va-content{ flex-direction: column; }
}

/* =====================================
   WHAT STUDENTS RECEIVE
===================================== */
.va-services{
    padding: 90px 8vw;
    text-align: center;
}

.va-services-title{
    font-size: 2.6rem;
    font-weight: 800;
}

.va-services-title span{
    color: var(--second-color);
}

.va-services-subtitle{
    color: #ccc;
    margin-bottom: 50px;
}

.va-services-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

.va-service-card{
    background: #111;
    border: 1px solid #222;
    padding: 35px 25px;
    border-radius: 18px;
    transition: .3s;
}

.va-service-card i{
    font-size: 2.8rem;
    color: var(--second-color);
    margin-bottom: 15px;
}

.va-service-card h3{
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.va-service-card:hover{
    transform: translateY(-8px);
    border-color: var(--second-color);
    box-shadow: 0 0 25px rgba(255,0,0,.4);
}

@media(max-width:900px){
    .va-services-grid{ grid-template-columns: repeat(2,1fr); }
}

@media(max-width:600px){
    .va-services-grid{ grid-template-columns: 1fr; }
}

/* =====================================
   8-WEEK PROCESS
===================================== */
.va-process{
    padding: 90px 8vw;
    text-align: center;
}

.va-process-title{
    font-size: 2.6rem;
    font-weight: 800;
}

.va-process-title span{
    color: var(--second-color);
}

.va-process-subtitle{
    max-width: 850px;
    margin: 0 auto 40px auto;
    color: #ccc;
    line-height: 1.6;
}

.va-process-steps{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 25px;
}

.step-box{
    background: #0d0d0d;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    transition: .3s;
}

.step-box:hover{
    transform: translateY(-8px);
    border-color: red;
}

.step-number{
    font-size: 2rem;
    font-weight: 700;
    color: red;
    margin-bottom: 10px;
}

/* =====================================
   TOOLS SLIDER
===================================== */
.va-tools{
    padding: 90px 8vw;
    text-align: center;
}

.va-tools-title{
    font-size: 2.6rem;
    font-weight: 800;
}

.va-tools-title span{
    color: var(--second-color);
}

.va-tools-subtitle{
    max-width: 750px;
    margin: 0 auto 50px auto;
    color: #ccc;
}

.va-tools-slider{
    overflow: hidden;
}

.va-tools-track{
    display: flex;
    gap: 40px;
    animation: toolSlide 25s linear infinite;
}

@keyframes toolSlide{
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.va-tool-box{
    background: #0d0d0d;
    padding: 25px 30px;
    min-width: 180px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    transition: .3s;
}

.va-tool-box img{
    width: 65px;
    filter: drop-shadow(0 0 12px rgba(255,0,0,.4));
}

/*.va-tool-box:hover{
    transform: translateY(-6px);
    border-color: red;
    box-shadow: 0 0 25px rgba(255,0,0,.4);
} */

/* =====================================
   FAQ SECTION
===================================== */
.va-faq{
    padding: 90px 8vw;
}

.va-faq-title{
    font-size: 2.6rem;
    font-weight: 800;
    text-align: center;
}

.va-faq-title span{
    color: var(--second-color);
}

.va-faq-subtitle{
    max-width: 850px;
    text-align: center;
    color: #ccc;
    margin: 10px auto 40px auto;
}

.va-faq-container{
    max-width: 900px;
    margin: 0 auto;
}

.va-faq-item{
    margin-bottom: 18px;
}

.va-faq-question{
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    transition: .3s;
}

.va-faq-question:hover{
    border-color: var(--second-color);
}

.va-faq-answer{
    display: none;
    background: #111;
    padding: 14px 18px;
    border-left: 3px solid red;
    border-radius: 8px;
    margin-top: 6px;
}

.va-faq-answer.open{
    display: block;
}

.va-faq-arrow{
    font-size: 1.4rem;
    color: red;
    font-weight: bold;
}

/* ===============================
   NAVBAR — DSS EXACT
================================ */

:root{
    --nav-height: 115px;
    --second-color: #ff0000;
}

/* NAV BAR */
nav.nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10.4vw;
    z-index: 99999;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* BRAND */
.brand-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-desktop,
.logo-mobile{
    color: white;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.red{
    color: var(--second-color);
}

/* RED LINE UNDER HEADING */
.brand-line{
    width: 100%;
    height: 3px;
    background: var(--second-color);
    border-radius: 2px;
    margin-top: 4px;
}

/* DESKTOP MENU */
.nav-main-menu{
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
}

.nav-link{
    color: white;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover{
    color: var(--second-color);
}

/* SIGN IN BUTTON */
.nav .btn{
    background: var(--second-color);
    color: #000;
    padding: 10px 26px;
    border-radius: 30px;
    font-size: 15px;
    border: 2px solid var(--second-color);
    box-shadow: 0 0 12px rgba(255,0,0,0.45);
    transition: 0.3s;
}

.nav .btn:hover{
    background: #000;
    color: white;
    box-shadow: 0 0 18px rgba(255,0,0,0.7);
    transform: translateY(-2px);
}

/* HAMBURGER */
.mobile-menu-icon{
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

/* ===============================
   MOBILE MENU
================================ */

.mobile-menu{
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: #000;
    padding: 28px 22px 40px;
    border-top: 2px solid var(--second-color);
    z-index: 99998;
    overflow-y: auto;
}

/* SHOW MENU */
.mobile-menu.active{
    display: block;
}

/* MOBILE HEADING */
.mobile-heading{
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.mobile-heading .red{
    color: var(--second-color);
}

/* RED LINE */
.mobile-heading-line{
    width: 220px;
    height: 3px;
    background: var(--second-color);
    border-radius: 3px;
    margin-bottom: 22px;
}

/* MOBILE LINKS */
.mobile-menu ul{
    list-style: none;
    padding: 0;
}

.mobile-menu ul li{
    margin-bottom: 26px;
}

.mobile-menu ul li a{
    color: white;
    font-size: 18px;
    font-weight: 500;
}

/* MOBILE SIGN IN BUTTON */
.mobile-menu .btn{
    width: 100%;
    margin-top: 42px;
    padding: 18px 0;
    border-radius: 40px;
    font-size: 17px;
    font-weight: 600;
    background: var(--second-color);
    color: #000;
    box-shadow: 0 0 18px rgba(255,0,0,0.6);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px){

    .nav-main-menu,
    .desktop-btn{
        display: none;
    }

    .mobile-menu-icon{
        display: block;
    }

    .logo-desktop{
        display: none;
    }

    .logo-mobile{
        display: block;
    }

    nav.nav{
        padding: 0 20px;
    }
}

@media (min-width: 901px){

    .logo-mobile{
        display: none;
    }
}

/* =========================================
   MOBILE VIEW — SIGN IN BUTTON FIX
========================================= */
@media (max-width: 900px) {

    /* Mobile Sign In button */
    .mobile-menu .btn {
        display: flex;
        justify-content: center;   /* horizontal center */
        align-items: center;       /* vertical center */
        text-align: center;
        color: #ffffff !important; /* WHITE TEXT */
        font-weight: 600;
        line-height: 1;
    }

    /* Ensure icon aligns properly if added later */
    .mobile-menu .btn i {
        margin-left: 8px;
        color: #ffffff;
    }
}

/* =========================================
   HERO SECTION — EXACT REFERENCE BEHAVIOR
========================================= */

/* DESKTOP DEFAULT */
#page1 {
    min-height: 100vh;
    padding-top: var(--nav-height);
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT CONTENT */
.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: clamp(2.6rem, 5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 22px;
}

.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;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 30px;
    text-align: justify;
}

/* BUTTONS — BOTH RED */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-btn-primary,
.hero-btn-secondary {
    background: var(--second-color);
    color: #000;
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    box-shadow: 0 0 18px rgba(255,0,0,0.5);
    transition: 0.3s ease;
}

.hero-btn-primary:hover,
.hero-btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* RIGHT IMAGE */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-right img {
    width: 100%;
    max-width: 520px;
    filter: drop-shadow(0 0 25px rgba(255,0,0,0.35));
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* =========================================
   MOBILE — EXACT REFERENCE ORDER
========================================= */
@media (max-width: 900px) {

    #page1 {
        min-height: auto;
        padding: calc(var(--nav-height) + 30px) 0 80px;
    }

    .hero {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    /* IMAGE FIRST (REFERENCE) */
    .hero-right {
        order: 1;
    }

    /* TEXT SECOND */
    .hero-left {
        order: 2;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .hero-left p {
        max-width: 95%;
        margin: 0 auto 28px;
        text-align: justify;
    }

    /* BUTTONS STACKED */
    .hero-buttons {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .hero-right img {
        max-width: 360px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-right img {
        max-width: 300px;
    }
}

/* =========================================
   INTRO SECTION — EXACT REFERENCE
========================================= */

/* DESKTOP DEFAULT */
.va-intro {
    padding: 90px 8vw;
}

.va-container {
    max-width: 1200px;
    margin: 0 auto;
}

.va-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.va-left,
.va-right {
    flex: 0 0 48%;
}

/* IMAGE */
.va-left img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(255,0,0,0.18);
}

/* TEXT */
.va-right h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.va-right h2 span {
    color: var(--second-color);
}

.va-right p {
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 14px;
    text-align: justify;
}

/* =========================================
   MOBILE — EXACT REFERENCE ORDER
========================================= */
@media (max-width: 900px) {

    .va-intro {
        padding: 70px 20px;
    }

    .va-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    /* IMAGE FIRST */
    .va-left {
        order: 1;
    }

    /* TEXT SECOND */
    .va-right {
        order: 2;
    }

    .va-right h2 {
        font-size: 2rem;
    }

    .va-right p {
        max-width: 95%;
        margin: 0 auto 14px;
        text-align: justify;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .va-right h2 {
        font-size: 1.8rem;
    }
}

/* =========================================
   8 WEEKS PROCESS — DESKTOP (DEFAULT)
========================================= */

.va-process {
    padding: 90px 8vw;
    text-align: center;
    background: #000;
}

.va-process-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.va-process-title span {
    color: var(--second-color);
    text-shadow: 0 0 12px rgba(255,0,0,0.45);
}

.va-process-subtitle {
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #ccc;
    line-height: 1.6;
}

/* GRID */
.va-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.step-box {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 28px 24px;
    border-radius: 12px;
    transition: 0.3s ease;
    text-align: left;
}

.step-box:hover {
    transform: translateY(-8px);
    border-color: var(--second-color);
    box-shadow: 0 0 22px rgba(255,0,0,0.3);
}

/* NUMBER */
.step-number {
    display: inline-block;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--second-color);
    margin-bottom: 10px;
}

/* TITLE */
.step-box h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
}

/* TEXT */
.step-box p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.55;
}

/* =========================================
   TABLET VIEW (REFERENCE)
========================================= */
@media (max-width: 1200px) {

    .va-process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {

    .va-process {
        padding: 70px 20px;
    }

    .va-process-title {
        font-size: 2.2rem;
    }

    .va-process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .step-box {
        text-align: center;
    }
}

/* =========================================
   MOBILE VIEW (EXACT DSS STYLE)
========================================= */
@media (max-width: 600px) {

    .va-process-title {
        font-size: 1.9rem;
    }

    .va-process-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .va-process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-box {
        padding: 26px 22px;
    }

    .step-number {
        font-size: 1.8rem;
    }

    .step-box h3 {
        font-size: 1.1rem;
    }

    .step-box p {
        font-size: 0.95rem;
        text-align: justify;
    }
}

/* =========================================
   WHAT STUDENTS RECEIVE — DESKTOP
========================================= */

.va-services {
    padding: 90px 8vw;
    background: #000;
    text-align: center;
}

.va-services-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.va-services-title span {
    color: var(--second-color);
    text-shadow: 0 0 12px rgba(255,0,0,0.45);
}

.va-services-subtitle {
    color: #ccc;
    margin-bottom: 50px;
}

/* GRID */
.va-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.va-service-card {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 35px 28px;
    border-radius: 14px;
    transition: 0.3s ease;
}

.va-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--second-color);
    box-shadow: 0 0 25px rgba(255,0,0,0.35);
}

/* ICON */
.va-service-card i {
    font-size: 2.6rem;
    color: var(--second-color);
    margin-bottom: 16px;
}

/* TITLE */
.va-service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

/* TEXT */
.va-service-card p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.55;
}

/* =========================================
   TABLET VIEW
========================================= */
@media (max-width: 1100px) {

    .va-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }
}

/* =========================================
   MOBILE VIEW (REFERENCE)
========================================= */
@media (max-width: 600px) {

    .va-services {
        padding: 70px 20px;
    }

    .va-services-title {
        font-size: 2rem;
    }

    .va-services-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .va-services-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .va-service-card {
        padding: 30px 24px;
    }

    .va-service-card p {
        text-align: justify;
    }
}

/* =========================================
   DESKTOP NAV SPACING — 8 WEEKS (SAME FIX)
========================================= */
@media (min-width: 901px) {

    /* Navbar alignment */
    nav.nav {
        display: flex;
        align-items: center;
    }

    /* Gap between BRAND and MENU */
    nav.nav .nav-main-menu {
        display: flex !important;
        align-items: center;
        margin-left: 60px !important;
    }

    /* Space between Home / About / Contact */
    nav.nav .nav-main-menu > li {
        margin-right: 36px !important;
    }

    /* Space between Contact and Sign In */
    nav.nav .desktop-btn {
        margin-left: 40px !important;
    }
}

/* 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;
}

/* =========================================
   MOBILE ONLY: Buy button inside hamburger
   ========================================= */
@media (max-width: 768px) {

    /* Hide Buy Now button from navbar */
    .nav .buy-link {
        display: none;
    }

    /* Show Buy Now button inside mobile menu */
    .mobile-menu .buy-link {
        display: block;
        margin-top: 15px;
    }

    .mobile-menu .buy-btn {
        width: 100%;
    }
}
