/* General Styles */
/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  } */
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 1rem;
  }
  
  .navbar .logo {
    font-size: 1.5rem;
  }
  
  .navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .navbar .nav-links li a {
    color: #fff;
    text-decoration: none;
  }

  .nav-links li {
    font-size: 24px;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
  }
  
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
    .nav-links {
      display: none;
    }
  }
  
  /* Hero Section */
  .hero {
    background: #000;
    color: #fff;
    padding: 3rem 0;
  }
  
  .hero h1 {
    font-size: 98px;
  }
  .hero p {
    font-size: 20px;
    font-weight: 300;
  }
  
  .hero .btn {
    background: #fff;
    color: #000;
    padding: 0.5rem 1rem;
    text-decoration: none;
    margin-top: 1rem;
    display: inline-block;
  }


/* what */
.what-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;

}

.what{
    padding: 50px;
}
.what p{
    font-size: 30px;
}


/* Why Section Styles */
.why-section {
    color: #000;
    padding: 2rem 1rem;
  }
  
  .why-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 2rem;
  }
  
  .why-heading,
  .why-content {
    flex: 1;
    max-width: 50%;
  }
  
  .why-heading h2 {
    font-size: 100px;
    font-weight: bold;
    margin: 0;
  }
  
  .why-content .content-box {
    background-color: #111;
    padding: 100px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  }
  
  .content-box blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #fff;
    margin: 0 0 0.5rem;
  }
  
  .content-box p {
    margin: 0.5rem 0;
    line-height: 1.6;
    color: #ddd;
  }
  
  .content-box p:first-of-type {
    color: #aaa;
    font-size: 0.9rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .why-item {
      flex-direction: column;
      gap: 1rem;
    }
  
    .why-heading,
    .why-content {
      max-width: 100%;
    }
  }


/* As Seen In Section Styles */
.as-seen-in-section {
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .as-seen-in-section h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
  }
  
  .as-seen-in-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap; /* Ensures responsiveness */
  }
  
  .as-seen-item {
    flex: 1;
    max-width: 30%; /* Adjusts for three equal columns */
    text-align: left;
    /* background-color: #fff; */
    padding: 1rem;
    /* border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  }
  
  .as-seen-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .as-seen-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding: 30px 0;
    border-bottom: 1px solid #e1dddd;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .as-seen-in-items {
      flex-direction: column;
      gap: 1.5rem;
    }
  
    .as-seen-item {
      max-width: 100%;
      text-align: center; /* Center aligns content for smaller screens */
    }
  }
  
  
  
/* Footer Styles */
.footer {
    background-color: #ededed;
    color: #333;
    padding: 2rem 0;
    font-size: 24px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .footer-column {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-column h4 {
    font-size: 34px;
    margin-bottom: 1rem;
    color: #000;
  }
  
  .footer-column p,
  .footer-column ul {
    margin: 0;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-column ul li a {
    text-decoration: none;
    color: #666;
  }
  
  .footer-column ul li a:hover {
    text-decoration: underline;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    font-size: 0.75rem;
    color: #666;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-column {
      margin-bottom: 1.5rem;
    }
  }
  
  