/* 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;

    /* 🔥 Auto width based on content */
    width: max-content;
    max-width: 320px; /* safe limit */
    white-space: nowrap; /* prevents email from breaking into next line */
}

/* 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;   /* improves spacing */
    max-width: 600px;           /* keeps lines readable */
    line-height: 1.6;           /* cleaner spacing */
    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;
    }
}

/* Your existing CSS... */
/* mega menu css */
/* hero css */
/* all your current styles... */

/* 🔥 ADD RESPONSIVE CSS BELOW THIS COMMENT — AT THE END OF THE FILE */

@media (max-width: 600px) {
    /* mobile styles here */
    @media (max-width: 600px) {

    #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 */
    @media (min-width: 600px) and (max-width: 900px) {

    #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 */
    @media (min-width: 900px) and (max-width: 1200px) {

    #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 */
    @media (min-width: 1200px) and (max-width: 1600px) {

    .hero-container {
        max-width: 1300px;
    }

    .hero-left h1 {
        font-size: 4.2rem;
    }
}

}

@media (min-width: 1600px) {
    /* large screen styles */
    @media (min-width: 1600px) {

    .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;
    }
}

/* ===============================
      VAPT INTRO SECTION
   =============================== */

.vapt-intro {
    background: #000;
    padding: 100px 8vw;
    color: #fff;
}

.vapt-container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
}

.vapt-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT SIDE IMAGE */
.vapt-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.vapt-left img {
    width: 100%;
    max-width: 480px;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.4));
    border-radius: 10px;
}

/* RIGHT SIDE TEXT */
.vapt-right {
    flex: 1;
}

.vapt-right h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 25px;
}

.vapt-right h2 span {
    color: #FF0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.vapt-right p {
    line-height: 1.75;
    opacity: 0.9;
    margin-bottom: 18px;

    text-align: justify;
    text-justify: inter-word;
    max-width: 650px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .vapt-content {
        flex-direction: column;
        text-align: center;
    }

    .vapt-right p {
        margin-left: auto;
        margin-right: auto;
        text-align: justify;
    }

    .vapt-left img {
        max-width: 350px;
    }
}

/* ===============================
   VAPT INTRO SECTION
=============================== */
.vapt-intro-section {
    background: #000;
    padding: 100px 8vw;
    color: white;
    text-align: center;
}

.vapt-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.vapt-title span {
    color: #FF0000;
    text-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
}

.vapt-subtitle {
    max-width: 850px;
    margin: 0 auto 60px;
    opacity: 0.9;
    line-height: 1.7;
}

/* GRID */
.vapt-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* CARD */
.vapt-card {
    background: #0d0d0d;
    padding: 35px 25px;
    border-radius: 10px;
    border: 1px solid #1a1a1a;
    text-align: left;
    transition: 0.3s ease-in-out;
}

.vapt-card:hover {
    border-color: #FF0000;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.3);
    transform: translateY(-8px);
}

.vapt-card i {
    font-size: 38px;
    color: #FF0000;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255,0,0,0.4);
}

.vapt-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.vapt-card p {
    opacity: 0.85;
    line-height: 1.6;
}

/* ===============================
   VAPT TOOLS SLIDER
=============================== */
.vapt-tools {
    background: #000;
    padding: 90px 8vw;
    text-align: center;
    color: white;
}

.vapt-tools-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.vapt-tools-title span {
    color: #FF0000;
    text-shadow: 0 0 18px rgba(255,0,0,0.6);
}

.vapt-tools-subtitle {
    max-width: 780px;
    margin: 0 auto 50px auto;
    opacity: 0.85;
    font-size: 1.1rem;
}

/* SLIDER CONTAINER */
.vapt-tools-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* TRACK */
.vapt-tools-track {
    display: flex;
    gap: 40px;
    animation: vaptToolsSlide 22s linear infinite;
}

