body {
  margin:0;
  font-family:'Montserrat',sans-serif;
  color:#1e293b;
  background:#f1f5f9;
}

/* HEADER */
  /* ===== HEADER FIXED CSS ===== */

body {
  margin: 0;
}

/* Header */
/* ===== HEADER FIX ===== */

/* ===== HEADER PERFECT FIX ===== */

header {
  background: #0f172a;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center; /* IMPORTANT: vertical center */

  position: sticky;
  top: 0;
  z-index: 1000;

  height: 80px; /* fixed height for proper alignment */
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Logo container */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

/* Logo image FIX */
.logo img {
  height: 120px;          /* perfect visible size */
  width: auto;
  display: block;        /* removes inline spacing issue */
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  height: 100%;
}

nav a {
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1; /* FIX: removes vertical misalignment */
  transition: 0.3s;
}

nav a:hover {
  color: #38bdf8;
}



/* Optional: Make logo more visible on dark bg */
.logo img {
  filter: brightness(1.2) contrast(1.1);
}
/* HERO */
.hero {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color:#fff;
  text-align:center;
  padding:120px 20px;
}
.hero h1 {
  font-size:45px;
  font-weight:700;
}
.hero p {
  color:#cbd5f5;
  font-size:18px;
}

/* SECTION */
section { padding:80px 20px; }
.section-dark { background:#f8fafc; }

/* CARD */
.card {
  background:#fff;
  padding:25px;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}
.card:hover {
  transform:translateY(-8px);
}

/* GRID */
.grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

/* BUTTON */
.btn-custom {
  background:linear-gradient(135deg,#dc2626,#ef4444);
  color:#fff;
  padding:12px 28px;
  border-radius:30px;
  text-decoration:none;
  display:inline-block;
  margin-top:20px;
}

/* CTA */
.cta {
  background:linear-gradient(135deg,#1e3a8a,#0ea5e9);
  color:#fff;
  text-align:center;
  padding:60px 20px;
  border-radius:20px;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 55px;      /* FIX */
  height: 55px;     /* FIX */

  background: #25D366;
  color: #fff;

  display: flex;    /* center icon */
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 24px;

  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.whatsapp:hover {
  transform: scale(1.1);
  background: #20c45a;
}

.footer {
  position: relative;
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #cbd5f5;
  padding: 70px 20px 20px;
  overflow: hidden;
}

/* Glow Effect */
.footer::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #38bdf8;
  filter: blur(120px);
  opacity: 0.15;
  top: -100px;
  left: -100px;
}

/* Second Glow */
.footer::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #6366f1;
  filter: blur(120px);
  opacity: 0.15;
  bottom: -100px;
  right: -100px;
}

/* Ensure content stays above glow */
.footer .container {
  position: relative;
  z-index: 2;
}

/* Headings */
.footer h4, 
.footer h5 {
  color: #fff;
  margin-bottom: 15px;
}

/* Links */
.footer a {
  color: #cbd5f5;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #38bdf8;
  padding-left: 5px;
}

/* List */
.footer ul li {
  margin-bottom: 10px;
}


/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  background: rgba(255,255,255,0.08);
  padding: 10px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.social-icons a:hover {
  background: #38bdf8;
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  font-size: 14px;
  margin-top: 30px;
}
.profile{
  font-size: 40px;
    font-weight: 700;
}
/* RESULTS SECTION */
.results {
  padding: 80px 40px;
  background: #f8fafc;
   font-size: 40px;
    font-weight: 700;
}

/* Container (matches your site spacing) */
.container {
  /* max-width: 1200px;
  margin: 0 auto; */
}

/* Heading LEFT aligned */
.results h2 {
  font-size: 40px;
    font-weight: 700;
  margin-bottom: 40px;
  color: #0f172a;
  text-align: left;
}

/* Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Card */
.result-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: left; /* IMPORTANT */
}

/* Hover */
.result-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Icon */
.icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* Number */
.result-card h3 {
  font-size: 28px;
  color: #2563eb;
  margin-bottom: 5px;
}

/* Text */
.result-card p {
  font-size: 15px;
  color: #334155;
  margin: 0;
}

.result-card span {
  font-size: 13px;
  color: #64748b;
}
/* ===== MOBILE MENU ===== */

.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* Desktop Nav */
nav {
  display: flex;
  align-items: center;
}

/* Mobile Style */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: #0f172a;
    flex-direction: column;
    text-align: center;

    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
  }

  nav.active {
    max-height: 300px;
    padding: 20px 0;
  }

  nav a {
    margin: 10px 0;
    display: block;
  }
}
