*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--gray);
  line-height: 1.6;
  scroll-behavior: smooth;
}

:root {
  --primary: #fcb200;
  --secondary: #f5f5f7;
  --dark: #0e1013;
  --light: #ffffff;
  --gray: #666;
  --radius: .4rem;
}

/* ───────────────────────────── GENERAL */
/* 
*::before,
*::after { box-sizing: border-box; }



img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 { margin: 0 0 .6rem; color: var(--dark); font-weight: 700; }
h1   { font-size: 2.6rem; }
h2   { font-size: 2rem;  }
h3   { font-size: 1.3rem; }
h4,h5,h6 { font-size: 1rem; }

p    { margin: 0 0 1rem; }

a    { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); } */

/* Utility Flex / Grid */
/* .flex   { display: flex; }
.grid   { display: grid; gap: 2rem; }
.jc-between { justify-content: space-between; }
.jc-center  { justify-content: center; }
.ai-center  { align-items: center; } */

/* Containers */
/* .container { width: min(90%, 1200px); margin-inline: auto; } */

/* Buttons */
/* .btn, .btn-dark, .btn-outline {
  padding: .75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: .25s;
  display: inline-block;
}

.btn       { background: var(--primary); color: var(--dark); }
.btn:hover { background: var(--dark);   color: var(--light); }

.btn-dark          { background: var(--dark); color: var(--light); }
.btn-dark:hover    { opacity: .85; }

.btn-outline       { border-color: var(--primary); color: var(--primary); background: none; }
.btn-outline:hover { background: var(--primary); color: var(--dark); } */

/* Section headings */
/* .section-head { text-align: center; margin-bottom: 3rem; }
.section-head .sub     { color: var(--primary); font-size: .9rem; letter-spacing: 2px; }
.section-head .heading { margin: .3rem 0 .6rem; } */



/* -----------------------------code ----------------- */
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 10px;
  color: #333;
  font-weight: 700;
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4, h5, h6 { font-size: 18px; }

p {
  margin: 0 0 15px;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #fcb200;
}

/* Simple Flex & Grid */
.flex {
  display: flex;
}

.grid {
  display: grid;
  gap: 20px;
}

.jc-between {
  justify-content: space-between;
}

.jc-center {
  justify-content: center;
}

.ai-center {
  align-items: center;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Buttons */
.btn, .btn-dark, .btn-outline {
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  transition: 0.3s;
}

.btn {
  background: #fcb200;
  color: #000;
}

.btn:hover {
  background: #000;
  color: #fff;
}

.btn-dark {
  background: #000;
  color: #fff;
}

.btn-dark:hover {
  opacity: 0.85;
}

.btn-outline {
  border: 2px solid #fcb200;
  color: #fcb200;
  background: none;
}

.btn-outline:hover {
  background: #fcb200;
  color: #000;
}

/* Section Heading */
.section-head {
  text-align: center;
  margin-bottom: 50px;
 
}



.section-head .sub  {
  color: #0a0a0a;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  
}

.section-head .heading {
  margin: 10px 0 20px;
  font-size: 32px;
  color: #333;
}
/*  */

/* ───────────────────────────── 1. TOPBAR */
/* .topbar {
  background: var(--dark);
  color: var(--light);
  font-size: .8rem;
  padding: .4rem 0;
}
.topbar span { margin-right: 1.5rem; display: inline-flex; align-items: center; }
.topbar i    { color: var(--primary); margin-right: .4rem; }
.topbar .social a { margin-left: .8rem; } */
.topbar {
  background: #111;           /* Dark background */
  color: #fff;                /* White text */
  font-size: 13px;
  padding: 6px 0;
  text-align: center;
}

.topbar span {
  margin-right: 24px;
  display: inline-flex;
  align-items: center;
}

.topbar i {
  color: #fcb200;             /* Highlight icon color */
  margin-right: 6px;
}

.topbar .social a {
  margin-left: 12px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.topbar .social a:hover {
  color: #fcb200;
}

/* ───────────────────────────── 2. NAVBAR */

/* Navbar */
.navbar {
  background: #080000;                            
  /* box-shadow: 0 2px 6px rgba(23, 1, 1, 0.1); */
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 10px 20px;
}

/* Logo */
.logo {
  font-size: 28px;
  color: #fcb200;
  display: flex;
  align-items: center;
}

.logo i {
  margin-right: 6px;
}

/* Hamburger (hidden by default) */
#nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  background: #333;
  transition: 0.3s;
}

.hamburger span {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span::before {
  top: -10px;
}

.hamburger span::after {
  top: 10px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
  justify-content: center;
}

.nav-links a {
  position: relative;
  padding: 15px 0;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  
}

.nav-links a.active,
.nav-links a:hover {
  color: #fcb200;
}

.nav-links .btn {
  margin-left: 20px;
}

/* Responsive Burger Menu */
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    transform-origin: top;
    transform: scaleY(0);
    transition: 0.3s;
  }

  #nav-toggle:checked ~ nav {
    transform: scaleY(1);
  }

  .nav-links {
    flex-direction: column;
    padding: 20px 0;
  }

  .nav-links a {
    padding: 10px 20px;
  }
}
/* ───────────────────────────── 3. HERO */


