/* =====================================
   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; }
}

/* =====================================
   SERVICES / INTERNSHIP PROCESS
===================================== */
.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; }
}

/* =====================================
   WHAT STUDENTS RECEIVE / PROCESS SECTION
===================================== */
.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;
    margin-top: 20px;
}

.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 p{
    margin-top: 10px;
}

.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;
}

/* =====================================
   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; }
}

/* =====================================
   SERVICES / INTERNSHIP PROCESS
===================================== */
.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; }
}

/* =====================================
   WHAT STUDENTS RECEIVE / PROCESS SECTION
===================================== */
.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;
    margin-top: 20px;
}

.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;
    
    /* ⭐ Ensure everything inside aligns properly */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.va-tool-box img{
    width: 65px;
    filter: drop-shadow(0 0 12px rgba(255,0,0,.4));
}

/* ⭐ Ensures ALL tool names align even if text length varies */
.va-tool-box p{
    margin-top: 12px;
    font-size: 1rem;
    height: 40px; /* Adjust height based on your design */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* .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;
}

/* =========================
   DSS NAVBAR (RESPONSIVE)
========================= */

/* NAV BAR */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    padding: 0 10.4vw;
    background: #000;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 99999;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* BRAND */
.nav h1 {
    color: white;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.nav h1 span {
    color: var(--second-color);
}

/* DESKTOP LINKS */
.nav-link {
    color: white;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--second-color);
}

/* DESKTOP MENU ALIGNMENT */
.nav > li {
    list-style: none;
}

/* SIGN IN BUTTON */
.nav .btn {
    background: var(--second-color);
    color: #000;
    border: 2px solid var(--second-color);
    padding: 10px 26px;
    border-radius: 30px;
    font-size: 15px;
    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);
}

/* =========================
   MOBILE HAMBURGER
========================= */
.mobile-menu-icon {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
    margin-left: auto;
}

/* =========================
   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: 20px;
    border-top: 2px solid var(--second-color);
    z-index: 99998;
    overflow-y: auto;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 14px;
}

.mobile-menu a {
    color: white;
    font-size: 18px;
    display: block;
    padding: 10px 0;
    transition: 0.3s;
}

.mobile-menu a:hover {
    color: var(--second-color);
}

/* ACTIVE MOBILE MENU */
.mobile-menu.active {
    display: block;
}

/* =========================
   RESPONSIVE BREAKPOINT
========================= */
@media (max-width: 900px) {

    /* Hide desktop items */
    .nav > li,
    .nav > .btn {
        display: none;
    }

    /* Show hamburger */
    .mobile-menu-icon {
        display: block;
    }

    /* Adjust brand size */
    .nav h1 {
        font-size: 20px;
    }

    /* Reduce padding */
    .nav {
        padding: 0 20px;
    }
}

/* ================================
   MOBILE MENU — STYLE LIKE IMAGE 1
================================ */

/* Mobile menu container */
.mobile-menu {
    position: fixed;
    top: 80px; /* below navbar */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: #000;
    padding: 25px 22px;
    z-index: 99999;
    display: none;
}

/* Show menu */
.mobile-menu.active {
    display: block;
}

/* BRAND TEXT */
.mobile-menu h1,
.mobile-menu h2 {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Red underline under brand */
.mobile-menu .brand-line {
    width: 160px;
    height: 3px;
    background: #ff0000;
    border-radius: 3px;
    margin-bottom: 20px;
}

/* Thin divider */
.mobile-menu::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #ff0000;
    margin-bottom: 25px;
}

/* MENU LIST */
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* MENU ITEMS */
.mobile-menu ul li {
    margin-bottom: 22px;
}

/* LINKS */
.mobile-menu ul li a {
    color: white;
    font-size: 18px;
    font-weight: 500;
    display: block;
}

