@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  
  background-color: #000000;
  color: white;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
  scroll-behavior: smooth;
  line-height: 1.5;
  
}

/* ------------------------------------tooltip on login------------------------------------ */

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 60px;
  height: 20px;
  background-color: rgb(48, 43, 43);
  color: #ec0a0a;
  text-align: center;
  border-radius: 6px;
  font-size: 10px;
  padding: 2px 0;
 
 

  word-wrap: break-word;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  margin-left: 10px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

button {
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ----------------------------------------  NAVBAR ---------------------------------*/
.navbar {
  background: rgba(0, 0, 0, 0.95);
  padding: 0 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  animation: slideDown 0.6s ease-in-out;
  box-shadow: 0 2px 10px rgba(202, 14, 14, 0.3); /* white shade */
  
}

.navdiv {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 70px;
}

.logo img {
  height: 85px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Desktop Menu */
.header-text ul {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-text ul li {
  list-style: none;
  
}

.header-text ul li a {
  color: white;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  
}

.header-text ul li a:hover {
  color: red;
}

/* Mobile / Tablet */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: white;
  }

  .header-text {
    display: none; /* Hidden by default */
    position: absolute;
    top: 70px;
    right: 20px;
    background: #222;
    width: 200px;
    padding: 15px;
    border-radius: 8px;
    z-index: 1000;
  }

  .header-text ul {
    flex-direction: column;
    gap: 15px;
  }

  .header-text.active {
    display: block; /* Show when toggled */
  }
}


/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  user-select: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }


  .header-text {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid red;
    animation: fadeIn 0.3s ease;
  }

  .header-text.show {
    display: block;
  }

  .header-text ul {
    flex-direction: column;
    gap: 15px;
  }

  .header-text ul li a {
    display: block;
    padding: 8px 0;
    font-size: 18px;
  }
}



/* Fade-in animation for mobile menu */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-10px);}
  to {opacity: 1; transform: translateY(0);}
}


/* ========================= */
/* Mobile + Tablet Menu Toggle (<=900px) */
/* ========================= */
@media (max-width: 992px) {
  .menu-toggle {
    display: block; /* show hamburger */
  }

  .header-text {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid red;
    animation: fadeIn 0.3s ease;
  }

  .header-text.show {
    display: block;
  }

  .header-text ul {
    flex-direction: column;
    gap: 15px;
  }

  .header-text ul li a {
    display: block;
    padding: 8px 0;
    font-size: 18px;
  }
}


/* ---------------------contact us button------------------- */
.cu{
  border: 1px solid rgb(199, 7, 7);
  padding: 7px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 10px;
  font-size: 13px;
  
}

.cu:hover{
  
  background-color: rgb(255, 0, 0);
  color: white;
  font-weight: 200px;
  box-shadow: 0 0 10px red;
  
}


/* -----------------------------------  HERO SECTION ------------------------------------*/
.hero-g {
  
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  min-height: 100vh;
  padding: 20px;
  flex-wrap: wrap;
}

.main-content-box {
  
  background: #111;
  padding: 25px;
  border-radius: 12px;
  max-width: 500px;
  animation: fadeInUp 1s ease;
}

.main-content-box h1 {
  font-size: 28px;
  margin-bottom: 15px;
}

.main-content-box p {
  font-size: 16px;
  color: #ccc;
}

.serv-btn {
  margin: 15px 10px 0 0;
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  background-color: rgb(177, 10, 10);
  color: white;
  font-weight: bold;
  font-size: 15px;
}

.serv-btn:hover {
  background-color: #ff4d4d;
  box-shadow: 0 0 10px red;
}

.hero-pic {
  max-width: 350px;
  animation: float 4s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero-g {
    text-align: center;
    margin-top: 120px;
  }
  .hero-pic {
    max-width: 90%;
  }
}

