/* .hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000; /* or your background image */
  /* text-align: center;
  padding: 20px;
}

.hero .container {
  max-width: 1200px;
  width: 100%;
} */

.hero h1 {
  font-size: 4rem; /* Desktop */
  color: white;
  margin-bottom: 30px;
  text-align: center;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* important for mobile */
}

.btn {
  padding: 14px 28px;
  background: white;
  color: black;
  text-decoration: none;
  font-size: 16px;
  border-radius: 4px;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.8;
}

.btn-outline {
  background: transparent;
  border: 3px solid white;
  color: white;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
}
/* SECTION */
.why-choose {
  padding: 120px 0;
  background: radial-gradient(circle at top, #111, #000);
  color: #fff;
}

/* CONTAINER */
.container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

/* TITLE */
.section-title {
  font-size: 62px;
  text-align: center;
  font-weight: 800;
  background: linear-gradient(
    90deg,
    #ff4500,
    #ff6b00,
    #ff9a44,
    #ff4500
  );
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: textShine 6s linear infinite;
  text-shadow: 0 0 50px rgba(255, 107, 0, 0.5);
}

/* TITLE ANIMATION */
@keyframes textShine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 45px;
  margin-top: 90px;
}

/* CARD */
.why-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.45s ease;
  position: relative;
  overflow: hidden;
}

/* CARD GLOW */
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover::after {
  opacity: 1;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-15px) scale(1.04);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

/* ICON */
.icon-glow {
  width: 78px;
  height: 78px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b00, #ff4500);
  box-shadow: 0 0 35px rgba(255, 107, 0, 0.7);
  transition: transform 0.4s ease;
}

.icon-glow i {
  font-size: 32px;
  color: #fff;
}

/* ICON ANIMATION */
.why-card:hover .icon-glow {
  transform: rotate(12deg) scale(1.12);
}

/* TEXT */
.why-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 600;
}

.why-card p {
  font-size: 15.5px;
  line-height: 1.75;
  opacity: 0.92;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 42px;
  }

  .why-grid {
    margin-top: 60px;
    gap: 30px;
  }
}


/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  height: 80px;
  width: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 999;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  margin-top: 100px;
  height: 300px;
  width: auto;
}

/* LINKS */
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-item {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

/* HOVER ANIMATION */
.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ff7a00;
  transition: width 0.3s ease;
}

.nav-item:hover {
  color: #ff7a00;
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.nav-item.active {
  color: #ff7a00;
}

/* MENU BUTTON */
.menu-btn {
  display: none;
  cursor: pointer;
}

.menu-btn i {
  font-size: 28px;
  color: #fff;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    font-size: 15px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #222;
    flex-direction: column;
    gap: 25px;
    padding-top: 40px;
    transition: right 0.4s ease;
  }

  .nav-links.active {
   
    height: auto;
  }

  .nav-item {
    font-size: 10px;
  }
  .logo img {
    height: 200px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
  .navbar {
    /* padding: ; */
    height: 70px;
   
  }

  .logo img {
    max-height: 200px;
  }

  .nav-links {
    text-align: right;
    top: 70px;
    height: calc(100vh - 70px);
  }

  .menu-btn i {
    font-size: 30px;
  }

  .nav-item {
    font-size: 10px;
  }
}


   .video-container {
  width: 100%;
  max-width: 1000px;   /* optional */
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.profile h1{
    font-size: 50px;
  text-align: center;
  /* margin-top: 20px; */
  color: #1a1a1a;
  padding: 50px;        /* soft black */
  font-weight: 600;
  letter-spacing: 1px;
   transform: translateY(20px);
  /* opacity: 0; */
  transition: 0.4s ease;
}
.profile h1:hover{
  text-decoration: underline;
  font-weight: 800; 
  transform: translateY(0);
}
.btn {
  display: block;
  margin: 20px auto; /* centers the button */
  color:black ;
}

/* TABLET */
@media (max-width: 768px) {
  .btn {
    padding: 12px 22px;
    font-size: 15px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .download-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
}

 