.hero-section {
  position: relative;
  background: rgba(0, 0, 0, 0.6); /* fallback background color */
  color: #111;
  text-align: center;
  padding: 100px 20px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  animation: fadeInUp 1s ease-in-out;
}




.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('home.jpg'); /* Ensure this path is correct */
  background-size: cover;
  background-position: center;
  opacity: 0.35; /* Lower value = more transparent */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content .subtitle {
  color: #ffc107;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 40px;
  font-style: calc();
}

.track-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.track-form input {
  padding: 20px;
  font-size: 18px;
  border: none;
  flex: 1;
  min-width: 300px;
  border-radius: 8px 0 0 8px;
}

.track-form button {
  padding: 20px 30px;
  background-color: #ffc107;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}


.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 320px;
  flex: 1;
  transition: transform 0.3s ease;
}

.features-text h6
{
  font-size: 28px;
  color: red;
}


.feature-card:hover {
  transform: translateY(-5px);
}

.circle {
  width: 100px;
  height: 100px;
  border: 2px solid #ddd;
  border-radius: 50%;
  line-height: 100px;
  font-size: 24px;
  font-weight: 600;
  margin: 0 auto 20px;
  color: #333;
}

.feature-card h3 {
  font-size: 20px;
  color: #043d3b;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 18px;
  color: #666688;
  margin-bottom: 25px;
  line-height: 1.5;
}

.score {
  font-size: 18px;
  font-weight: 700;
  color: #ff4433;
  border-bottom: 2px solid #ff4433;
  display: inline-block;
  padding-bottom: 4px;
}


/* ───────────────────────────── 4. ABOUT */

.about-text  h6 { 
  animation: slideInLeft 1.2s ease-in-out;
  font-size: 30px;
  
}
.about-text h2
{
  font-size: 22px;
}

.about-text p{

  font-style: normal;
  font-size: 14px;
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 30px;
  padding: 50px 20px;
}

.about-img {
  position: relative;
}

.about-img img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}

.experience {
  position: absolute;
  bottom: -30px;
  left: 24px;
  background: #fcb200;
  color: #000;
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ───────────────────────────── 5. QUOTE BANNER */
/* 
.quote-banner {
  background: var(--secondary);
  padding: 4rem 0;
}
.quote-banner .grid { grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 3rem; }
.quote-text .counters { grid-template-columns: repeat(3,1fr); margin-top: 2rem; }
.quote-text .counters h3 { color: var(--primary); font-size: 2.2rem; margin-bottom: .3rem; }
.quote-form { display: flex; flex-direction: column; gap: 1rem; }
.quote-form input, .quote-form select {
  padding: .9rem 1.2rem; border: none; border-radius: var(--radius);
}
.quote-form button { width: 100%; } */

.quote-banner {
  background: #f5f5f7; /* Light grey background */
  padding: 60px 0;
}

.quote-banner .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.quote-text .counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  text-align: center;
}