/* New wrapper for image */
.hero-pic-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-g {
    text-align: center;
  }

  .hero-pic {
    max-width: 90%;
  }

  /* Center on mobile */
  .hero-pic-div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* ------------------------------------blinking quotes---------------------------------- */
.blinking-container {
  font-family: "Courier Prime", monospace;
  margin-top: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 17px;
  color: rgb(255, 1, 1);
  text-align: left;
  width: 100%;
  position: relative;
  white-space: normal;   /* ✅ allow wrapping */
  word-wrap: break-word; /* ✅ break long words if needed */
  overflow: hidden;      /* ✅ prevents scrollbars */
}

#quote {
  display: inline;
  min-height: 1em;
}

.cursor {
  display: inline;
  color: rgb(253, 3, 3);
  animation: blink 0.7s infinite;
  font-weight: normal;
  will-change: opacity;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Mobile styles */
@media (max-width: 768px) {
  .blinking-container {
      font-size: 16px;
      padding: 10px;
      white-space: normal;   /* ✅ allow wrapping */
      word-wrap: break-word;
      overflow: hidden;
  }
}

@media (max-width: 480px) {
  .blinking-container {
      font-size: 16px;
      padding: 8px;
      line-height: 1.4;
      white-space: normal;   /* ✅ allow wrapping */
      word-wrap: break-word;
      overflow: hidden;
  }
}

@media (max-width: 320px) {
  .blinking-container {
      font-size: 15px;
      padding: 5px;
      white-space: normal;   /* ✅ allow wrapping */
      word-wrap: break-word;
      overflow: hidden;
  }
}


/* ----------------------------------  SERVICES ---------------------------------------- */
.service-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px;
  max-width: 1100px;   /* ✅ keeps boxes centered, not full screen */
  margin: 0 auto;      /* ✅ center container */
  margin-bottom: 200px;
}

.serv-box {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.serv-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255,0,0,0.5);
}

.service-boxes-text {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.service-desc {
  color: #ccc;
  font-size: 15px;
  text-align: center;
}

.service-btn {
  margin: 15px auto 0;
  display: block;
  padding: 10px 20px;
  background: red;
  color: white;
  border-radius: 8px;
  border: none;
}

/* Tablets */
@media (max-width: 1024px) {
  .service-boxes {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;   /* tighter center */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .service-boxes {
    grid-template-columns: 1fr;
    max-width: 500px;   /* narrow on mobile */
    padding: 20px;
  }
}

/* ----------------------------------- vulnerabilities animations ----------------------------------- */
.security-alerts {
  position: relative;
  height: 650px; /* desktop height */
  width: 100%;
  /* background-color: black; */
  max-width: 1200px;   /* ✅ keeps it centered, not full screen */
  margin: 0 auto;      /* ✅ centers in page */
margin-bottom: 200px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
}

.character img {
  width: 260px;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.8));
}

.alert {
  position: absolute;
  /* background: #111; */
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 15px;
  border: 1px solid red;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

/* Desktop alert positions */
.alert1 { top: 15%; left: 10%; animation-delay: 0.2s; }
.alert2 { top: 30%; left: 5%;  animation-delay: 0.4s; }
.alert3 { top: 70%; left: 8%;  animation-delay: 0.6s; }
.alert4 { top: 85%; left: 15%; animation-delay: 0.8s; }
.alert5 { top: 10%; right: 12%; animation-delay: 1s; }
.alert6 { top: 35%; right: 8%;  animation-delay: 1.2s; }
.alert7 { top: 55%; right: 15%; animation-delay: 1.4s; }
.alert8 { top: 75%; right: 10%; animation-delay: 1.6s; }

@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.floating {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .security-alerts {
    max-width: 900px;   /* ✅ narrower center */
    padding: 30px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .security-alerts {
    height: auto;
    max-width: 600px;   /* ✅ tighter for mobile */
    flex-direction: column;
    padding: 20px;
  }
  .alert {
    position: relative; /* ✅ stack alerts instead of absolute */
    display: inline-block;
    margin: 8px 0;
  }
}

/* Add continuous drifting animation */
@keyframes drift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-10px, -10px); }
  50%  { transform: translate(10px, -5px); }
  75%  { transform: translate(-5px, 10px); }
  100% { transform: translate(0, 0); }
}

