* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
body::before {
  content: "";
  position: fixed;
  inset: 0;

  background: url("../assets/hero-bg1.png.png") no-repeat center center;
  background-size: cover;

  filter: blur(18px);
  transform: scale(1.1); /* blur edges hide karne ke liye */

  z-index: -1;
}

/* GLASS CONTAINER */
.glass-wrapper {
  width: 92%;
  height: 88vh;

  background: url("../assets/hero-bg.png") no-repeat center center fixed;
  background-size: cover;
  
  backdrop-filter: blur(14px);       /* blur ONLY content behind */
  -webkit-backdrop-filter: blur(14px);

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 30px 50px;
  color: white;
  overflow-y: auto;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 18px;
  font-weight: 700;
}

.nav-links a {
  margin: 0 18px;
  font-size: 14px;
  color: #05fd16;
  text-decoration: none;
}

.nav-links .active {
  color: rgb(255, 255, 255);
}

.nav-btn {
  border: 1px solid #38bdf8;
  background: transparent;
  color: #38bdf8;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  height: 65%;
}

.hero-left {
  width: 45%;
}

.hero-left h1 {
  font-size: 60px;
  line-height: 1.1;
}

.accent {
  color: #38bdf8;
}

.hero-left p {
  margin: 20px 0 30px;
  color: #cbd5f5;
  max-width: 420px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.primary-btn {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

.link {
  color: #cbd5f5;
  font-size: 14px;
}

/* INFO CARD */
.info-card {
  display: flex;
  align-items: center;
  gap: 25px;

  background: rgba(15, 23, 42, 0.75);
  border-radius: 18px;
  border: 1px solid #1e293b;
  padding: 25px 30px;
  max-width: 70%;
}

.shield-icon {
  width: 70px;
}

.page-section p{
     
    margin: 16px;
    
}
.cta-box {
  margin-top: 50px;
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}
/* MAIN CONTAINER FIX */
.phishing-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* PROGRESS BAR */
.progress-bar {
  height: 8px;
  background: #2c2c54;
  border-radius: 10px;
  overflow: hidden;
}

.progress {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #00f2fe, #4facfe);
}

/* EMAIL CARD */
.email-card {
  background: #1e1e2f;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* FROM TEXT */
.from span {
  color: #00e5ff;
  font-weight: 600;
}

/* TITLE */
.email-title {
  margin: 12px 0;
  font-size: 20px;
  font-weight: 600;
}

/* EMAIL BODY */
.email-body {
  background: #111827;
  padding: 20px;
  border-radius: 12px;
  line-height: 1.6;
}

/* FAKE LINK */
.fake-link span {
  color: #ff6b6b;
  font-weight: 600;
  word-break: break-all;
}

/* QUESTION */
.question {
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

/* BUTTON WRAPPER */
.buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

/* BUTTONS */
.btn {
  flex: 1;
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* LEGIT */
.legit {
  background: #00c853;
  color: #000;
  font-weight: 600;
}

/* PHISHING */
.phishing {
  background: #d50000;
  color: #fff;
  font-weight: 600;
}

/* ========================================
   RESPONSIVE STYLES - MOBILE FRIENDLY
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
  .glass-wrapper {
    width: 96%;
    padding: 20px 30px;
  }
  
  .hero-left h1 {
    font-size: 48px;
  }
  
  .info-card {
    max-width: 90%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .glass-wrapper {
    width: 98%;
    height: auto;
    min-height: 95vh;
    padding: 20px;
    margin: 10px auto;
    border-radius: 16px;
  }
  
  /* NAVBAR MOBILE */
  .navbar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .nav-links a {
    margin: 0 8px;
    font-size: 13px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
  }
  
  .nav-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  /* HERO MOBILE */
  .hero {
    flex-direction: column;
    height: auto;
    padding: 30px 0;
    text-align: center;
  }
  
  .hero-left {
    width: 100%;
  }
  
  .hero-left h1 {
    font-size: 32px;
    line-height: 1.2;
  }
  
  .hero-left p {
    font-size: 14px;
    max-width: 100%;
    margin: 15px auto 25px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .primary-btn {
    width: 100%;
    max-width: 250px;
    padding: 14px 24px;
    font-size: 16px;
  }
  
  /* INFO CARD MOBILE */
  .info-card {
    flex-direction: column;
    text-align: center;
    max-width: 100%;
    padding: 20px;
    gap: 15px;
  }
  
  .shield-icon {
    width: 50px;
  }
  
  .info-card p {
    font-size: 14px;
  }
  
  /* PHISHING CONTAINER MOBILE */
  .phishing-container {
    padding: 15px;
    margin: 20px auto;
  }
  
  .email-card {
    padding: 15px;
  }
  
  .email-title {
    font-size: 16px;
  }
  
  .email-body {
    padding: 15px;
    font-size: 14px;
  }
  
  .buttons {
    flex-direction: column;
  }
  
  .btn {
    padding: 16px;
    font-size: 15px;
  }

  .question {
    font-size: 16px;
  }
  
  /* CTA BOX MOBILE */
  .cta-box {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .glass-wrapper {
    padding: 15px;
    border-radius: 12px;
  }
  
  .logo {
    font-size: 16px;
  }
  
  .nav-links a {
    font-size: 12px;
    margin: 0 5px;
    padding: 5px 8px;
  }
  
  .hero-left h1 {
    font-size: 26px;
  }
  
  .hero-left p {
    font-size: 13px;
  }
  
  .info-card {
    padding: 15px;
  }
  
  .info-card p {
    font-size: 13px;
  }
}


/* ========================================
   FEATURES PAGE RESPONSIVE
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.3);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #38bdf8;
}

.feature-card p {
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.6;
}

/* HOW IT WORKS PAGE */
.steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.step-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px 25px;
  font-size: 16px;
  color: #e2e8f0;
  transition: all 0.3s ease;
}

.step-card:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.3);
}

/* ABOUT PAGE */
.about-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-list li {
  padding: 10px 0;
  font-size: 15px;
  color: #cbd5f5;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.about-list li:last-child {
  border-bottom: none;
}

/* CONTACT PAGE */
.contact-box {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px;
  margin-top: 30px;
}

.contact-box p {
  padding: 12px 0;
  font-size: 16px;
  color: #e2e8f0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-box p:last-child {
  border-bottom: none;
}

/* PAGE SECTION RESPONSIVE */
.page-section {
  padding: 40px 0;
  max-width: 800px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.page-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #38bdf8;
}

.page-section h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #e2e8f0;
}

.page-section p {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5f5;
  margin-bottom: 15px;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-card h3 {
    font-size: 16px;
  }
  
  .step-card {
    padding: 15px 20px;
    font-size: 14px;
  }
  
  .page-section {
    padding: 25px 0;
    max-width: 100%;
  }
  
  .page-section h2 {
    font-size: 26px;
  }
  
  .page-section h3 {
    font-size: 18px;
  }
  
  .page-section p {
    font-size: 14px;
  }
  
  .contact-box {
    padding: 20px;
  }
  
  .contact-box p {
    font-size: 14px;
  }
  
  .about-list li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .page-section h2 {
    font-size: 22px;
  }
  
  .feature-card {
    padding: 15px;
  }
  
  .feature-card h3 {
    font-size: 15px;
  }
  
  .feature-card p {
    font-size: 13px;
  }
}
