
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: black;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


  /* Navbar */
  
  .navbar {
    background: black;
    padding: 1rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #333;
  }
  
  /* Nav links */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color:  rgb(70, 130, 180);
    font-weight: 500;
    font-size: 1.4rem;
  }

  .nav-links a:hover {
    text-decoration: none;
    color: #0896d8;
    font-weight: 500;
  }
  
  
  /* Dropdown */

  .dropdown {
    position: relative;
    margin-left: .2rem;
  }
  
  .dropdown-trigger {
    background: none;
    border: none;
    font: inherit;
    color: rgb(70, 130, 180);
    display: flex;
    align-items: center;
    gap: .3rem;
    cursor: pointer;
}

  .dropdown-trigger::before {
    content: '▼';
    font-size: .75rem;
    transition: 1s;
}

  .dropdown:hover .dropdown-trigger::before {
    transform: rotate(180deg);
}
  
  .dropdown-menu {
    position: absolute;
    top: 2.5rem;
    left: 0;
    display: none;
    flex-direction: row;
    gap: 2rem;
    padding: 1rem 1.5rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    margin-left: -12rem;
}
  
  /* Show on hover */

  .dropdown:hover .dropdown-menu {
    display: flex;
  }
  
  /* Each column */

  .dropdown-column {
    display: flex;
    flex-direction: column;
    min-width: 160px;
  }

  .fa-chevron-down {
    font-size: 1.2rem;
  }
  
  .dropdown-column h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #444;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.25rem;
  }
  
  .dropdown-column a {
    text-decoration: none;
    color: #333;
    margin: .3rem 0;
    font-size: 1rem;
    transition: 1s;
  }
  
  .dropdown-column a:hover {
    color: #007bff;
  }
  
  
  /* Cart icon */
  
  .cart-link i {
    font-size: 1.5rem;
    color: black;
  }

  .cart-icon {
    display: flex;
    font-size: 1.5rem;
    align-items: center;
    padding: 1rem;
    position: relative;
    margin-right: 1rem;
    background: linear-gradient(135deg, #667eea, #1119b3);
    color: white;
    border: none;
    border-radius: 1rem;
    padding: .75rem 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

  
  /* Hamburger */

  .hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
  }
  
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
  }
  
  .main-logo {
    font-size: 2.5rem;
    font-weight: bold;
    text-decoration: none;
    color:rgb(70, 130, 180);
  }
  
  .hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  

  /* Responsive view */

  @media (max-width: 768px) {
    .navbar {
        height: 5.5rem;
    }

    .navbar-container {
      justify-content: center;
    }
  
    .hamburger {
      display: block;
      position: absolute;
      left: 1rem;
      margin-top: 1.4rem;
      font-size: 2rem;
    }
  
    .main-logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      margin-top: 1.2rem;
      font-size: 2.5rem;
    }

    .nav-links {
        margin-top: 2rem;
        position: absolute;
        height: 20rem;
        top: 100%;
        left: 50%; /* center the menu */
        transform: translateX(-50%); /* shift back by 50% of width */
        background: black;
        color:rgb(70, 130, 180);
        flex-direction: column;
        width: 28rem; /* make it wider */
        max-width: 480px;
        display: none;
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        align-items: center; /* center text/items horizontally */
        text-align: center;
      }
      
      .nav-links.active {
        display: flex;
      }

      .fa-bars {
        color: white;
      }

      .cart-icon {
        margin-left: .5rem;
      }
  }

  @media (max-width: 768px) {
    .dropdown {
        margin-left: -.5rem;
    }
    .dropdown-menu {
      position: static;
      flex-direction: column;
      padding: 1rem;
      margin-left: 1.5rem;
    }
  
    .dropdown-column {
      margin-bottom: 1rem;
    }
    .about-section {
      margin-top: -5rem;
    }
  }


/* About */

.about-section {
  margin-top: -3rem;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.about-hero {
  background: linear-gradient(135deg, #667eea, #1119b3);
  padding: 5rem;  
  border-radius: 1rem;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  color: black;
  margin-top: -1rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: 1s;
}

.about-hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  width: 65%;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 80px;
}

.about-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.8s ease-out forwards;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #1119b3);
}

.about-card:nth-child(2) {
  animation-delay: 0.2s;
}

.about-card:nth-child(3) {
  animation-delay: 0.4s;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #1119b3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.card-icon i {
  font-size: 2rem;
  color: white;
}

.about-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.about-card p {
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
}


/* Stats Section */

.stats-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 4rem 2rem;
  margin: 4rem 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.stat-item {
  color: white;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}


/* Team Section */

.team-section {
  margin: 6rem 0;
  text-align: center;
}

.team-section h2 {
  font-size: 3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 3rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.team-member {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #1119b3);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.team-member h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.team-member .role {
  color: #667eea;
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-member p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}


/* CTA Section */

.cta-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 4rem 2rem;
  text-align: center;
  margin: 4rem 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-section p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.9));
  color: #667eea;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
  background: white;
}

/* Animations */

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

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  background: black;
  color: #ffffff;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  /* background: linear-gradient(90deg, transparent 0%, #6366f1 50%, transparent 100%); */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  animation: slideInLeft 0.8s ease-out;
}

.footer-brand h2 {
  font-size: 32px;
  font-weight: 700;
  background: rgb(70, 130, 180);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  margin-left: -10rem;
  gap: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: #6366f1;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.footer-column {
  animation: slideInUp 0.8s ease-out;
}

.footer-column:nth-child(2) { animation-delay: 0.1s; }
.footer-column:nth-child(3) { animation-delay: 0.2s; }
.footer-column:nth-child(4) { animation-delay: 0.3s; }

.footer-column h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a1a1aa;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-links a:hover::before {
  width: 100%;
}

.newsletter {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.newsletter h3 {
  margin-bottom: 12px;
}

.newsletter p {
  color: #a1a1aa;
  font-size: 14px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: #71717a;
}

.newsletter-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.newsletter-btn {
  padding: 12px 20px;
  background: linear-gradient(135deg, #0896d8, #062173);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.newsletter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: #71717a;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: #71717a;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

@keyframes slideInLeft {
  from {
      opacity: 0;
      transform: translateX(-30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

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

@media (max-width: 768px) {
  .footer-grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }

  .footer-brand h2 {
      font-size: 24px;
  }

  .newsletter-form {
      flex-direction: column;
  }

  .footer-bottom {
      flex-direction: column;
      text-align: center;
  }

  .footer-legal {
      justify-content: center;
  }
}

  

/* Responsive design */

@media (max-width: 768px) {
  .footer-content {
     grid-template-columns: 1fr;
     gap: 24px;
     padding: 40px 16px 32px;
}

  .footer-section {
     padding: 24px;
}

  .social-links {
      justify-content: center;
  }
}

/* Responsive Design */

@media (max-width: 768px) {
  .header-container {
    padding: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-hero p {
    font-size: 1.1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-card {
    padding: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}