/* DROPDOWN BUTTON */
.mobile-toggle {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Chevron */
.mobile-toggle i {
    font-size: 14px;
    transition: 0.3s;
}

/* Rotate arrow */
.mobile-toggle.open i {
    transform: rotate(180deg);
}

/* SUBMENU */
.mobile-submenu {
    margin-top: 12px;
    padding-left: 15px;
    border-left: 2px solid #ff0000;
    display: none;
}

.mobile-submenu li {
    margin-bottom: 12px;
}

.mobile-submenu a {
    font-size: 16px;
    color: #ccc;
}

/* SHOW SUBMENU */
.mobile-submenu.open {
    display: block;
}

/* ================================
   SIGN IN BUTTON (BOTTOM)
================================ */
.mobile-menu .btn {
    width: 100%;
    margin-top: 35px;
    padding: 16px 0;
    border-radius: 40px;
    font-size: 17px;
    font-weight: 600;
    background: #ff0000;
    color: #000;
    box-shadow: 0 0 18px rgba(255,0,0,0.6);
}

/* Button hover */
.mobile-menu .btn:hover {
    background: #ff0000;
    color: #000;
    opacity: 0.9;
}

/* ================================
   HAMBURGER POSITION FIX
================================ */
.mobile-menu-icon {
    font-size: 24px;
    color: white;
    position: absolute;
    right: 25px;
    top: 22px;
    z-index: 100000;
}

/* Desktop hides mobile menu */
@media (min-width: 900px) {
    .mobile-menu {
        display: none !important;
    }
}

/* =================================================
   MOBILE MENU — IMAGE-1 EXACT SPACING FIX
================================================= */

/* Mobile menu container spacing */
.mobile-menu {
    padding: 28px 22px 40px 22px; /* top | sides | bottom */
}

/* Brand spacing */
.mobile-menu h1,
.mobile-menu h2 {
    margin-top: 4px;
    margin-bottom: 6px;
}

/* Brand underline spacing */
.mobile-menu .brand-line {
    margin-top: 6px;
    margin-bottom: 22px;
}

/* Red divider spacing */
.mobile-menu::after {
    margin-bottom: 28px;
}

/* Menu list spacing reset */
.mobile-menu ul {
    margin-top: 0;
}

/* EACH MENU ITEM — IMAGE MATCH */
.mobile-menu ul li {
    margin-bottom: 26px; /* exact visual spacing */
}

/* Menu text vertical alignment */
.mobile-menu ul li a,
.mobile-toggle {
    padding: 6px 0;
    line-height: 1.3;
}

/* Dropdown submenu spacing */
.mobile-submenu {
    margin-top: 14px;
    padding-left: 16px;
}

.mobile-submenu li {
    margin-bottom: 14px;
}

/* SIGN IN BUTTON POSITION (IMAGE MATCH) */
.mobile-menu .btn {
    margin-top: 42px;
    padding: 18px 0;
}

/* Extra bottom spacing */
.mobile-menu {
    padding-bottom: 55px;
}

/* Hamburger vertical alignment */
.mobile-menu-icon {
    top: 24px;
}

/* Prevent menu crowding on small phones */
@media (max-height: 700px) {
    .mobile-menu {
        overflow-y: auto;
    }
}

/* ===============================
   MOBILE HAMBURGER HEADING
   (Same as Reference Image)
================================ */

.mobile-heading {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.mobile-heading .red {
    color: #ff0000;
}

/* Red underline */
.mobile-heading-line {
    width: 160px;
    height: 3px;
    background: #ff0000;
    border-radius: 3px;
    margin-bottom: 22px;
}

/* Thin divider below heading */
.mobile-menu::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #ff0000;
    margin-bottom: 25px;
}

/* MOBILE ONLY */
@media (min-width: 901px) {
    .mobile-heading,
    .mobile-heading-line {
        display: none;
    }
}

/* ===============================
   NAV LOGO TEXT — MOBILE FIX
================================ */

/* Default: show desktop text */
.logo-mobile {
    display: none;
}

/* Mobile view */
@media (max-width: 900px) {

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: inline;
        font-size: 20px;
        font-weight: 600;
        color: white;
        white-space: nowrap;
    }
}