/* Apply drift animation to alerts */
.alert {
  position: absolute;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 15px;
  border: 1px solid red;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards, drift 6s ease-in-out infinite;
}

/* Desktop Floating Vulnerability Alerts */
@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes drift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-10px, -10px); }
  50%  { transform: translate(10px, -5px); }
  75%  { transform: translate(-5px, 10px); }
  100% { transform: translate(0, 0); }
}

.alert {
  position: absolute;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 15px;
  border: 1px solid red;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
  white-space: nowrap;
  opacity: 0;
  animation: fadeInUp 1s forwards, drift 6s ease-in-out infinite;
}

/* Desktop alert positions */
.alert1 { top: 15%; left: 10%; animation-delay: 0.2s, 0s; }
.alert2 { top: 30%; left: 5%;  animation-delay: 0.4s, 1s; }
.alert3 { top: 70%; left: 8%;  animation-delay: 0.6s, 2s; }
.alert4 { top: 85%; left: 15%; animation-delay: 0.8s, 1.5s; }
.alert5 { top: 10%; right: 12%; animation-delay: 1s, 0.5s; }
.alert6 { top: 35%; right: 8%;  animation-delay: 1.2s, 2.5s; }
.alert7 { top: 55%; right: 15%; animation-delay: 1.4s, 1s; }
.alert8 { top: 75%; right: 10%; animation-delay: 1.6s, 3s; }

/* Mobile view adjustments */
@media (max-width: 768px) {
  .security-alerts {
    height: auto;
    max-width: 600px;
    flex-direction: column;
    padding: 20px;
  }
  
  .alert {
    position: relative;   /* stack instead of absolute */
    display: inline-block;
    margin: 8px 0;
    animation: fadeInUp 1s forwards, drift 4s ease-in-out infinite; /* still drifting */
  }
  
  /* stagger drift differently for mobile */
  .alert1 { animation-delay: 0.2s, 0s; }
  .alert2 { animation-delay: 0.4s, 0.5s; }
  .alert3 { animation-delay: 0.6s, 1s; }
  .alert4 { animation-delay: 0.8s, 1.5s; }
  .alert5 { animation-delay: 1s, 2s; }
  .alert6 { animation-delay: 1.2s, 2.5s; }
  .alert7 { animation-delay: 1.4s, 3s; }
  .alert8 { animation-delay: 1.6s, 3.5s; }
}


/* -------------------------------------Our Professionals with certs---------------------------- */
.certifications {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(160deg, #0d0d0d, #1a0000); /* Black → Dark Red */
}

.certifications h2 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 1px;
}

.certifications h2 span {
  color: #e40d0d; /* Dark red accent */
  font-weight: 700;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}



.cert-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.cert-card:hover {
  transform: translateY(-8px);
  border: 1px solid #e63946;
  box-shadow: 0 6px 18px rgba(230, 57, 70, 0.6);
}
.cert-card {
  background: #1a1a1a;
  border: 1px solid rgba(230, 57, 70, 0.4);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s ease;
  opacity: 0;
  transform: translateY(20px);

  display: flex;              /* center content */
  align-items: center;
  justify-content: center;
}

