 * {margin:0; padding:0; box-sizing:border-box; font-family:"Inter",sans-serif;}
    body {background:#05060a; color:white; overflow-x:hidden; scroll-behavior:smooth;}
    a {text-decoration:none;}
    h1,h2,h3,p {margin:0;}
    /* Background Blurs */
    .bg-blur {position:fixed;width:520px;height:520px;border-radius:50%;filter:blur(150px);opacity:0.35;z-index:-1; transition: all 0.6s ease;}
    .blur-1 {top:-140px; left:-140px; background:#4f9cff;}
    .blur-2 {bottom:-140px; right:-140px; background:#ff4fd8;}
     /* Social Icons */
    .social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}


    /* Header */
    .header {position:fixed; top:0; width:100%; padding:18px 8%; display:flex; justify-content:space-between; align-items:center; backdrop-filter:blur(18px); background:rgba(255,255,255,0.04); border-bottom:1px solid rgba(255,255,255,0.08); z-index:999;}
    .brand {font-size:22px; font-weight:700;}
    .brand span {color:#4f9cff;}
    .nav {display:flex; gap:22px; align-items:center; transition:0.3s;}
    .nav a {color:white; opacity:0.8; transition:0.25s;}
    .nav a:hover {opacity:1;}
    .nav-cta {
  padding:10px 16px;
  border-radius:14px;
  background:blue;
  color:#4f9cff; /* ONLY Book Audit text color */
  font-weight:600;
}

/* Optional hover (recommended) */
.nav-cta:hover {
  color:#111;
  background-color:#FFF ;
}

    .menu-btn {display:none; font-size:26px; background:none; border:none; color:white; cursor:pointer;}

    /* Hero */
    .hero {padding:150px 8% 90px; text-align:center; position:relative; overflow:hidden;}
    .hero-glass {max-width:920px; margin:auto; padding:65px 40px; border-radius:30px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.10); backdrop-filter:blur(25px); box-shadow:0 0 70px rgba(0,0,0,0.55); opacity:0; transform:translateY(30px); transition:1s;}
    .hero h1 {font-size:56px; line-height:1.15;}
    .hero h1 span {color:#4f9cff;}
    .hero p {margin-top:18px; opacity:0.75; font-size:18px; line-height:1.6;}
    .hero-actions {margin-top:32px; display:flex; justify-content:center; gap:14px; flex-wrap:wrap;}
    .btn-primary {background:white; color:black; padding:14px 22px; border-radius:16px; font-weight:700; transition:0.3s; display:inline-block;}
    .btn-primary:hover {transform:translateY(-3px); box-shadow:0 4px 20px rgba(79,156,255,0.35);}
    .btn-outline {border:1px solid rgba(255,255,255,0.20); padding:14px 22px; border-radius:16px; color:white; opacity:0.85;}
    .btn-outline:hover {opacity:1; box-shadow:0 4px 20px rgba(255,79,216,0.25);}
    .hero-stats {margin-top:45px; display:flex; justify-content:center; gap:40px; flex-wrap:wrap; opacity:0; transform:translateY(20px); transition:1s;}
    .hero-stats h3 {font-size:26px; color:#4f9cff;}
    .hero-stats p {font-size:14px; opacity:0.7;}

    /* Sections */
    .section {padding:95px 8%; opacity:0; transform:translateY(30px); transition:1s;}
    .section-title {text-align:center; margin-bottom:45px;}
    .section-title h2 {font-size:40px;}
    .section-title p {opacity:0.7; margin-top:10px; max-width:650px; margin-inline:auto; line-height:1.6;}

    /* Grid & Glass Card */
    .grid {display:grid; gap:22px; grid-template-columns:repeat(auto-fit,minmax(260px,1fr));}
    .glass-card {padding:28px; border-radius:22px; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.10); backdrop-filter:blur(20px); transition:0.4s; opacity:0; transform:translateY(20px);}
    .glass-card:hover {transform:translateY(-8px); border:1px solid rgba(255,255,255,0.18); box-shadow:0 12px 25px rgba(79,156,255,0.3);}
    .glass-card h3 {font-size:18px; margin-bottom:10px;}
    .glass-card p {opacity:0.75; line-height:1.6; font-size:15px;}
    .cta-strip {margin:70px auto; padding:75px 8%; text-align:center; border-radius:30px; background:linear-gradient(135deg, rgba(79,156,255,0.12), rgba(255,79,216,0.10)); border:1px solid rgba(255,255,255,0.12); opacity:0; transform:translateY(30px); transition:1s;}
    .cta-strip h2 {font-size:34px; margin-bottom:12px;}
    .cta-strip p {opacity:0.75; margin-bottom:25px;}

    /* FAQ */
    .faq-box {max-width:850px; margin:auto; display:flex; flex-direction:column; gap:14px;}
    .faq-item {border-radius:18px; overflow:hidden; border:1px solid rgba(255,255,255,0.10); background:rgba(255,255,255,0.04);}
    .faq-question {width:100%; padding:18px; font-size:16px; font-weight:600; text-align:left; background:none; border:none; color:white; cursor:pointer; display:flex; justify-content:space-between; align-items:center;}
    .faq-answer {display:none; padding:0 18px 18px; opacity:0.75; line-height:1.6; transition:0.3s;}

    /* Contact */
    form {margin-top:25px; display:flex; flex-direction:column; gap:14px;}
    input, select {padding:14px; border-radius:14px; border:none; outline:none; background:rgba(255,255,255,0.06); color:white;}
    input::placeholder {color:rgba(255,255,255,0.55);}
    button.full {border:none; cursor:pointer;}

    .brand img {
  height: 34px;          /* desktop size */
  width: auto;
  display: block;
}

/* Mobile tweak */
@media (max-width: 768px) {
  .brand img {
    height: 28px;
  }
}


  
    /* Animations on scroll */
    .show {opacity:1 !important; transform:translateY(0) !important;}

    /* Mobile */
    @media(max-width:768px){.hero h1{font-size:40px;}.nav{display:none; position:absolute; top:75px; right:8%; flex-direction:column; padding:18px; border-radius:18px; background:rgba(0,0,0,0.85);}.nav.active{display:flex;}.menu-btn{display:block;}}

    /* ================= FOOTER ================= */

.footer {
  margin-top: 120px;
  padding: 70px 8% 30px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 16px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.65;
  max-width: 320px;
}

.footer-col a {
  display: inline-block;
  position: relative;
  font-size: 14px;
  margin-bottom: 10px;
  color: #ffffff;
  opacity: 0.65;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

/* Premium underline hover */
.footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #4f9cff;
  transition: width 0.3s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: #4f9cff;
}

.footer-col a:hover::after {
  width: 100%;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 13px;
  opacity: 0.5;
}

/* Responsive Tweak */
@media (max-width: 600px) {
  .footer-inner {
    gap: 30px;
  }

  .footer {
    padding: 60px 6% 25px;
  }
}
/* ================= FOOTER ================= */

.footer {
  margin-top: 120px;
  padding: 80px 8% 30px;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
}

.footer-logo img {
  height: 36px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.65;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}

/* Footer Social Icons */

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social img {
  width: 28px;
  height: 28px;
  opacity: 0.7;
  transition: 0.3s ease;
}

.footer-social img:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 18px;
  opacity: 0.85;
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: white;
  opacity: 0.6;
  transition: 0.3s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: #4f9cff;
  transform: translateX(4px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  opacity: 0.5;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