:root{
  --nav-height: 115px;
  --second-color: #ff0000;
}

/* NAV */
.nav{
  position: fixed;
  top: 0;
  left: 0;
  height: var(--nav-height);
  width: 100%;
  background: #000;
  display: flex;
  align-items: center;
  padding: 0 10.4vw;
  gap: 30px;
  z-index: 99999;
}

/* LOGOS */
.logo-mobile{ display:none; }
.red{ color: var(--second-color); }

/* DESKTOP MENU */
.nav-main-menu{
  display: flex;
  gap: 26px;
}

.desktop-btn{
  margin-left: auto;
}

/* CONTENT OFFSET */
#main{
  padding-top: var(--nav-height);
}

/* HAMBURGER */
.mobile-menu-icon{
  display:none;
  font-size:24px;
  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: 25px;
  z-index:99998;
}

.mobile-menu.active{
  display:block;
}

.mobile-heading{
  font-size:22px;
  font-weight:600;
}

.mobile-heading-line{
  width:220px;
  height:3px;
  background:red;
  margin:18px 0 28px;
}

/* HERO MOBILE */
@media(max-width:900px){

  .nav-main-menu,
  .desktop-btn{
    display:none;
  }

  .mobile-menu-icon{
    display:block;
    margin-left:auto;
  }

  .logo-desktop{ display:none; }
  .logo-mobile{ display:block; }

  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-right img{
    max-width:300px;
    margin-top:30px;
  }

  .nav{
    padding:0 20px;
  }
}

/* BRAND CONTAINER */
.brand-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* RED LINE UNDER HEADING */
.brand-line {
    width: 500px;
    height: 3px;
    background: #ff0000;
    border-radius: 2px;
    margin-top: 4px;
}

@media (max-width: 900px) {

    .brand-container {
        align-items: flex-start;
    }

    .brand-line {
        width: 240px;
        margin-top: 6px;
    }
}

/* =========================================
   MOBILE VIEW ONLY — SIGN IN BUTTON FIX
========================================= */
@media (max-width: 900px) {

    /* Mobile Sign In button text + alignment */
    .mobile-menu .btn {
        color: #ffffff !important;          /* WHITE TEXT */
        display: flex;                      /* proper alignment */
        align-items: center;                /* vertical center */
        justify-content: center;            /* horizontal center */
        gap: 8px;                           /* space text & icon */
        font-weight: 600;
        line-height: 1;
    }

    /* Icon alignment */
    .mobile-menu .btn i {
        font-size: 14px;
        position: relative;
        top: 1px;                           /* optical alignment */
    }
}

/* =====================================
   HERO SECTION — DSS REFERENCE FIX
===================================== */

/* Desktop & default */
#page1 {
    min-height: 100vh;
    width: 100%;
    padding: 0 8vw;
    padding-top: calc(var(--nav-height) + 20px); /* 🔥 navbar safe space */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
}

/* Hero container */
.hero-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

/* Hero layout */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

/* Text */
.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: clamp(2.4rem, 5vw, 5.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 22px;
}

.hero-left p {
    max-width: 600px;
    line-height: 1.7;
    opacity: 0.95;
    text-align: justify;
}

/* 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: floatImg 4s ease-in-out infinite;
}

/* Floating animation (same as reference) */
@keyframes floatImg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* =====================================
   HERO — MOBILE VIEW (REFERENCE)