.cert-card img {
  max-width: 140px;           /* prevents stretching */
  max-height: 70px;           /* keeps logos within bounds */
  width: auto;                /* maintain aspect ratio */
  height: auto;
  object-fit: contain;
  filter: grayscale(50%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.cert-card:hover img {
  filter: grayscale(0%) drop-shadow(0 0 8px #e63946);
  transform: scale(1.05);
}


.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  max-width: 1000px;       /* slightly narrower */
  margin: 0 auto;
  padding: 0 60px;          /* extra space left & right */
}

.certifications {
  padding: 60px 80px; /* increased left & right padding */
  text-align: center;
  background: linear-gradient(160deg, #0d0d0d, #1a0000);
}

/* ========================
   Responsive Media Queries
======================== */

/* Small Phones (≤ 480px) */
@media (max-width: 480px) {
  .certifications {
    padding: 30px 15px;
  }

  .certifications h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 14px;
    padding: 0;
  }

  .cert-card {
    padding: 12px;
  }

  .cert-card img {
    max-width: 75px;
    max-height: 40px;
  }
}

/* Extra Small Phones (≤ 375px) */
@media (max-width: 375px) {
  .cert-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
    gap: 10px;
  }

  .cert-card img {
    max-width: 60px;
    max-height: 35px;
  }
}

/* ------------------------------------------- SLIDER ---------------------------------------- */
.cyber-slider {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 20px;
  width: calc(250px * 8 + 20px * 8); /* (image width + gap) × total images */
  animation: scroll 20s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

.slider-track img {
  width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

/* Infinite marquee scrolling */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}




/* ------------------------------------- CONTACT BAR ----------------------------------- */
.contact-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 40px 20px;      /* ✅ Added horizontal padding for left-right gaps */
  max-width: 1200px;       /* ✅ Limits the section width */
  margin: 0 auto;          /* ✅ Centers the section */
  box-sizing: border-box;
}

.map-box {
  border-radius: 10px;
  overflow: hidden;        /* ✅ Ensures rounded corners work with map if iframe */
}

.contact-bar {
  background: #000;
  padding: 20px;
  border-radius: 8px;
  color: #ffffff;             /* ✅ Ensures text is visible */
  text-align: left;
}

.contact-bar p {
  margin-bottom: 10px;
}

/* ========================= */
/* 📱 Mobile Responsiveness  */
/* ========================= */
@media (max-width: 1024px) {
  .contact-map {
    gap: 25px;
    padding: 35px 15px;
  }
}

@media (max-width: 768px) {
  .contact-map {
    grid-template-columns: 1fr; /* 1 column for mobile */
    gap: 20px;
    padding: 30px 15px;
  }
}



/* ================================
   ANIMATIONS
================================ */
@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(30px);}
  100% {opacity: 1; transform: translateY(0);}
}

@keyframes float {
  0%, 100% {transform: translateY(0);}
  50% {transform: translateY(-10px);}
}

@keyframes slideDown {
  0% {transform: translateY(-100%);}
  100% {transform: translateY(0);}
}

@keyframes scroll {
  0% {transform: translateX(0);}
  100% {transform: translateX(-50%);}
}


/* --------------------------
extra
-------------------------- */
/* Prevent any horizontal scroll */
html, body {
  overflow-x: hidden;
}

/* Fix images stretching beyond container */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Fix slider image overflow */
.slider-track img {
  flex-shrink: 0;
}

/* Make the map iframe responsive */
.map-box iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* Mobile-friendly height for map */
@media (max-width: 768px) {
  .map-box iframe {
    height: 250px;
  }
}

/* why chose us */

/* ===================
   RESET & BASE STYLES
   =================== */
 

html, body {
    width: 100%;
    overflow-x: hidden; /* remove unwanted horizontal scroll */
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

/* ===================
   SECTION WRAPPER
   =================== */
.cybersecurity-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center; /* center vertically */
    align-items: center; /* center horizontally */
    padding: 50px 20px;
    background: linear-gradient(135deg, #000, #1a1a1a);
}

/* ===================
   TOP CONTENT AREA
   =================== */
.top-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; /* stack on smaller screens */
    max-width: 1200px;
    width: 100%;
}

/* TEXT AREA */
.top-content .text {
    flex: 1 1 400px;
    animation: fadeInLeft 1s ease-in-out;
}

