/* Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Reset some default styles */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Variables */
:root{
  --bg-color: #000000;
  --primary-color: #000000;
  --second-color: #FF0000;
  --hover-bg-color: #FF0000;
  --shadow-1: 0px 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-2: 0px 2px 10px rgba(26, 112, 224, 0.4);
}

/* Body */
body{
  background-color: #000000;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

/* Reusable css */
a{
  text-decoration: none;
  color: white;
  font-weight: 500;
}

ul{
  list-style-type: none;
}

/* ==============================
   FLOATING WHATSAPP BUTTON
   ============================== */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
    z-index: 99999;
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    background-color: #1ebe5c;
}

.btn{
  font-size: 15px;
  background-color: var(--second-color);
  color: var(--bg-color);
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  box-shadow: var(--shadow-2);
  cursor: pointer;
  transition: .3s;
}

nav .btn {
    position: relative;
    top: -6px;   /* moves upward */
}

.btn:hover{
  opacity: 0.9;
}

/* ================================
   FLOATING CALL ICON + HOVER MENU
   ================================ */
.call-container {
    position: fixed;
    top: 14px; /* perfect alignment with navbar elements */
    right: 25px;
    z-index: 99999;
    height: 40px; /* makes alignment cleaner */
}

.call-icon {
    width: 40px;
    height: 40px;
    background: #ff0000;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    transition: 0.3s;
}

.call-icon:hover {
    transform: scale(1.12);
}

/* Hidden by default */
.call-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: #0d0d0d;
    border: 1px solid #333;
    border-top: 2px solid #ff0000;
    border-radius: 6px;
    padding: 15px 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s ease;
    width: max-content;
    max-width: 320px;
    white-space: nowrap;
}

/* SHOW on hover (same behavior as nav mega menus) */
.call-container:hover .call-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Text Styles */
.call-title {
    color: #ff0000;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
}

.call-heading {
    color: #fff;
    font-size: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 6px;
}

.call-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.call-option i {
    color: #ff0000;
    font-size: 16px;
}

.call-option:hover {
    color: #ff0000;
}

/* ============================
   CLEAN HERO CONTAINER LAYOUT
   ============================ */

#page1 {
    height: 100vh;
    width: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8vw;
    padding-top: 80px; /* for navbar spacing */
    position: relative;
    z-index: 1;
}

/* Main container that centers hero */
.hero-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* HERO FLEX LAYOUT */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* LEFT SECTION */
.hero-left {
    flex: 1;
    color: white;
}

.hero-left h1 {
    font-size: clamp(2.5rem, 5vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-left h1 span {
    color: var(--second-color);
    text-shadow: 0 0 18px rgba(255, 0, 0, 0.6);
}

.hero-left p {
    text-align: justify;
    text-justify: inter-word;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.hero-btn-primary {
    background: var(--second-color);
    color: #000;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--second-color);
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    transition: 0.3s;
}

.hero-btn-secondary:hover {
    background: var(--second-color);
    color: #000;
}

/* RIGHT IMAGE */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-right img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.3));
    animation: float 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

/* floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0);}
    50% { transform: translateY(-12px);}
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-right img {
        max-width: 380px;
        margin-top: 40px;
    }

    .hero-left p {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1024px){
    .mega-dropdown {
        width: 760px;
    }
}

@media (max-width: 850px){
    .mega-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mega-dropdown {
        width: 90vw;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 600px){
    .mega-grid {
        grid-template-columns: 1fr;
    }

    .mega-dropdown {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        transform: none;
        border-radius: 0;
    }
}

/* 🔥 ADD RESPONSIVE CSS BELOW THIS COMMENT — AT THE END OF THE FILE */

@media (max-width: 600px) {
    /* mobile styles here */
    #page1 {
        height: auto;
        padding: 120px 20px 60px 20px;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }

    .hero-left h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-left p {
        max-width: 95%;
        font-size: 14px;
        text-align: justify;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right img {
        width: 80%;
        max-width: 260px;
    }
}

@media (min-width: 600px) and (max-width: 900px) {
    /* tablet styles here */
    #page1 {
        height: auto;
        padding: 140px 40px 70px 40px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-left h1 {
        font-size: 2.8rem;
    }

    .hero-left p {
        max-width: 80%;
        margin: 0 auto;
        text-align: justify;
    }

    .hero-right img {
        max-width: 350px;
    }
}

@media (min-width: 900px) and (max-width: 1200px) {
    /* laptop styles here */
    #page1 {
        padding-top: 110px;
    }

    .hero-left h1 {
        font-size: 3.5rem;
    }

    .hero-left p {
        max-width: 500px;
    }

    .hero-right img {
        max-width: 420px;
    }
}