===================================== */
@media (max-width: 900px) {

    #page1 {
        min-height: auto;
        padding: calc(var(--nav-height) + 30px) 20px 60px;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        gap: 30px;
    }

    .hero-left {
        order: 2; /* 🔥 text after image if needed */
        align-items: center;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .hero-left p {
        max-width: 95%;
        text-align: justify;
        margin: 0 auto;
        font-size: 14px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .hero-right {
        order: 1;
    }

    .hero-right img {
        max-width: 300px;
    }
}

/* =====================================
   HERO BUTTONS — BOTH RED (REFERENCE)
===================================== */

/* Button container */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

/* BOTH BUTTONS — RED BASE */
.hero-btn-primary,
.hero-btn-secondary {
    background: var(--second-color);     /* red */
    color: #000;                         /* black text */
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    transition: 0.3s ease;
}

/* Hover effect (same for both) */
.hero-btn-primary:hover,
.hero-btn-secondary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 900px) {

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

/* =====================================
   INTRO SECTION — RESPONSIVE (DSS)
===================================== */

/* Desktop / Default */
.va-intro {
    width: 100%;
    padding: 100px 8vw;
    background: #000;
}

.va-container {
    max-width: 1500px;
    margin: 0 auto;
}

.va-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT IMAGE */
.va-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.va-left img {
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    filter: drop-shadow(0 0 25px rgba(255,0,0,0.3));
}

/* RIGHT CONTENT */
.va-right {
    flex: 1;
    color: white;
}

.va-right h2 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 22px;
}

.va-right h2 span {
    color: var(--second-color);
    text-shadow: 0 0 12px rgba(255,0,0,0.5);
}

.va-right p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.92;
    max-width: 650px;
    margin-bottom: 14px;
    text-align: justify;
}

/* =====================================
   MOBILE VIEW — INTRO SECTION
===================================== */
@media (max-width: 900px) {

    .va-intro {
        padding: 80px 20px;
    }

    .va-content {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    .va-left img {
        max-width: 320px;
    }

    .va-right h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .va-right p {
        font-size: 14px;
        max-width: 95%;
        margin: 0 auto 14px;
        text-align: justify;
    }
}

/* =====================================
   INTERNSHIP PROCESS — RESPONSIVE
===================================== */

.va-services {
    width: 100%;
    padding: 100px 8vw;
    background: #000;
    text-align: center;
}

/* TITLE */
.va-services-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.va-services-title span {
    color: var(--second-color);
    text-shadow: 0 0 12px rgba(255,0,0,0.5);
}

/* SUBTITLE */
.va-services-subtitle {
    max-width: 800px;
    margin: 0 auto 60px;
    color: #ccc;
    line-height: 1.6;
}

/* GRID */
.va-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto;
}

/* CARD */
.va-service-card {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 35px 26px;
    border-radius: 18px;
    transition: 0.3s ease;
    text-align: center;
}

/* ICON */
.va-service-card i {
    font-size: 2.8rem;
    color: var(--second-color);
    margin-bottom: 16px;
}

/* TITLE */
.va-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

/* TEXT */
.va-service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
    text-align: justify;
}

/* HOVER */
.va-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--second-color);
    box-shadow: 0 0 25px rgba(255,0,0,0.35);
}

/* ===============================
   TABLET VIEW (2 COLUMNS)
================================ */
@media (max-width: 900px) {

    .va-services {
        padding: 80px 20px;
    }

    .va-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

/* ===============================
   MOBILE VIEW (1 COLUMN)
================================ */
@media (max-width: 600px) {

    .va-services-title {
        font-size: 1.8rem;
    }

    .va-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .va-service-card {
        padding: 28px 22px;
    }

    .va-service-card p {
        font-size: 14px;
        text-align: justify;
    }
}

/* =====================================
   WHAT STUDENTS RECEIVE — RESPONSIVE
===================================== */

.va-process {
    width: 100%;
    padding: 100px 8vw;
    background: #000;
    text-align: center;
}

/* TITLE */
.va-process-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.va-process-title span {
    color: var(--second-color);
    text-shadow: 0 0 12px rgba(255,0,0,0.5);
}

/* SUBTITLE */
.va-process-subtitle {
    max-width: 850px;
    margin: 0 auto 50px;
    color: #ccc;
    line-height: 1.6;
}

/* GRID */
.va-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1500px;
    margin: 0 auto;
}

/* CARD */
.step-box {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 32px 26px;
    border-radius: 14px;
    transition: 0.3s ease;
    text-align: center;
}