.top-content h2 {
    color: red;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.top-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* IMAGE AREA */
.top-content .image {
    flex: 1 1 350px;
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease-in-out;
}

.top-content img {
    max-width: 100%;
    height: auto;
    display: block; /* prevent overflow */
    transition: transform 0.3s ease;
}

.top-content img:hover {
    transform: scale(1.05);
}
/* Cards Section */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 65px;
  margin-top: 40px;
  max-width: 1200px;
  width: 100%;
  justify-items: center; /* center items in grid */
}

.card {
  background: #1a1a1a;
  border: 2px solid red;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px; /* keep consistent width */
  width: 100%;
 
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.5);
}

.card h3 {
  color: red;
  margin-bottom: 10px;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .cards {
      grid-template-columns: 1fr;
      justify-items: center; /* force center alignment */
  }

  .card {
      max-width: 350px; /* prevent full stretch */
  }
}

/* ---------------------------talk to our team------------------ */
.security-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  background: linear-gradient(135deg, #1a1a1a, #000);
  overflow: hidden;
}

.content {
  max-width: 50%;
  animation: fadeInLeft 1s ease-in-out;
}

.title {
  font-size: 2.5rem;
  color: #ee1313;
  margin-bottom: 20px;
}

.description {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.5;
  margin-bottom: 25px;
}

.cta-btn {
  padding: 12px 25px;
  font-size: 1rem;
  color: #fff;
  background: #df0e0e;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #590808;
  transform: scale(1.05);
}

.image-wrapper {
  position: relative;
  max-width: 40%;
  animation: fadeInRight 1s ease-in-out;
}

.main-image {
  width: 100%;
  border-radius: 10px;
  filter: grayscale(20%);
  transition: transform 0.5s ease;
}

.main-image:hover {
  transform: scale(1.05);
}

.icon {
  position: absolute;
  background: #e00606;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 1.5rem;
  animation: float 3s infinite ease-in-out;
}

.icon-left {
  top: 10%;
  left: -50px;
}

.icon-right {
  bottom: 15%;
  right: -50px;
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .security-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 5%;
  }

  .content {
    max-width: 100%;
    animation: fadeInUp 1s ease-in-out;
  }

  .image-wrapper {
    max-width: 80%;
    margin-top: 20px;
    animation: fadeInUp 1s ease-in-out;
  }

  .icon-left, .icon-right {
    display: none; /* Hide icons on smaller devices */
  }
}

@media (max-width: 600px) {
  .title {
    font-size: 1.8rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .main-image {
    border-radius: 5px;
  }
}

/* Extra animation for mobile stacking */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ---------------stats section--------------- */
:root {
  --dark-bg: #0b0b0b;
  --dark-red: #fa0606;
  --light-text: #fff;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
}

.stats-section {
  text-align: center;
  padding: 60px 20px;
}

.stats-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: var(--dark-red);
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-card {
  background: linear-gradient(145deg, #1a1a1a, var(--dark-red));
  border-radius: 12px;
  padding: 30px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  text-align: center;
  min-width: 180px;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: var(--light-text);
}

.stat-card p {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
}


/* ------------------------------pricing--------------------------------- */


.pricing-section {
  text-align: center;
  padding: 50px 0px;
}

.pricing-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f10707;
}

.billing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  gap: 10px;
  font-size: 1rem;
  color: #ddd;
}

/* -------------------our clients---------------------- */

.companies-section {
  text-align: center;
  padding: 50px 20px;
}

.companies-section h2 {
  color: #ffffff; /* dark red */
  font-size: 26px;
  margin-bottom: 40px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.logo-card {
  background: #14080b; /* near-black with red tint */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 0px 15px rgba(176, 18, 46, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-card img {
  max-width: 100px;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: filter 0.3s ease;
}

.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 0px 25px rgba(176, 18, 46, 0.7);
}

.logo-card:hover img {
  filter: grayscale(0%) brightness(1);
}

.more-companies {
  margin-top: 20px;
  color: #ccc;
  font-size: 14px;
}