.quote-text .counters h3 {
  color: #fcb200;
  font-size: 36px;
  margin-bottom: 10px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-form input,
.quote-form select {
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.quote-form button {
  width: 100%;
  padding: 14px 18px;
  background-color: #fcb200;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

/* ───────────────────────────── 6. SERVICES */



.services .card {
  animation: fadeInUp 1s ease-in-out;
}
.services .card:nth-child(2) {
  animation-delay: 0.2s;
}
.services .card:nth-child(3) {
  animation-delay: 0.4s;
}
.services .card:nth-child(4) {
  animation-delay: 0.6s;
}

.services .card-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); }
.services .card {
  background: var(--secondary);
  padding: 2.2rem 1.6rem;
  border-radius: var(--radius);
  text-align: center;
  transition: .1s transform;
}



.services .card:hover { transform: translateY(-6px); }
.icon { font-size: 2.2rem; background: var(--primary); color: var(--dark); width: 3.4rem; height: 3.4rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 1rem; }
.services a { font-weight: 600; }

/* ───────────────────────────── 7. FEATURES */
.features-banner { background: var(--secondary); padding: 4rem 0; }
.features-banner .grid { grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 3rem; align-items: center; }
.features-text ul { list-style: none; padding: 0; margin: 1rem 0 2rem; }
.features-text li { margin-bottom: .8rem; position: relative; padding-left: 2rem; font-weight: 600; }
.features-text li::before {
  content: "\f192"; /* Font Awesome dot-circle */
  font-family: "Font Awesome 5 Free"; font-weight: 900;
  position: absolute; left: 0; top: 0; color: var(--primary);
}



/* ───────────────────────────── 11. BLOG */

.how-it-works {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.how-it-works h5 {
  color: red;
  font-size: 30px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.how-it-works h2 {
  font-size: 28px;
  font-weight: 800;
  color: #0a0a23;
  margin-bottom: 50px;
  line-height: 1.3;
}

.process-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.step {
  width: 250px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.icon {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 50px;
  height: 50px;
  filter: invert(32%) sepia(100%) saturate(7500%) hue-rotate(0deg);
}

.step-number {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: #000;
  color: #fff;
  font-weight: bold;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 16px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.step p {
  color: #777;
  font-size: 16px;
  line-height: 1.5;
}



/* ───────────────────────────── 12. FOOTER */
.footer {
  background: var(--dark); color: var(--light); margin-top: 4rem;
  padding: 4rem 0 2rem;
}
.footer .grid { grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 2.5rem; }
.footer h4 { margin-bottom: 1rem; color: var(--primary); }
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: .5rem; }
.newsletter { display: flex; margin-top: 1rem; }
.newsletter input {
  flex: 1; padding: .7rem 1rem; border: none; border-radius: var(--radius) 0 0 var(--radius);
}
.newsletter button {
  padding: .7rem 1rem; background: var(--primary); border: none;
  border-radius: 0 var(--radius) var(--radius) 0; cursor: pointer;
}
.newsletter button i { color: var(--dark); }
.footer .social a { margin-right: .6rem; }
.social a i { transition: .3s; }
.social a:hover i { color: var(--primary); }

/* Bottom line */
.copyright {
  text-align: center; padding-top: 1.6rem; border-top: 1px solid #222;
  font-size: .85rem; }

/* ───────────────────────────── Back-to-Top button */
.back-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem;
  background: var(--primary); color: var(--dark);
  width: 2.8rem; height: 2.8rem; display: grid; place-items: center;
  border-radius: 50%; font-size: 1.2rem; box-shadow: 0 4px 12px rgba(0,0,0,.25);
  transition: .3s; opacity: .8;
}
.back-top:hover { transform: translateY(-4px); opacity: 1; }



/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-100px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  0% { opacity: 0; transform: scale(0.3); }
  20% { transform: scale(1.1); }
  40% { transform: scale(0.9); }
  60% { transform: scale(1.03); }
  80% { transform: scale(0.97); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-100px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.fade-up {
  animation: fadeInUp 1s ease-out forwards;
}
.slide-in-left {
  animation: slideInLeft 1s ease-out forwards;
}
.bounce-in {
  animation: bounceIn 0.8s ease-out forwards;
}

fade-up {
  animation: fadeInUp 1s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 1s ease-out forwards;
}

.bounce-in {
  animation: bounceIn 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

/* Optional: default opacity set by JS */
[data-anim] {
  opacity: 0;
  transition: opacity 0.3s ease;
}


