
:root {
  --primary-color: #141414;
  --primary-color-light: #1f2125;
  --primary-color-extra-light: #35373b;
  --secondary-color: #535353;
  --secondary-color-dark: #2d2e2d;
  --text-light: #333;
  --hover: #f4b400;
  --white: #ffffff;
  --max-width: 1200px;
  --accent-color: #535353;
}
*::before,
*::after {
  box-sizing: border-box;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  font-family: "Spartan", sans-serif;
  background-color: var(--white);
  color: var(--text-color);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}


.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  font-weight: 600;
  text-align: center;
  color: var(--white);
}

.section__subheader {
  max-width: 600px;
  margin: auto;
  text-align: center;
  color: var(--text-light);
}
  
  .btn {
    padding: 1rem 2rem;
    outline: none;
    border: none;
    font-size: 1rem;
    color: var(--white);
    background-color: var(--secondary-color-dark);
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  a {
    text-decoration: none;
    color: #ffffff;
  }
  
  .btn:hover {
    background-color: var(--hover);
  }
  .btn2 {
    padding: 1rem 2rem;
    margin-left: 5px;
    border:1px solid var(--hover);
    font-size: 1rem;
    color: var(--white);
    background:var(--hover);
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .btn2:hover:hover {
    background-color: var(--secondary-color-dark);
  }
  
  img {
    width: 100%;
    display: flex;
  }
  
  a {
    text-decoration: none;
  }


.navbar {
  background: var(--white) ;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  margin-bottom: 50px;
  backdrop-filter: blur(5px);
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 150px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 50px;
  padding-left: 50px;
}
#navbar__logo {
    background-color: var(--secondary-color);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}
#navbar__logo img{
  height: 100%;
  width: 100%;
}
#navbar__logo span{
    color: var(--secondary-color);
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
}

.navbar__item {
  height: 80px;
}
.navbar__item .fa {
  margin-right: 3px;
}

.navbar__links {
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 1rem;
  height: 100%;
}

.navbar__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  width: 100%;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 10px 20px;
  height: 100%;
  width: 100%;
  border:1px solid rgba(255, 255, 255, 0.5);
  outline: none;
  border-radius: 4px;
  background: none;
  color:var(--text-light)
}

.button:hover {
  background:var(--hover);
  transition: all 0.3s ease;
}
.navbar__links:hover {
  color: var(--hover);
  transition: all 0.3s ease;
}
#navbar__logo img {
  width: 110px;
  height: auto;
}

/* Base Mobile Styling */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }

  .navbar__container {
    flex-direction: row;
    padding: 0 16px;
  }

  .navbar__menu {
    width: 100%;
    padding: 1rem 0;
  }

  .dropdown-content a {
    font-size: 0.95rem;
  }

  .dropdown .dropbtn {
    width: 100%;
    text-align: left;
  }

  #navbar__logo img {
    width: 100px;
  }
}

/* Extended Mobile View */
@media screen and (max-width: 960px) {
  .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .navbar__menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: -1000px;
    left: 0;
    width: 100%;
    background: var(--white);
    transition: top 0.4s ease-in-out;
    z-index: 98;
    padding: 1rem 0;
  }

  .navbar__menu.active {
    top: 80px;
    z-index: 99;
  }

  .navbar__item {
    width: 100%;
    text-align: center;
  }

  .navbar__links {
    padding: 1rem 2rem;
    display: block;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
  }

  .navbar__btn {
    padding-bottom: 2rem;
  }

  #navbar__logo {
    padding-left: 16px;
  }

  .navbar__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding-right: 16px;
  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: var(--secondary-color);
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .dropdown-content {
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    display: none;
    width: 100%;
  }

  .dropdown-content.show {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .dropdown-content a {
    padding: 12px 16px;
    font-size: 1rem;
    background-color: transparent;
  }

  .dropdown-content a:hover {
    background-color: var(--hover);
    color: var(--primary-color);
  }
}




link a {
    position: relative;
    padding-bottom: 0.75rem;
    color: var(--white);
  }
  
  .link a::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    left: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    transition: 0.3s;
  }
  
  .link a:hover::after {
    width: 50%;
  }
  .section__container {
    max-width: 1200px;
    padding: 2rem 1rem;
    margin: auto;
  }
  
  .header__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: var(--accent-color);
    color: #fff;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    text-align: center;
  }
  
  .header__container h1 {
    font-size: 3rem;
    font-weight: 700;
  }
  
  .header__container h2 {
    font-size: 1.5rem;
    margin: 1rem 0 2rem;
    font-weight: 400;
  }
  
  .header__content {
    z-index: 1;
    flex: 1 1 500px;
  }
  
  .header__content span {
    color: var(--hover);
  }
  
  .btn,
  .btn2 {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem;
    border: none;
    border-radius: 30px;
    transition: 0.3s ease;
    cursor: pointer;
    display: inline-block;
  }
  
  .btn a,
  .btn2 a {
    color: #fff;
  }
  
  .btn {
    background: var(--hover);
  }
  
  .btn:hover {
    background: #e2a100;
  }
  
  .btn2 {
    background: transparent;
    border: 2px solid #fff;
  }
  
  .btn2:hover {
    background: #fff;
    color: var(--secondary-color-dark);
  }
  
  .header__image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    padding: 2rem;
  }
  
  .header__image img {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    background-color: #fff;
  }
  
  .bg__blur,
  .header__blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
  }
  
  .bg__blur {
    top: -100px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: var(--hover);
  }
  
  .header__blur {
    bottom: -100px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
  }
  
  .explore__header h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--secondary-color-dark);
  }
  
  .explore__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    padding-top: 2rem;
  }
  
  .explore__card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease-in-out;
    text-align: center;
  }
  
  .explore__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
  
  .explore__card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
  }
  
  .explore__card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .explore__card a {
    font-weight: bold;
    color: var(--hover);
    transition: color 0.3s;
  }
  
  .explore__card a:hover {
    color: var(--accent-color);
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .header__container {
      flex-direction: column;
      text-align: center;
      padding: 3rem 1rem;
    }
  
    .header__image {
      margin-top: 2rem;
    }
  
    .btn,
    .btn2 {
      width: 100%;
      max-width: 250px;
    }
  }