@media (min-width: 1200px) and (max-width: 1600px) {
    /* desktop styles */
    .hero-container {
        max-width: 1300px;
    }

    .hero-left h1 {
        font-size: 4.2rem;
    }
}

@media (min-width: 1600px) {
    /* large screen styles */
    .hero-container {
        max-width: 1600px;
    }

    .hero-left h1 {
        font-size: 5rem;
    }

    .hero-left p {
        max-width: 650px;
    }

    .hero-right img {
        max-width: 550px;
    }
}

/* -------------------------
      MOBILE NAV RESET
-------------------------- */

.mobile-menu-icon {
    display: none;
    position: absolute;
    right: 25px;
    font-size: 26px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    width: 100%;
    background: #000;
    padding: 20px;
    border-top: 2px solid #FF0000;
    z-index: 9999;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu a {
    color: white;
    font-size: 18px;
    display: block;
    padding: 8px 0;
}

/* Dropdown inside mobile */
.mobile-dropdown i {
    float: right;
    transition: 0.3s;
}

.mobile-submenu {
    display: none;
    padding-left: 15px;
    border-left: 2px solid #FF0000;
}

/* -------------------------
       MEDIA QUERIES
-------------------------- */

@media (max-width: 900px) {

    /* Hide desktop menu */
    .nav-main-menu {
        display: none;
    }

    /* Show hamburger icon */
    .mobile-menu-icon {
        display: block;
    }

    /* Adjust nav padding */
    .nav {
        padding: 20px;
    }

    /* Center brand name */
    .nav h1 {
        font-size: 20px;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    nav .btn {
        position: absolute;
        right: 70px;
        top: 15px;
        z-index: 9999;
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* TABLETS */
@media (min-width: 600px) and (max-width: 900px) {
    nav .btn {
        padding: 12px 28px;
        font-size: 15px;
        margin-left: 10px;
    }
}

/* SMALL LAPTOP */
@media (min-width: 900px) and (max-width: 1200px) {
    nav .btn {
        padding: 10px 26px;
        font-size: 14px;
    }
}

/* LARGE DESKTOP */
@media (min-width: 1200px) and (max-width: 1600px) {
    nav .btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* ===============================
   INTRO SECTION
   =============================== */
.va-intro {
    padding: 70px 6vw;
    background: #000;
    color: #fff;
}

.va-container {
    max-width: 1200px;
    margin: 0 auto;
}

.va-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
}

.va-left {
    flex: 0 0 48%;
    max-width: 48%;
}

.va-right {
    flex: 0 0 48%;
    max-width: 48%;
}

.va-left img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(255,0,0,0.18);
    object-fit: cover;
}

.va-right h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.va-right h2 span {
    color: #FF0000;
}

.va-right p {
    line-height: 1.7;
    margin-bottom: 14px;
    font-size: 1.05rem;
    color: #ddd;
}

@media (max-width: 900px) {
    .va-content {
        flex-wrap: wrap;
    }

    .va-left,
    .va-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .va-content {
        gap: 20px;
    }

    .va-right {
        text-align: left;
    }

    .va-right h2 {
        font-size: 1.8rem;
    }
}

/* ===============================
   SERVICES SECTION
   =============================== */
.va-services {
    background: #000;
    color: white;
    padding: 90px 8vw;
    text-align: center;
}

.va-services-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.va-services-title span {
    color: #FF0000;
}

.va-services-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 50px;
}

.va-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.va-service-card {
    background: #111;
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;
    color: #eee;
    transition: 0.3s;
    border: 1px solid #222;
    box-shadow: 0 0 0px rgba(255, 0, 0, 0.2);
}

.va-service-card i {
    font-size: 2.7rem;
    color: #FF0000;
    margin-bottom: 15px;
}

.va-service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.va-service-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1rem;
}

.va-service-card:hover {
    transform: translateY(-8px);
    border-color: #FF0000;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
}

@media (max-width: 1000px) {
    .va-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .va-services-grid {
        grid-template-columns: 1fr;
    }

    .va-services-title {
        font-size: 2rem;
    }
}

/* ===============================
   TOOLS SLIDER
   =============================== */

.va-tools {
    background: #000;
    padding: 90px 8vw;
    text-align: center;
    color: white;
}

.va-tools-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.va-tools-title span {
    color: #FF0000;
    text-shadow: 0 0 18px rgba(255,0,0,0.6);
}

.va-tools-subtitle {
    max-width: 750px;
    margin: 0 auto 50px auto;
    opacity: 0.85;
    font-size: 1.1rem;
}

/* SLIDER CONTAINER */
.va-tools-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* STRIP OF SLIDING ITEMS */
.va-tools-track {
    display: flex;
    gap: 40px;
    animation: vaToolsSlide 25s linear infinite;
}

/* TOOL CARDS */
.va-tool-box {
    background: #0d0d0d;
    padding: 25px 30px;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    min-width: 180px;
    text-align: center;
    transition: 0.3s;
}

.va-tool-box img {
    width: 65px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 12px rgba(255,0,0,0.4));
}

