

header {
  background-color: #141414;
}

body {
  margin: 0;
  font-family: 'Roboto Condensed', sans-serif;
  background-color: #111;
  color: #fff;
}

a {
  text-decoration: none;
}



nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  z-index: 9999;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
}

.nav__logo a {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f08800;
  line-height: 1.5rem;
}



.nav__menu__btn {
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  display: none;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
}


.nav__links {
  bottom: 0;
  display: flex;
  list-style: none;
  gap: 2rem;
  left: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row;  /* 👈 Yahi galat tha */
  transition: transform 0.5s;
  z-index: -1;
  gap: 0.1rem;
  padding: 2rem;
  margin-right: 200px;
  list-style: none;
}

.nav__links.open {
  transform: translateY(100%);
}

.nav__links a {
  font-size: 1rem;
  color: #ffffff;
  white-space: nowrap;
}

.nav__links a:hover {
  color: #ff9306;
}




.section__container {
  max-width: 1200px;
  margin: auto;
  padding: 4rem 1rem;
}

.service__hero {
  background: url('assets/service-hero.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
   overflow: hidden; 
  text-align: center;
}

.service__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.service__hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding-top: 120px;
}

.service__hero__content h1 {
  font-size: 3.5rem;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); 
}

.service__hero__content p {
  margin-top: 1rem;
  font-size: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #ddd;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); 
} 

.heading {
    text-align: center ;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #FF9F1C;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service__card {
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.service__card:hover {
  transform: translateY(-10px);
}

.service__card img {
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.service__card h3 {
  margin: 0.5rem 0;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.why__card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.why__card img {
  width: 60px;
  margin-bottom: 1rem;
}

.why__card h4 {
  margin: 0.5rem 0;
}


.service__cta__split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0d0d0d 60%, #FF9F1C 60%);
  padding: 6rem 5%;
  overflow: hidden;
}

.service__cta__left {
  max-width: 50%;
  color: #fff;
}

.service__cta__left h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.service__cta__left h2 span {
  color: #FF9F1C;
}

.service__cta__left p {
  font-size: 1.1rem;
  max-width: 400px;
  margin-bottom: 2rem;
}

.service__cta__left .btn {
  display: inline-flex;
  align-items: center;
  background: #FF9F1C;
  color: #111;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.service__cta__left .btn i {
  margin-left: 0.5rem;
  font-size: 1.2rem;
}

.service__cta__left .btn:hover {
  background: #fff;
  color: #111;
}

.service__cta__right {
  max-width: 50%;
  text-align: right;
  height: 200px;
}

.service__cta__right img {
  max-width: 90%;
  height: 430px;
  margin-top: -100px;
  margin-right: 200px;
  object-fit: contain;
}

footer {
  background: #111;
  color: #999;
  text-align: center;
}





@media (max-width: 768px) {

  nav {
    flex-direction: row;
    height: auto;
    padding: 1rem 2rem;
    flex-wrap: wrap;
    background-color: #080808;
  }

  .nav__menu__btn {
    display: block;
    margin-left: 285px;
    margin-top: -30px !important;
  }
  .nav__logo a {
    line-height: 2.5rem;
  }

  .nav__links {
   position: absolute;
    bottom: 37px;
    left: -59px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background-color: black;
    transition: transform 0.5s;
    z-index: -1;
  }

  .nav__links.open {
   transform: translateY(95%);
  }

  .nav__links li {
    margin: 1rem 0;
  }
}




.btn-login {
  background: #FF9F1C;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  color: #111;
  transition: 0.3s ease;
}

.btn-login:hover {
  background: #fff;
  color: #111;
}


.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 99999;
}

.auth-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.auth-modal__content {
  background: rgba(17,17,17,0.95);
  padding: 3rem 2rem;
  border-radius: 1rem;
  position: relative;
  max-width: 330px;
  width: 90%;
  text-align: center;
  animation: fadeUp 0.4s ease forwards;
}

.auth-modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

.auth-form h2 {
  margin-bottom: 1.5rem;
  color: #FF9F1C;
}

.auth-form form input {
  width: 90%;
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 50px;
  background: #222;
  color: #fff;
}

.auth-form form input::placeholder {
  color: #aaa;
}

.auth-form .btn-primary {
  background: #FF9F1C;
  color: #111;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}

.auth-form .btn-primary:hover {
  background: #fff;
  color: #111;
}

.auth-switch {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #fff; /* ✅ yahi important hai */
}

.auth-switch a {
  color: #FF9F1C;
  text-decoration: underline;
  cursor: pointer;
}



.auth-form.hidden {
  display: none;
}

@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