.cta {
    display: inline-block;
    padding: 10px 20px;
    background: #f4b400;
    color: #333;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
}

.features {
    padding: 50px 20px;
    text-align: center;
}

.features h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.feature-list {
    display: flex;
    justify-content: space-around;
}

.feature {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
}

.feature h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}



/* Responsive Design */
/* --- Mobile Styling Improvements --- */

@media screen and (max-width: 768px) {
  /* give breathing room below the navbar */
  .navbar {
    margin-bottom: 1.5rem;
  }

  /* make header fill, stack vertically, drop fixed sizes */
  .header__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    width: 100%;
    padding: 2rem 1rem;
    /* remove your width:400px; height:150px */
  }

  .header__container h1 {
    font-size: 2.2rem;
    margin-bottom: .5rem;
  }

  .header__container h2 {
    font-size: 1.1rem;
    margin: .5rem 0 1.5rem;
  }

  .header__content {
    margin-bottom: -75%;
  }

  /* stack the buttons full‐width */
  .btn,
  .btn2 {
    width: 100%;
    max-width: 300px;
    margin: .5rem auto;
    display: block;
  }

  /* collapse that empty “image” panel completely */
/*   .header__image {
    display: none;
  } */

  /* tighten up the explore section */
  .explore__container {
    padding: 1rem 1rem 3rem;
  }

  .explore__grid {
    gap: 1rem;
  }

  .explore__card {
    padding: 1.5rem;
    border-radius: 12px;
  }
}



footer.footer__container {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 60px 20px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: var(--max-width);
  margin: auto;
  border-top: 4px solid var(--hover);
  position: relative;
}

.footer__col {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer__logo img {
  width: 120px;
  margin-bottom: 15px;
}

.footer__col h4 {
  font-size: 1.2rem;
  color: var(--hover);
  margin-bottom: 20px;
}

.footer__col a {
  display: block;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 12px;
  transition: 0.3s ease;
  font-size: 15px;
}

.footer__col a:hover {
  color: var(--hover);
  transform: translateX(5px);
}

.footer__socials {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.footer__socials a {
  font-size: 1.25rem;
  background-color: var(--hover);
  color: var(--primary-color);
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer__socials a:hover {
  background-color: var(--white);
  transform: scale(1.1);
}

.footer__bar {
  background-color: var(--primary-color-extra-light);
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  color: var(--white);
  border-top: 1px solid var(--secondary-color);
  margin-top: 40px;
}

@media (max-width: 768px) {
  footer.footer__container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer__col {
    margin-bottom: 30px;
  }

  .footer__socials {
    justify-content: center;
  }
}

  @media (width < 768px) {
    .nav__links {
      display: none;
    }

    .footer__container {
      grid-template-columns: 1fr 200px;
    }
  }
  
  @media (width < 600px) {
    .explore__header {
      flex-direction: column;
    }
  
    .explore__grid {
      grid-template-columns: repeat(1, 1fr);
    }
  
    .footer__container {
      grid-template-columns: 1fr 150px;
    }
  
    .footer__bar {
      text-align: center;
    }
  }

.how-it-works-container {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 40px;
}

.how-it-works-header h1 {
  font-size: 2.2rem;
  color: #f4b400;
}

.steps .step {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #fff;
  border-left: 5px solid #f4b400;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 6px;
}

.steps .step h2 {
  color: #222;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.steps .step p {
  color: #555;
  font-size: 0.95rem;
}

.why-choose {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  text-align: center;
}

.why-choose h2 {
  color: #333;
  margin-bottom: 15px;
}

.why-choose ul {
  list-style: none;
  padding: 0;
}

.why-choose ul li {
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 0.95rem;
}

/* ? Responsive styling for mobile */
@media screen and (max-width: 768px) {
  .how-it-works-container {
    padding: 20px 16px;
  }

  .how-it-works-header h1 {
    font-size: 1.8rem;
  }

  .steps .step h2 {
    font-size: 1.1rem;
  }

  .steps .step p,
  .why-choose ul li {
    font-size: 0.9rem;
  }

  .why-choose {
    padding: 20px;
  }
}