/* ---------------pricing----------------- */
/* Toggle Switch Styling */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #444;
  border-radius: 24px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #cf1d1d;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background-color: #141414;
  border-radius: 10px;
  padding: 30px 20px;
  width: 300px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
}

.card{
  border: 1px solid #cf1313;
}

.card h3 {
  margin-top: 0;
  color: #dc1c1c;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.price span {
  font-size: 0.8rem;
  color: #ccc;
}

.desc {
  font-size: 0.9rem;
  color: #bbb;
  margin: 15px 0;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  color: #ddd;
}

.card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #ff3b3b;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
}

.buy-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #c71818;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.buy-btn:hover {
  background: #cc2c2c;
  transform: scale(1.05);
}



/* --------------------------VAPT Process----------------------- */

  .vulnerability-process {
    background: #0b0b0f;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    max-width: 1200px;   /* ✅ Limits width */
    margin: 0 auto;      /* ✅ Centers section */
    box-sizing: border-box;
  }
  


.vulnerability-process h2 {
  font-size: 2.3rem;
  margin-bottom: 50px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInDown 1s ease forwards;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* Step cards */
.step {
  background: #14080b;
  border: 1px solid rgba(229, 9, 20, 0.5);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(229, 9, 20, 0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: scale(0.9);
}

/* Entry directions */
.step.from-left { transform: translateX(-80px); }
.step.from-right { transform: translateX(80px); }
.step.from-top { transform: translateY(-80px); }
.step.from-bottom { transform: translateY(80px); }

.step.show {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Hover effect */
.step:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(229, 9, 20, 0.7);
}

/* Step content */
.step h3 {
  margin: 20px 0 10px;
  font-size: 1.3rem;
  color: #f1eded;
}

.step p {
  font-size: 0.95rem;
  color: #ccc;
}

/* Circle numbers */
.circle {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background: #e50914;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.6);
  animation: pulse 2s infinite;
}

/* Animations */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 10px rgba(229, 9, 20, 0.4); }
  50% { box-shadow: 0 0 25px rgba(229, 9, 20, 0.9); }
  100% { box-shadow: 0 0 10px rgba(229, 9, 20, 0.4); }
}

/* ========================= */
/* 📱 Mobile Responsiveness  */
/* ========================= */
@media (max-width: 1024px) {
  .vulnerability-process h2 {
    font-size: 2rem;
  }
  .step h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr 1fr; /* 2 per row */
    gap: 25px;
  }
  .step {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr; /* 1 per row */
    gap: 20px;
  }
  .vulnerability-process {
    padding: 50px 15px;
  }
  .vulnerability-process h2 {
    font-size: 1.6rem;
  }
  .circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .step h3 {
    font-size: 1.1rem;
  }
  .step p {
    font-size: 0.9rem;
  }
}


/* ----------------------------Back to Top Button------------------------------- */
#backToTop {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 5000;
  font-size: 20px;
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  border-radius: 10px;
  padding: 3px 8px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease-in-out;

}

#backToTop:hover {
  background: white;
  color: black;
}

/* testimonials */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0d0d0d;
  color: white;
}

.testimonials {
  text-align: center;
  padding: 60px 20px;
}

.section-title {
  font-size: 2rem;
  color: #ff0000;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #ddd;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.testimonial-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.testimonial-card .quote {
  font-size: 2rem;
  color: #ff0000;
  margin-bottom: 10px;
}

.testimonial-card h4 {
  margin-top: 15px;
  margin-bottom: 5px;
  color: #ff4d4d;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: #bbb;
}

.testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------sample report------------------------ */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0d0d0d;
  color: white;
}

.download-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  align-items: center;
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.download-card.show {
  opacity: 1;
  transform: translateY(0);
}

.report-preview {
  position: relative;
}

.report-preview img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.report-preview img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 0, 0, 0.7);
}

.download-content h2 {
  font-size: 2rem;
  color: #ff0000;
  margin-bottom: 15px;
}

.download-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
}