/* CARDS */
.vapt-tool-box {
    background: #0d0d0d;
    padding: 25px 30px;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    min-width: 180px;
    text-align: center;
    transition: 0.3s;
}

/*.vapt-tool-box:hover {
    transform: translateY(-6px);
    border-color: #FF0000;
    box-shadow: 0 0 25px rgba(255,0,0,0.4);
}*/

.vapt-tool-box img {
    width: 70px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 12px rgba(255,0,0,0.4));
}

.vapt-tool-box p {
    margin-top: 8px;
    font-size: 1rem;
}

/* ANIMATION */
@keyframes vaptToolsSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================================
   VAPT PROCESS SECTION (DSS THEME)
   ================================== */
.pt-process {
    background: #000;
    padding: 90px 8vw;
    color: white;
}

.pt-process-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.pt-process-title span {
    color: #FF0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.pt-process-subtitle {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px auto;
    font-size: 1.1rem;
    opacity: 0.85;
}

/* Steps Grid */
.pt-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* Step Box */
.step-box {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.1);
}

.step-box:hover {
    border-color: #FF0000;
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.3);
}

/* Step Number */
.step-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FF0000;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 0 12px rgba(255, 0, 0, 0.4);
}

.step-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-box p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 700px) {
    .pt-process-title {
        font-size: 2rem;
    }
    .pt-process-subtitle {
        font-size: 1rem;
        padding: 0 5px;
    }
}

/* ==================================
   VAPT FAQ SECTION
   ================================== */
.pt-faq {
    background: #000;
    padding: 90px 8vw;
    color: #fff;
}

.pt-faq-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.pt-faq-title span {
    color: #FF0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.pt-faq-subtitle {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    opacity: 0.85;
}

.pt-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 18px;
}

.faq-question {
    width: 100%;
    background: #0d0d0d;
    padding: 16px 20px;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    font-size: 1.1rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-question:hover {
    border-color: #FF0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.faq-answer {
    background: #111;
    margin-top: 8px;
    padding: 14px 18px;
    border-radius: 8px;
    border-left: 3px solid #FF0000;
    display: none;
    opacity: 0.9;
}

.faq-answer.open {
    display: block;
}

.arrow {
    font-size: 1.4rem;
    font-weight: bold;
    color: #FF0000;
}

/* Responsive */
@media (max-width: 700px) {
    .pt-faq-title {
        font-size: 2rem;
    }
    .pt-faq-subtitle {
        font-size: 1rem;
        padding: 0 5px;
    }
}

/* ==================================
   GLOBAL PAGE SPACING BETWEEN SECTIONS
   ================================== */

section, 
#page1, 
.vapt-intro, 
.vapt-intro-section, 
.vapt-tools, 
.pt-process, 
.pt-faq {
    margin-bottom: 90px;   /* space between pages */
}

/* Extra spacing for desktop (bigger screens look better) */
@media (min-width: 1200px) {
    section,
    #page1,
    .vapt-intro,
    .vapt-intro-section,
    .vapt-tools,
    .pt-process,
    .pt-faq {
        margin-bottom: 120px;
    }
}

/* Reduce spacing for mobile */
@media (max-width: 700px) {
    section,
    #page1,
    .vapt-intro,
    .vapt-intro-section,
    .vapt-tools,
    .pt-process,
    .pt-faq {
        margin-bottom: 60px;
    }
}

/* ===============================
   NAVBAR — DSS RESPONSIVE
================================ */

:root{
    --nav-height: 110px;
    --second-color: #ff0000;
}

.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: 99999;
}

/* 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(--second-color); }

.brand-line{
    height: 3px;
    background: var(--second-color);
    margin-top: 4px;
}

/* DESKTOP MENU */
.nav-main-menu{
    display: flex;
    gap: 36px;
}

.nav-link{
    color: #fff;
    font-size: 15px;
}

.nav-link:hover{
    color: var(--second-color);
}

/* BUTTON */
.nav .btn{
    background: var(--second-color);
    color: #000;
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
}