.va-tool-box p {
    margin-top: 8px;
    font-size: 1rem;
    color: #ddd;
}

/* ANIMATION – RIGHT → LEFT */
@keyframes vaToolsSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 700px) {
    .va-tools-title {
        font-size: 2rem;
    }
}

/* ===============================
   PROCESS SECTION
   =============================== */
.va-process {
    padding: 90px 8vw;
    background: #000;
    color: white;
}

.va-process-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.va-process-title span {
    color: #FF0000;
    text-shadow: 0 0 15px rgba(255,0,red,0.6);
}

.va-process-subtitle {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    opacity: 0.8;
}

.va-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.step-box {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.step-box:hover {
    transform: translateY(-8px);
    border-color: #FF0000;
    box-shadow: 0 0 25px rgba(255,0,0,0.4);
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FF0000;
    display: block;
    margin-bottom: 10px;
}

.step-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.step-box p {
    color: #ccc;
    line-height: 1.6;
}

/* ===============================
   FAQ
   =============================== */
.va-faq {
    background: #000;
    padding: 90px 8vw;
    color: #fff;
}

.va-faq-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.va-faq-title span {
    color: #FF0000;
    text-shadow: 0 0 15px rgba(255,0,0,0.6);
}

.va-faq-subtitle {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    opacity: 0.85;
}

.va-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.va-faq-item {
    margin-bottom: 18px;
}

.va-faq-question {
    width: 100%;
    background: #0d0d0d;
    padding: 16px 20px;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
}

.va-faq-question:hover {
    border-color: #FF0000;
    box-shadow: 0 0 15px rgba(255,0,red,0.3);
}

.va-faq-answer {
    background: #111;
    margin-top: 8px;
    padding: 14px 18px;
    border-radius: 8px;
    border-left: 3px solid #FF0000;
    display: none;
    opacity: 0.9;
}

.va-faq-answer.open {
    display: block;
}

.va-faq-arrow {
    font-size: 1.4rem;
    font-weight: bold;
    color: #FF0000;
}

@media (max-width: 700px) {
    .va-faq-title {
        font-size: 2rem;
    }
}

:root{
    --nav-height:110px;
    --red:#ff0000;
}

/* 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 10vw;
    z-index:9999;
}

/* BRAND */
.brand-container{
    display:flex;
    flex-direction:column;
}

.logo-desktop,
.logo-mobile{
    color:#fff;
    font-size:22px;
    font-weight:600;
    margin:0;
}

.red{ color:var(--red); }

.brand-line{
    height:3px;
    background:var(--red);
    margin-top:4px;
}

/* DESKTOP MENU */
.nav-main-menu{
    display:flex;
    gap:36px;
    list-style:none;
}

.nav-link{
    color:#fff;
    font-size:15px;
}
.nav-link:hover{ color:var(--red); }

/* BUTTON */
.btn{
    background:var(--red);
    color:#000;
    padding:10px 26px;
    border-radius:30px;
    font-weight:600;
    border:none;
    cursor:pointer;
}

/* HAMBURGER */
.mobile-menu-icon{
    display:none;
    font-size:26px;
    color:#fff;
    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;
    border-top:2px solid var(--red);
}

.mobile-menu.active{ display:block; }

.mobile-heading{
    font-size:22px;
    font-weight:600;
    color:#fff;
}

.mobile-heading-line{
    width:290px;
    height:3px;
    background:var(--red);
    margin:10px 0 25px;
}

.mobile-menu ul{
    list-style:none;
}
.mobile-menu ul li{
    margin-bottom:26px;
}
.mobile-menu ul li a{
    font-size:18px;
    color:#fff;
}

/* CALL ICON */
.call-container{
    position:relative;
}

.call-icon{
    width:46px;
    height:46px;
    border-radius:50%;
    background:var(--red);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.call-dropdown{
    position:absolute;
    right:0;
    top:60px;
    width:260px;
    background:#000;
    padding:16px;
    border:1px solid var(--red);
    display:none;
}

.call-container:hover .call-dropdown{
    display:block;
}

.call-title{
    color:#fff;
    font-size:14px;
}

.call-heading{
    color:var(--red);
    margin:10px 0;
}

.call-option{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    margin-bottom:10px;
}

/* RESPONSIVE */
@media(max-width:900px){

    .nav-main-menu,
    .desktop-btn,
    .logo-desktop{
        display:none;
    }

    .logo-mobile,
    .mobile-menu-icon{
        display:block;
    }

    .nav{
        padding:0 20px;
    }
}

@media(min-width:901px){
    .logo-mobile{ display:none; }
}

/* MOBILE SIGN IN */
.mobile-menu .btn{
    width:100%;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
}


/* =========================================
   MOBILE APP DEVELOPMENT — HERO SECTION
========================================= */

#page1{
    min-height: 100vh;
    padding-top: var(--nav-height, 110px); /* prevents navbar overlap */
    display: flex;
    align-items: center;
    background: #000;
}

/* CONTAINER */
.hero-container{
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 8vw;
}

/* LAYOUT */
.hero{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT CONTENT */
.hero-left{
    flex: 1;
    max-width: 640px;
}

.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: #ff0000;
    text-shadow: 0 0 18px rgba(255,0,0,0.6);
}

.hero-left p{
    font-size: 1.05rem;
    line-height: 1.75;
    color: #ddd;
    margin-bottom: 34px;
    text-align: justify;
}

/* BUTTONS */
.hero-buttons{
    display: flex;
    gap: 20px;
}

.hero-btn-primary,
.hero-btn-secondary{
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}

/* PRIMARY */
.hero-btn-primary{
    background: #ff0000;
    color: #000;
    box-shadow: 0 0 20px rgba(255,0,0,0.45);
}

/* SECONDARY */
.hero-btn-secondary{
    background: transparent;
    color: #fff;
    border: 2px solid #ff0000;
}

.hero-btn-primary:hover,
.hero-btn-secondary:hover{
    transform: translateY(-3px);
    opacity: 0.9;
}

/* RIGHT IMAGE */
.hero-right{
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-right img{
    width: 100%;
    max-width: 520px;
    filter: drop-shadow(0 0 28px rgba(255,0,0,0.35));
}

/* ===============================
   TABLET (≤ 900px)
================================ */
@media (max-width: 900px){

    #page1{
        padding-top: calc(var(--nav-height, 110px) + 30px);
        min-height: auto;
    }

    .hero{
        flex-direction: column;
        gap: 42px;
        text-align: center;
    }

    /* IMAGE FIRST */
    .hero-right{
        order: 1;
    }

    /* TEXT SECOND */
    .hero-left{
        order: 2;
        max-width: 100%;
    }

    .hero-left p{
        max-width: 95%;
        margin: 0 auto 30px;
        text-align: justify;
    }

    .hero-buttons{
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===============================
   MOBILE (≤ 600px)
================================ */
@media (max-width: 600px){

    .hero-left h1{
        font-size: 2.1rem;
    }

    .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: 320px;
    }
}

/* =========================================
   MOBILE APP DEVELOPMENT — INTRO SECTION
========================================= */

.va-intro{
    width: 100%;
    padding: 100px 8vw;
    background: #000;
}

/* CONTAINER */
.va-container{
    max-width: 1200px;
    margin: 0 auto;
}

/* LAYOUT */
.va-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT IMAGE */
.va-left{
    flex: 1;
}

.va-left img{
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(255,0,0,0.25);
}

/* RIGHT CONTENT */
.va-right{
    flex: 1;
    max-width: 640px;
}

/* TITLE */
.va-right h2{
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 22px;
    line-height: 1.25;
}

.va-right h2 span{
    color: #ff0000;
    text-shadow: 0 0 14px rgba(255,0,0,0.6);
}

/* TEXT */
.va-right p{
    font-size: 1rem;
    line-height: 1.75;
    color: #ccc;
    margin-bottom: 18px;
    text-align: justify;
}

/* ===============================
   TABLET (≤ 900px)
================================ */
@media (max-width: 900px){

    .va-intro{
        padding: 80px 20px;
    }

    .va-content{
        flex-direction: column;
        gap: 42px;
        text-align: center;
    }

    /* IMAGE FIRST */
    .va-left{
        order: 1;
        display: flex;
        justify-content: center;
    }

    /* TEXT SECOND */
    .va-right{
        order: 2;
        max-width: 100%;
    }

    .va-right h2{
        text-align: center;
    }

    .va-right p{
        max-width: 95%;
        margin: 0 auto 16px;
        text-align: justify;
    }
}

/* ===============================
   MOBILE (≤ 480px)
================================ */
@media (max-width: 480px){

    .va-right h2{
        font-size: 1.9rem;
    }

    .va-left img{
        max-width: 320px;
        border-radius: 14px;
    }
}

/* =========================================
   MOBILE APP DEVELOPMENT — SERVICES
========================================= */

.va-services{
    width: 100%;
    padding: 100px 8vw;
    background: #000;
    text-align: center;
}

/* TITLE */
.va-services-title{
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.va-services-title span{
    color: #ff0000;
    text-shadow: 0 0 14px rgba(255,0,0,0.6);
}

/* SUBTITLE */
.va-services-subtitle{
    max-width: 900px;
    margin: 0 auto 60px;
    color: #ccc;
    line-height: 1.7;
}

/* 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: 40px 30px;
    border-radius: 16px;
    transition: 0.35s ease;
    text-align: left;
}

.va-service-card:hover{
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 0 28px rgba(255,0,0,0.35);
}

/* ICON */
.va-service-card i{
    font-size: 2.8rem;
    color: #ff0000;
    margin-bottom: 18px;
    display: inline-block;
}

/* CARD TITLE */
.va-service-card h3{
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

/* CARD TEXT */
.va-service-card p{
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    text-align: justify;
}

/* ===============================
   LARGE TABLET (≤ 1100px)
================================ */
@media (max-width: 1100px){

    .va-services-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }

    .va-services-subtitle{
        margin-bottom: 50px;
    }
}

/* ===============================
   TABLET (≤ 900px)
================================ */
@media (max-width: 900px){

    .va-services{
        padding: 80px 20px;
    }

    .va-services-title{
        font-size: 2rem;
    }
}

/* ===============================
   MOBILE (≤ 600px)
================================ */
@media (max-width: 600px){

    .va-services-grid{
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .va-services-subtitle{
        font-size: 0.95rem;
        text-align: justify;
        margin-bottom: 45px;
    }

    .va-service-card{
        padding: 34px 24px;
        text-align: center;
    }

    .va-service-card p{
        text-align: justify;
    }
}

/* =========================================
   MOBILE APP DEVELOPMENT — PROCESS SECTION
========================================= */

.va-process{
    width: 100%;
    padding: 100px 8vw;
    background: #000;
    text-align: center;
}

/* TITLE */
.va-process-title{
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.va-process-title span{
    color: #ff0000;
    text-shadow: 0 0 14px rgba(255,0,0,0.6);
}

/* SUBTITLE */
.va-process-subtitle{
    max-width: 900px;
    margin: 0 auto 60px;
    color: #ccc;
    line-height: 1.7;
}

/* GRID */
.va-process-steps{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* STEP CARD */
.va-process .step-box{
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 38px 30px;
    border-radius: 16px;
    transition: 0.35s ease;
    text-align: left;
}

.va-process .step-box:hover{
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 0 28px rgba(255,0,0,0.35);
}

/* STEP NUMBER */
.va-process .step-number{
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    color: #ff0000;
    margin-bottom: 14px;
}

/* STEP TITLE */
.va-process .step-box h3{
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

/* STEP TEXT */
.va-process .step-box p{
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    text-align: justify;
}

/* ===============================
   LARGE TABLET (≤ 1100px)
================================ */
@media (max-width: 1100px){

    .va-process-steps{
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }
}

/* ===============================
   TABLET (≤ 900px)
================================ */
@media (max-width: 900px){

    .va-process{
        padding: 80px 20px;
    }

    .va-process-title{
        font-size: 2rem;
    }

    .va-process-subtitle{
        margin-bottom: 50px;
    }

    .va-process-steps{
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .va-process .step-box{
        text-align: center;
    }
}

/* ===============================
   MOBILE (≤ 600px)
================================ */
@media (max-width: 600px){

    .va-process-steps{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .va-process-title{
        font-size: 1.8rem;
    }

    .va-process-subtitle{
        font-size: 0.95rem;
        text-align: justify;
        margin-bottom: 45px;
    }

    .va-process .step-box{
        padding: 32px 24px;
    }

    .va-process .step-number{
        font-size: 1.8rem;
    }
}

/* =========================================
   MOBILE APP DEVELOPMENT — FAQ SECTION
========================================= */

.va-faq{
    width: 100%;
    padding: 100px 8vw;
    background: #000;
}

/* TITLE */
.va-faq-title{
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.va-faq-title span{
    color: #ff0000;
    text-shadow: 0 0 14px rgba(255,0,0,0.6);
}

/* SUBTITLE */
.va-faq-subtitle{
    text-align: center;
    max-width: 900px;
    margin: 0 auto 55px;
    color: #ccc;
    line-height: 1.7;
}

/* CONTAINER */
.va-faq-container{
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ ITEM */
.va-faq-item{
    margin-bottom: 18px;
}

/* QUESTION */
.va-faq-question{
    background: #0d0d0d;
    padding: 18px 22px;
    border-radius: 10px;
    border: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s ease;
}

.va-faq-question:hover{
    border-color: #ff0000;
}

/* ARROW */
.va-faq-arrow{
    font-size: 1.4rem;
    color: #ff0000;
    font-weight: 600;
    margin-left: 12px;
}

/* ANSWER */
.va-faq-answer{
    display: none;
    background: #111;
    padding: 16px 22px;
    margin-top: 6px;
    border-radius: 10px;
    border-left: 3px solid #ff0000;
    color: #ccc;
    line-height: 1.65;
}

/* OPEN STATE */
.va-faq-answer.open{
    display: block;
}

/* ===============================
   TABLET (≤ 900px)
================================ */
@media (max-width: 900px){

    .va-faq{
        padding: 80px 20px;
    }

    .va-faq-title{
        font-size: 2rem;
    }

    .va-faq-subtitle{
        margin-bottom: 45px;
    }
}

/* ===============================
   MOBILE (≤ 480px)
================================ */
@media (max-width: 480px){

    .va-faq-question{
        font-size: 0.95rem;
        padding: 16px 18px;
    }

    .va-faq-answer{
        font-size: 0.95rem;
        padding: 14px 18px;
        text-align: justify;
    }

    .va-faq-arrow{
        font-size: 1.2rem;
    }
}

/* 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 FIX — BUY NOW BUTTON (MOBILE APP DEV)
========================================= */
@media (max-width: 900px) {

    /* ❌ Hide Buy Now from navbar */
    .nav .buy-now-link {
        display: none !important;
    }

    /* ✅ Show Buy Now ONLY in hamburger menu */
    .mobile-menu .buy-now-link {
        display: block !important;
        margin-top: 25px;
    }

    /* ✅ Proper alignment of Buy Now button */
    .mobile-menu .buy-now-btn {
        width: 100%;
        display: flex;
        justify-content: center;   /* horizontal center */
        align-items: center;       /* vertical center */
        padding: 16px 0;
        border-radius: 40px;
        font-size: 16px;
        font-weight: 600;
        text-align: center;
    }

    /* Optional: icon spacing */
    .mobile-menu .buy-now-btn i {
        margin-left: 8px;
        font-size: 15px;
    }
}