.c-btn {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(45deg, #ff0000, #990000);
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.c-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.9);
}


/* Responsive Design */
@media (max-width: 1024px) {
  .download-card {
    gap: 30px;
    padding: 30px;
  }

  .download-content h2 {
    font-size: 1.8rem;
  }

  .download-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .download-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .report-preview img {
    max-width: 90%;
    margin: 0 auto;
  }

  .download-content h2 {
    font-size: 1.6rem;
  }

  .download-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .download-section {
    padding: 50px 15px;
  }

  .download-card {
    padding: 20px;
  }

  .download-content h2 {
    font-size: 1.4rem;
  }

  .download-content p {
    font-size: 0.85rem;
  }

  .c-btn {
    padding: 12px 22px;
    font-size: 14px;
  }
}

/* ------------------contactbar button--------------------- */

.h-btn {
  position: relative;
  display: inline-block;
  padding: 5px 8px;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(45deg, #ff0000, #990000);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  font-weight: bold;
  text-decoration: none;
  font-size: 10px;
}

.h-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75px;
  width: 50px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
}

.h-btn:hover {
  transform: scale(1.05);
  
}

.h-btn:hover::before {
  left: 125%;
  transition: left 0.5s ease;
}

/* -----------whatsapp-------------------------- */
:root{
  --wa-green: #022507;
  --wa-dark: #041a06;
  --wa-white: #fff;
  --wa-shadow: 0 10px 25px rgba(0,0,0,.25);
}

/* Middle-left placement */
.wa-widget{
  position: fixed;
  left: -150px; /* start hidden off-screen */
  top: 95%;
  transform: translateY(-50%);
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  user-select: none;
  opacity: 0;
  transition: left 0.6s cubic-bezier(0.23, 1, 0.32, 1),
  opacity 0.4s ease;
}

/* Active state: slide in */
.wa-widget.wa-show {
  left: 14px;
  opacity: 1;
}

/* WhatsApp button */
.wa-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--wa-green), #09682c);
  color: var(--wa-white);
  font: 600 14px/1.1 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  text-decoration: none;
  box-shadow: var(--wa-shadow);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.wa-btn:hover{ transform: translateY(-1px); }
.wa-btn:active{ transform: translateY(0); filter: brightness(.95); }

.wa-icon{
  width: 22px;
  height: 22px;
  display: block;
}