/* 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(--second-color);
    z-index: 99998;
}

.mobile-menu.active{
    display: block;
}

.mobile-heading{
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.mobile-heading-line{
    width: 160px;
    height: 3px;
    background: var(--second-color);
    margin: 10px 0 25px;
}

.mobile-menu ul li{
    margin-bottom: 26px;
}

.mobile-menu ul li a{
    font-size: 18px;
    color: #fff;
}

/* SIGN IN CENTER FIX */
.mobile-menu .btn{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
}

/* ===============================
   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;
    }
}

/* =========================================
   VAPT HERO SECTION — RESPONSIVE
========================================= */

#page1{
    min-height: 100vh;
    width: 100%;
    padding-top: var(--nav-height, 110px);
    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: 55px;
}

/* LEFT CONTENT */
.hero-left{
    flex: 1;
}

.hero-left h1{
    font-size: clamp(2.3rem, 4.8vw, 5.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-left h1 span{
    color: #ff0000;
    text-shadow: 0 0 16px rgba(255,0,0,0.6);
}

.hero-left p{
    max-width: 620px;
    line-height: 1.7;
    color: #ddd;
    text-align: justify;
}

/* BUTTONS */
.hero-buttons{
    display: flex;
    gap: 20px;
    margin-top: 32px;
}

.hero-btn-primary{
    background: #ff0000;
    color: #000;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
}

.hero-btn-secondary{
    background: transparent;
    border: 2px solid #ff0000;
    color: #fff;
    padding: 14px 36px;
    border-radius: 30px;
    transition: 0.3s;
}

.hero-btn-secondary:hover{
    background: #ff0000;
    color: #000;
}

/* 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); }
}

/* ===============================
   TABLET VIEW
================================ */
@media (max-width: 900px){

    #page1{
        padding-top: calc(var(--nav-height, 110px) + 30px);
        padding-bottom: 80px;
    }

    .hero{
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    /* IMAGE FIRST */
    .hero-right{
        order: 1;
    }

    /* TEXT SECOND */
    .hero-left{
        order: 2;
    }

    .hero-left p{
        max-width: 95%;
        margin: 0 auto;
        text-align: justify;
    }

    .hero-buttons{
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-right img{
        max-width: 400px;
    }
}

/* ===============================
   MOBILE VIEW
================================ */
@media (max-width: 480px){

    .hero-left h1{
        font-size: 2rem;
    }

    .hero-buttons{
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
        width: 100%;
        max-width: 320px;
    }

    .hero-right img{
        max-width: 300px;
    }
}

/* =========================================
   VAPT INTRODUCTION SECTION — RESPONSIVE
========================================= */

.vapt-intro{
    padding: 100px 8vw;
    background: #000;
}

/* CONTAINER */
.vapt-container{
    max-width: 1200px;
    margin: 0 auto;
}

/* LAYOUT */
.vapt-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT IMAGE */
.vapt-left{
    flex: 1;
}

.vapt-left img{
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(255,0,0,0.25);
}

/* RIGHT TEXT */
.vapt-right{
    flex: 1;
}

.vapt-right h2{
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 18px;
}

.vapt-right h2 span{
    color: #ff0000;
    text-shadow: 0 0 14px rgba(255,0,0,0.6);
}

.vapt-right p{
    font-size: 1rem;
    line-height: 1.7;
    color: #ccc;
    text-align: justify;
}

/* ===============================
   TABLET VIEW
================================ */
@media (max-width: 900px){

    .vapt-intro{
        padding: 80px 20px;
    }

    .vapt-content{
        flex-direction: column;
        text-align: center;
        gap: 36px;
    }

    /* IMAGE FIRST */
    .vapt-left{
        order: 1;
    }

    /* TEXT SECOND */
    .vapt-right{
        order: 2;
    }

    .vapt-right p{
        max-width: 95%;
        margin: 0 auto;
        text-align: justify;
    }
}

/* ===============================
   MOBILE VIEW
================================ */
@media (max-width: 480px){

    .vapt-right h2{
        font-size: 1.9rem;
    }

    .vapt-left img{
        border-radius: 14px;
    }
}

/* =========================================
   FIX: LAST TWO SECTIONS OVERLAP (MOBILE)
========================================= */

/* FORCE SECTIONS TO STACK PROPERLY */
#page2,
.vapt-intro-section,
.pt-services,
.pt-process,
.pt-faq {
    position: relative;
    width: 100%;
    clear: both;
}

/* ENSURE EACH SECTION HAS ITS OWN SPACE */
.vapt-intro-section {
    padding-bottom: 100px;
    margin-bottom: 80px;
}

.pt-services,
.pt-process,
.pt-faq {
    padding-bottom: 100px;
    margin-bottom: 80px;
}

/* FIX CARD CONTAINERS COLLAPSING */
.vapt-services-grid,
.pt-services-grid,
.pt-process-steps,
.pt-faq-container {
    margin-bottom: 40px;
}

/* PREVENT NEGATIVE COLLISION FROM CARDS */
.vapt-card,
.pt-service-box,
.step-box,
.faq-item {
    margin-bottom: 30px;
}

/* ===============================
   MOBILE-SPECIFIC FIX
================================ */
@media (max-width: 600px){

    /* REMOVE ANY FULL HEIGHT ISSUES */
    #page2,
    .vapt-intro-section,
    .pt-services,
    .pt-process,
    .pt-faq {
        height: auto;
        min-height: unset;
    }

    /* EXTRA BREATHING SPACE FOR MOBILE */
    .vapt-intro-section {
        padding-bottom: 120px;
        margin-bottom: 100px;
    }

    .pt-services,
    .pt-process,
    .pt-faq {
        padding-bottom: 120px;
        margin-bottom: 100px;
    }

    /* FIX LAST CARD TOUCHING NEXT SECTION */
    .vapt-card:last-child,
    .pt-service-box:last-child,
    .step-box:last-child,
    .faq-item:last-child {
        margin-bottom: 60px;
    }
}

/* =========================================
   VAPT SERVICES INTRODUCTION — RESPONSIVE
========================================= */

.vapt-intro-section{
    position: relative;
    width: 100%;
    padding: 100px 8vw;
    background: #000;
    text-align: center;
}

/* TITLE */
.vapt-title{
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.vapt-title span{
    color: #ff0000;
    text-shadow: 0 0 14px rgba(255,0,0,0.6);
}

/* SUBTITLE */
.vapt-subtitle{
    max-width: 900px;
    margin: 0 auto 60px;
    color: #ccc;
    line-height: 1.7;
}

/* GRID */
.vapt-services-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.vapt-card{
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 40px 30px;
    border-radius: 16px;
    transition: 0.35s ease;
    text-align: left;
}

.vapt-card:hover{
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 0 28px rgba(255,0,0,0.35);
}

/* ICON */
.vapt-card i{
    font-size: 2.8rem;
    color: #ff0000;
    margin-bottom: 18px;
    display: inline-block;
}

/* OPTIONAL LARGE ICON */
.vapt-card .mega-icon{
    font-size: 3.2rem;
}

/* CARD TITLE */
.vapt-card h3{
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

/* CARD TEXT */
.vapt-card p{
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    text-align: justify;
}

/* ===============================
   LARGE TABLET
================================ */
@media (max-width: 1100px){

    .vapt-services-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }

    .vapt-subtitle{
        margin-bottom: 50px;
    }
}

/* ===============================
   TABLET & MOBILE
================================ */
@media (max-width: 900px){

    .vapt-intro-section{
        padding: 80px 20px;
    }

    .vapt-title{
        font-size: 2rem;
    }
}

/* ===============================
   MOBILE VIEW
================================ */
@media (max-width: 600px){

    .vapt-services-grid{
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .vapt-subtitle{
        font-size: 0.95rem;
        text-align: justify;
        margin-bottom: 45px;
    }

    .vapt-card{
        padding: 34px 24px;
        text-align: center;
    }

    .vapt-card p{
        text-align: justify;
    }
}

/* =========================================
   VAPT METHODOLOGY / PROCESS — RESPONSIVE
========================================= */

.pt-process{
    position: relative;
    width: 100%;
    padding: 100px 8vw;
    background: #000;
    text-align: center;
}

/* TITLE */
.pt-process-title{
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.pt-process-title span{
    color: #ff0000;
    text-shadow: 0 0 14px rgba(255,0,0,0.6);
}

/* SUBTITLE */
.pt-process-subtitle{
    max-width: 900px;
    margin: 0 auto 60px;
    color: #ccc;
    line-height: 1.7;
}

/* PROCESS GRID */
.pt-process-steps{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

/* STEP CARD */
.pt-process .step-box{
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 38px 28px;
    border-radius: 16px;
    transition: 0.35s ease;
    text-align: left;
}

.pt-process .step-box:hover{
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 0 28px rgba(255,0,0,0.35);
}

/* STEP NUMBER */
.pt-process .step-number{
    display: inline-block;
    font-size: 2.1rem;
    font-weight: 800;
    color: #ff0000;
    margin-bottom: 14px;
}

/* STEP TITLE */
.pt-process .step-box h3{
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

/* STEP TEXT */
.pt-process .step-box p{
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    text-align: justify;
}

/* ===============================
   LARGE TABLET (3 COLUMNS)
================================ */
@media (max-width: 1200px){

    .pt-process-steps{
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* ===============================
   TABLET (2 COLUMNS)
================================ */
@media (max-width: 900px){

    .pt-process{
        padding: 80px 20px;
    }

    .pt-process-title{
        font-size: 2rem;
    }

    .pt-process-subtitle{
        margin-bottom: 50px;
    }

    .pt-process-steps{
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .pt-process .step-box{
        text-align: center;
    }
}

/* ===============================
   MOBILE (1 COLUMN)
================================ */
@media (max-width: 600px){

    .pt-process-title{
        font-size: 1.8rem;
    }

    .pt-process-subtitle{
        font-size: 0.95rem;
        text-align: justify;
        margin-bottom: 45px;
    }

    .pt-process-steps{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pt-process .step-box{
        padding: 32px 24px;
    }

    .pt-process .step-number{
        font-size: 1.9rem;
    }
}

/* =========================================
   VAPT FAQ SECTION — RESPONSIVE
========================================= */

.pt-faq{
    position: relative;
    width: 100%;
    padding: 100px 8vw;
    background: #000;
}

/* TITLE */
.pt-faq-title{
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 14px;
}

.pt-faq-title span{
    color: #ff0000;
    text-shadow: 0 0 14px rgba(255,0,0,0.6);
}

/* SUBTITLE */
.pt-faq-subtitle{
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    color: #ccc;
    line-height: 1.7;
}

/* FAQ CONTAINER */
.pt-faq-container{
    max-width: 900px;
    margin: auto;
}

/* FAQ ITEM */
.faq-item{
    margin-bottom: 18px;
}

/* QUESTION BUTTON */
.faq-question{
    width: 100%;
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 18px 22px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.faq-question:hover{
    border-color: #ff0000;
}

/* ARROW */
.faq-question .arrow{
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff0000;
    transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer{
    display: none;
    background: #111;
    padding: 16px 22px;
    margin-top: 8px;
    border-radius: 10px;
    border-left: 3px solid #ff0000;
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    text-align: justify;
}

/* OPEN STATE */
.faq-answer.open{
    display: block;
}

/* ===============================
   TABLET VIEW
================================ */
@media (max-width: 900px){

    .pt-faq{
        padding: 80px 20px;
    }

    .pt-faq-title{
        font-size: 2rem;
    }

    .pt-faq-subtitle{
        margin-bottom: 50px;
    }

    .faq-question{
        font-size: 0.95rem;
        padding: 16px 20px;
    }
}

/* ===============================
   MOBILE VIEW
================================ */
@media (max-width: 600px){

    .pt-faq-title{
        font-size: 1.8rem;
    }

    .pt-faq-subtitle{
        font-size: 0.95rem;
        text-align: justify;
        margin-bottom: 45px;
    }

    .faq-question{
        font-size: 0.92rem;
        padding: 16px 18px;
    }

    .faq-answer{
        font-size: 0.92rem;
        padding: 14px 18px;
    }
}

/* =========================================
   FINAL FIX: HERO BEHIND FIXED NAVBAR
========================================= */

:root{
    --nav-height: 115px; /* must match your navbar height */
}

/* HERO SECTION */
#page1{
    position: relative;
    width: 100%;

    /* IMPORTANT FIX */
    min-height: calc(100vh - var(--nav-height));
    padding-top: var(--nav-height);

    /* REMOVE FLEX CENTER PUSH */
    display: block;

    background: #000;
}

/* HERO CONTENT CENTERING (SAFE WAY) */
.hero-container{
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 8vw 0;
}

/* DESKTOP ONLY REFINEMENT */
@media (min-width: 901px){
    .hero-container{
        padding-top: 80px;
    }
}

/* MOBILE SAFE */
@media (max-width: 900px){
    #page1{
        padding-bottom: 80px;
    }

    .hero-container{
        padding-top: 40px;
    }
}

/* =========================================
   HERO ALIGNMENT FIX — DESKTOP PERFECT
========================================= */

:root{
    --nav-height: 115px;
}

/* HERO PAGE BASE */
#page1{
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--nav-height));
    padding-top: var(--nav-height);
    background: #000;
}

/* HERO CONTAINER */
.hero-container{
    max-width: 1500px;
    margin: 0 auto;
    padding: 80px 8vw 0;
}

/* HERO LAYOUT */
.hero{
    display: flex;
    align-items: center;          /* vertical alignment */
    justify-content: space-between;
    gap: 80px;
}

/* LEFT CONTENT — CONTROL WIDTH */
.hero-left{
    flex: 1;
    max-width: 650px;             /* 🔥 KEY FIX */
}

/* H1 ALIGNMENT */
.hero-left h1{
    font-size: clamp(2.8rem, 4.8vw, 5.4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 22px;
}

/* H1 HIGHLIGHT */
.hero-left h1 span{
    color: #ff0000;
    text-shadow: 0 0 18px rgba(255,0,0,0.6);
}

/* PARAGRAPH ALIGNMENT */
.hero-left p{
    font-size: 1.05rem;
    max-width: 560px;             /* 🔥 READABILITY FIX */
    line-height: 1.75;
    color: #ddd;
    margin-bottom: 32px;
}

/* BUTTONS */
.hero-buttons{
    display: flex;
    gap: 20px;
}

/* 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));
}

/* ===============================
   TABLET & MOBILE SAFE
================================ */
@media (max-width: 900px){

    .hero-container{
        padding: 50px 20px 0;
    }

    .hero{
        flex-direction: column;
        text-align: center;
        gap: 42px;
    }

    .hero-left{
        max-width: 100%;
    }

    .hero-left p{
        max-width: 95%;
        margin: 0 auto 28px;
        text-align: justify;
    }

    .hero-buttons{
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-right img{
        max-width: 400px;
    }
}

/* MOBILE */
@media (max-width: 480px){

    .hero-left h1{
        font-size: 2rem;
    }

    .hero-buttons{
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
        width: 100%;
        max-width: 320px;
    }

    .hero-right img{
        max-width: 300px;
    }
}

/* 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 (VAPT PAGE)
========================================= */
@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;
    }

    /* Remove icon shift if any */
    .mobile-menu .buy-now-btn i {
        margin-left: 8px;
        font-size: 15px;
    }
}
