@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
  }
  body {
    background-color: #0a0a0a;
    color: #fff;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: whitesmoke;
    font-size: 18px;
  }
  
  header.hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
  }
  
  
 .logo img{
    width: 160px;
    padding-left: 10px;
 }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a:hover {
    text-decoration: none;
    color: #f5c54d;
  }


  /* Basic styling */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}
  
.header1 {
  text-align: center;
  padding: 40px 20px;
  background-color: #111;
  color: #f9b233;
}

.intro-section {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: #1a1a1a;
  justify-content: center;
  align-items: center;
}

.intro-section h2{
  color: #f9b233;
}

.intro-text {
  flex: 1;
  padding: 20px;
  max-width: 500px;
}

.intro-image {
  flex: 1;
  padding: 20px;
  max-width: 500px;
}

.intro-image img {
  width: 100%;
  border-radius: 10px;
}

.results-section {
  padding: 40px 20px;
  background-color: #111;
  text-align: center;
}

.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.slide-track {
  display: flex;
  animation: slide 20s linear infinite;
}

.slide-track img {
  width: 250px;
  margin: 0 10px;
  border-radius: 10px;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.benefits-section {
  padding: 40px 20px;
  background-color: #1a1a1a;
}

.benefits-section h2 {
  text-align: center;
  color: #f9b233;
}

.benefits-section ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}

.benefits-section li {
  padding: 10px;
  border-bottom: 1px solid #333;
}

.cta-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #111;
}

.cta-button {
  background-color: #fbbf24;
  color: #000;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.cta-section a{
  margin-top: 20px;
}

.cta-section h2{
  margin-bottom: 20px;
}
   
  /* footer */

.site-footer {
    background-color: #0e0e0e;
    color: #ffffff;
    padding: 60px 20px 30px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-col h2, .footer-col h3 {
    margin-bottom: 15px;
    color: #f5c54d;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #f5c54d;
}

.footer-col.social-links a {
    margin-right: 10px;
    display: inline-block;
}

.footer-col.social-links img {
    width: 24px;
    height: 24px;
    /* filter: brightness(0) invert(1); */
    transition: transform 0.3s ease;
}

.footer-col.social-links img:hover {
    transform: scale(1.1);
    /* filter: brightness(0) saturate(100%) invert(69%) sepia(63%) saturate(455%) hue-rotate(9deg) brightness(95%) contrast(90%); */
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #888;
}
  



/* Responsive Styles */
body.menu-open {
  overflow: hidden;
}
@media (max-width: 768px) {

 
  .navbar {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
  }

   .hamburger {
    display: block;
    z-index: 1001;
    order: 2;
  }

  .nav-links {
    display: none;
    position: fixed;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: auto;
    max-height: 60vh;
    background-color: #111;
    top:80px;
    left: 0;
    right: -100%;
    z-index: 10;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding-top: 80px;
  }

  .nav-links.show {
    display: flex;
    right: 0;
    transform: translateX(0);
  }

  .nav-links li {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    margin: 15px 0;
    width: 100%;
  }

  .nav-links ::-webkit-scrollbar{
    width: 5px;
  }


 .logo img {
    width: 120px;
  } 
  .logo {
    order: 1;
  }

  .hero-text{
    padding: 2rem;
    padding-top: 120px;
    width: 100%;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 100%;
    margin-bottom: 2rem;
    text-align: center;  
  }

  .footer-col.social-links{
    justify-content: center;
  }
}

@media (max-width: 480px) {
 .navbar{
  padding: 1rem;
 }

 .logo img{
  width: 100px;
 }

 .hamburger{
  font-size: 24px;
 }

 .nav-links{
  width: 80%;
 }


 .hero-text{
  padding: 1.5rem;
  padding-top: 100px;
 }

 .hero-text h2{
  font-size: 1.5rem;
 }

 .cta-btn{
  padding: 0.6rem 1rem;
 }

 .footer-container{
  gap: 1rem;
 }

 .footer-col h3{
  font-size: 16px;
 }

 .footer-col.social-links img{
  width: 20px;
  height: 20px;
 }
}