/* subtle attention ripple */
.wa-ripple{
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(5, 65, 27, 0.5);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse{
  0%{ box-shadow: 0 0 0 0 rgba(8, 167, 66, 0.42); }
  70%{ box-shadow: 0 0 0 12px rgba(8, 167, 66, 0); }
  100%{ box-shadow: 0 0 0 0 rgba(7, 168, 66, 0); }
}

/* Close (×) badge */
.wa-close{
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  border: none;
  background: #bb0404;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--wa-shadow);
  transition: transform .15s ease, opacity .15s ease;
}
.wa-close:hover{ transform: scale(1.05); }
.wa-close:active{ transform: scale(.96); }

/* Mobile sizing */
@media (max-width: 480px){
  .wa-btn{
    padding: 8px 12px;
    font-size: 13px;
    position: fixed;
  
  }
  .wa-icon{ width: 20px; height: 20px; }
}

/* Hide helper */
.wa-hidden{ display: none !important; }


/* —— Mobile fix: keep the widget fixed & visible —— */
@media (max-width: 600px) {
  /* Keep the floating container fixed and anchored near the bottom-left */
  .wa-widget {
    position: fixed;
    left: -200px;            /* start off-screen (for slide-in) */
    bottom: calc(env(safe-area-inset-bottom, 0px) + 18px);
    top: auto;               /* override desktop top */
    transform: none;         /* no vertical translate on mobile */
    z-index: 99999;
    bottom: 30px;
  }

  /* When shown (after scroll > 300px), slide into view */
  .wa-widget.wa-show {
    left: 12px;
  }

  /* Undo the incorrect fixed positioning on the button */
  .wa-btn {
    position: relative;      /* or 'static' — just not fixed */
    padding: 8px 12px;
    font-size: 13px;
    touch-action: manipulation;
  }

  /* Slightly smaller icon on small screens */
  .wa-icon {
    width: 20px;
    height: 20px;
  }
}

/* ------------------------Get a Quote----------------------------------*/
.quote-tab {
  position: fixed;
  top: 50%;
  left: -120px; /* start hidden off-screen */
  transform: translateY(-50%) rotate(-90deg);
  background-color: #800606;
  color: white;
  padding: 5px 14px;
  border-radius: 0px 0px 4px 4px;
  font-weight: bold;
  font-size: 10px;
  text-decoration: none;
  /* border: 2px solid #b0122e; */
  transition: left 0.5s ease; /* smooth sliding */
  z-index: 999;
  opacity: 0; /* start invisible */
}

.quote-tab.show {
  left: -32px; /* visible position */
  opacity: 1;
}

.quote-tab:hover {
  background-color: #b0122e;
  
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .quote-tab {
    padding: 4px 12px;
    font-size: 10px;
    left: -80px; /* start more hidden for mobile */
  }
  .quote-tab.show {
    left: -28px;
  }
}




/* ---------------------BOTTOM MENU-------------------------------------*/

.bottom-menu {
  background: linear-gradient(135deg, #000000, #4b0000);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  padding: 120px 20px;
}

.bottom-menu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center all columns */
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;          /* center section */
  gap: 15px;
  padding: 20px;
}

.bottom-column {
  flex: 1 1 180px;
  text-align: center;       /* center headings + links */
}

.bottom-column h3 {
  margin-bottom: 6px;
  color: #ff4d4d;
  font-size: 15px;
}

.bottom-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bottom-column ul li {
  margin-bottom: 4px;
  font-size: 13px;
}

.bottom-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s, text-decoration 0.3s;
}

.bottom-column ul li a:hover {
  color: #ff4d4d;
  text-decoration: underline;
}

/* COMPANY INFO */
.company-info .logo {
  font-size: 22px;
  font-weight: bold;
  color: #ff4d4d;
}

.company-info p {
  font-size: 13px;
  margin: 8px 0;
  color: #ccc;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a img {
  width: 26px;
  height: 26px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0) invert(1);
}

.social-icons a:hover img {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(22%) sepia(97%) saturate(6123%) hue-rotate(357deg) brightness(88%) contrast(113%);
}



/* ========================= */
/* MOBILE & TABLET RESPONSIVE */
/* ========================= */

/* Tablet view: 769px - 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .bottom-menu-container {
    gap: 12px;
    padding: 20px;
    align-items: flex-start; /* align left */
  }

  .bottom-column {
    flex: 1 1 45%; /* 2 columns per row */
    text-align: left; /* text align left */
  }

  .bottom-column h3 {
    font-size: 14px;
    text-align: left;
  }

  .bottom-column ul li {
    font-size: 12px;
    margin-bottom: 3px;
    text-align: left;
  }

  .social-icons a img {
    width: 24px;
    height: 24px;
  }
}

/* Mobile view: <=768px */
@media (max-width: 768px) {
  .bottom-menu-container {
    flex-direction: column;
    align-items: flex-start; /* align left */
    gap: 12px;
    padding: 15px;
  }

  .bottom-column {
    flex: 1 1 100%;
    text-align: left; /* text align left */
  }

  .bottom-column h3 {
    margin-bottom: 5px;
    text-align: left;
  }

  .bottom-column ul li {
    margin-bottom: 3px;
    text-align: left;
  }

  .social-icons a img {
    width: 22px;
    height: 22px;
  }
}




/* ---------------------footer----------------------- */
.footer{
  color: grey;
  font-size: small;
  text-align: center;
  padding: 20px;
  background-color: #111;
  border-top: 1px solid rgb(56, 54, 54);
}