.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px; /* Increased vertical padding */
  border-bottom: 1px solid #eee;
  /* background-color: #e8b57e; */
}

.follow {
  margin-top: 10px;
}

.follow i {
  color: #FFF;
  cursor: pointer;
  padding-right: 6px;
  font-size: 20px;
}

.follow i:hover,
 a:hover {
  color: #088178;
}
/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 20px;
  line-height: 1.6;
  color: #6c3483;
}

.menu-toggle {
  display: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
  margin-top: 20px; 
}

/* Make Navbar Solid on Scroll */
.navbar.scrolled {
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Logo & Branding */
.logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  color: #6c3483;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #6c3483;
}

/* Get Started Button */
.get-started {
  background-color: #6c3483;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.get-started:hover {
  background-color: #0056b3;
}

/* Hero Section */
.hero {
  height: 100vh;
  color: #080808;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin: 0;
}

.hero p {
  font-size: 1.5rem;
  margin: 20px 0;
}

.hero .btn {
  background: #6c3483;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.hero .btn:hover {
  background: #6c3483;
}

/* Section Styles */
.section {
  padding: 60px 0;
}

.section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #6c3483;
  margin-bottom: 20px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.product-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  max-width: 100%;
  border-radius: 10px;
}

.product-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 15px 0 10px;
}

.product-card p {
  color: #666;
}

/* Contact Section */
#contact ul {
  list-style: none;
  padding: 0;
}

#contact ul li {
  margin-bottom: 10px;
}

#contact a {
  color: #6c3483;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

.center-card {
  grid-column: span 2;
  justify-self: center;
}

.center-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

/* Button Container */
.button-container {
  text-align: center;
  margin-top: 30px;
}

/* View All Products Button */
.view-all-btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #6c3483;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

.view-all-btn:hover {
  background-color: #005bb5;
  transform: translateY(-3px);
}

.view-all-btn:active {
  transform: translateY(0);
}

/* About Us Section */
#about {
  background: #f9f9f9;
  padding: 60px 0;
}

.about-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.about-intro {
  flex: 2;
}

.about-intro h2 {
  font-size: 2.5rem;
  color: #6c3483;
  margin-bottom: 20px;
}

/* About Us Section - Stats Alignment Fix */
.about-stats {
  flex: 3;
  text-align: left;
  margin-top: 20px;
}

.stat {
  display: inline-block;
  text-align: left;
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  margin: 7px 25px;
  width: 10%;
}

.stat h3 {
  font-size: 2.5rem;
  color: #6c3483;
  margin-bottom: 10px;
}

.stat p {
  font-size: 1.1rem;
  color: #666;
}

.stats-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-top: 20px;
  text-align: left;
}

.about-details {
  max-width: 100%;
}

/* About Us Section - Paragraph Alignment Fix */
.about-details p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

/* Contact Section */
#contact {
  background-color: #f9f9f9;
  padding: 40px 0;
}

/* First Row: Contact Details and Form */
.contact-details-form-container {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

/* Left Side: Contact Details with Line */
.contact-details {
  flex: 1;
  position: relative;
  padding-left: 20px;
}

.contact-line {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 80%;
  background-color: #6c3483;
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details ul li {
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-details ul li strong {
  display: inline-block;
  width: 80px;
}

/* Right Side: Contact Form */
.contact-form {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form textarea {
  height: 150px;
}

.contact-form button {
  background-color: #6c3483;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}

/* Second Row: Location and Map */
.location-map-container {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

/* Left Side: Location Details */
.location-info {
  flex: 1;
}

.location-info h3 {
  margin-bottom: 15px;
}

.location-info ul {
  list-style: none;
  padding: 0;
}

.location-info ul li {
  margin-bottom: 10px;
}

/* Right Side: Map */
.map {
  flex: 1;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
}

.section-p1 {
  padding: 40px 80px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #6c3483;
  color: #fff;
  padding: 20px 40px;
}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
}

footer p {
  font-size: 14px;
  margin: 0 0 6px 0;
  color: #fff;
}

footer h4 {
  font-size: 18px;
  padding-bottom: 10px;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 4px;
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
  color: #4d6a70;
}

footer .follow {
  margin-top: 10px;
}

footer .follow i {
  color: #FFF;
  cursor: pointer;
  padding-right: 6px;
  font-size: 20px;
}

footer .follow i:hover,
footer a:hover {
  color: #088178;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet View (769px to 1024px) */
@media (max-width: 1024px) {
  .navbar {
    width: 85%;
    padding: 15px 30px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-top {
    flex-direction: column;
  }

  .stat {
    width: 40%;
    margin: 10px;
    padding: 30px;
  }

  .section-p1 {
    padding: 30px 40px;
  }
}

/* Mobile View (768px and below) */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  .container {
    width: 95%;
  }

  .navbar {
    width: 90%;
    top: 20px;
    padding: 10px 20px;
    border-radius: 10px;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6c3483;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    gap: 15px;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .get-started {
    display: none;
  }

  .hero {
    height: 80vh;
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .section {
    padding: 40px 0;
  }

  .section h2 {
    font-size: 2rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    text-align: center;
  }

  .stat {
    width: 80%;
    margin: 10px auto;
    padding: 20px;
    text-align: center;
  }

  .contact-details-form-container,
  .location-map-container {
    flex-direction: column;
  }

  .contact-line {
    display: none;
  }

  .contact-details {
    padding-left: 0;
    margin-bottom: 30px;
  }

  .section-p1 {
    padding: 20px;
  }

  footer {
    flex-direction: column;
    padding: 20px;
  }

  footer .col {
    width: 100%;
    margin-bottom: 20px;
    align-items: center;
    text-align: center;
  }
}

/* Small Mobile View (480px and below) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .btn {
    padding: 12px 25px;
  }

  .section h2 {
    font-size: 1.8rem;
  }

  .product-card h3 {
    font-size: 1.2rem;
  }

  .stat {
    width: 100%;
    padding: 15px;
  }

  .stat h3 {
    font-size: 2rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 8px;
  }

  .map iframe {
    height: 200px;
  }
}