/* NUMBER */
.step-number {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--second-color);
    margin-bottom: 12px;
    display: block;
}

/* TITLE */
.step-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* TEXT */
.step-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* HOVER */
.step-box:hover {
    transform: translateY(-8px);
    border-color: var(--second-color);
    box-shadow: 0 0 22px rgba(255,0,0,0.3);
}

/* ===============================
   TABLET VIEW
================================ */
@media (max-width: 900px) {

    .va-process {
        padding: 80px 20px;
    }

    .va-process-steps {
        gap: 22px;
    }
}

/* ===============================
   MOBILE VIEW
================================ */
@media (max-width: 600px) {

    .va-process-title {
        font-size: 1.8rem;
    }

    .step-box {
        padding: 28px 22px;
    }

    .step-box p {
        font-size: 14px;
    }
}

/* =========================================
   DESKTOP NAV — PROPER GAP FIX (FINAL)
========================================= */
@media (min-width: 901px) {

    /* Ensure navbar layout is clean */
    nav.nav {
        display: flex;
        align-items: center;
    }

    /* Space between logo and menu */
    .nav-main-menu {
        display: flex !important;
        align-items: center;
        margin-left: 60px !important; /* gap after logo */
    }

    /* Space between Home / About / Contact */
    .nav-main-menu > li {
        margin-right: 36px !important;
    }

    /* Space between Contact and Sign In button */
    .desktop-btn {
        margin-left: 40px !important;
    }
}

/* =====================================================
   TABLET VIEW (901px – 1024px)
   SAME AS MOBILE — CLEAN & CONTROLLED
===================================================== */
@media (min-width: 901px) and (max-width: 1024px) {

  /* ================= NAVBAR ================= */

  /* Disable desktop navbar elements */
  .nav-main-menu,
  .desktop-btn {
    display: none !important;
  }

  /* Enable hamburger */
  .mobile-menu-icon {
    display: block !important;
    margin-left: auto;
  }

  /* Use mobile logo */
  .logo-desktop {
    display: none !important;
  }

  .logo-mobile {
    display: block !important;
    font-size: 22px;
    font-weight: 600;
  }

  /* Mobile-style navbar spacing */
  .nav {
    padding: 0 24px !important;
  }

  /* ================= 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 55px;
    overflow-y: auto;
    z-index: 99998;
  }

  .mobile-menu.active {
    display: block;
  }

  /* Headings */
  .mobile-heading {
    font-size: 22px;
    font-weight: 600;
  }

  .mobile-heading-line {
    width: 220px;
    height: 3px;
    background: red;
    margin: 18px 0 28px;
  }

  /* Menu items */
  .mobile-menu ul li {
    margin-bottom: 26px;
  }

  .mobile-menu ul li a {
    font-size: 18px;
  }

  /* Sign In button */
  .mobile-menu .btn {
    margin-top: 42px;
    padding: 18px 0;
    font-size: 17px;
  }

  /* ================= HERO ================= */

  #page1 {
    min-height: auto;
    padding: calc(var(--nav-height) + 30px) 24px 60px;
    text-align: center;
  }

  .hero {
    flex-direction: column;
    gap: 30px;
  }

  .hero-right img {
    max-width: 340px;
  }

  .hero-left h1 {
    font-size: 2.4rem;
  }

  .hero-left p {
    max-width: 95%;
    margin: 0 auto;
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  /* ================= SECTIONS ================= */

  .va-content {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

  .va-right p {
    max-width: 95%;
    margin: 0 auto;
    text-align: justify;
  }

  /* ================= GRIDS ================= */

  .va-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .va-process-steps {
    gap: 22px;
  }
}

/* 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: Buy button only in hamburger
   =============================== */
@media (max-width: 768px) {

    /* Hide Buy button in navbar */
    .nav .buy-link {
        display: none;
    }

    /* Show Buy button inside mobile menu */
    .mobile-menu .buy-link {
        display: block;
        margin-top: 15px;
    }

    .mobile-menu .buy-btn {
        width: 100%;
    }
}
