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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  background-color: #f9f9f9;
  line-height: 1.6;
}

/* Header & Navigation */
.header-container {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0057b8;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* Nav Menu Grouping Fix */
.nav-menu-container {
  display: flex;
  align-items: center;
  gap: 2rem; /* this controls space between nav links and Sign Up */
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #003f87;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sign-in-button {
  background-color: #0056b3;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.sign-in-button:hover {
  background-color: #1374db;
  transform: translateY(-2px);
}


/* Hero Section */
.hero-container {
  display: flex;
  flex-direction: row; /* Image left, text right */
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background-color: #16162a;
  gap: 3rem; /* Space between image and text */
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* align image to right */
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.03);
}


.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  color: #fff;
  text-align: left;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left; /* or center if you want everything centered */
}



.hero-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


.highlight {
  color: #ffffff;
  font-weight: 700;
  justify-content: center;
  font-size: 4.5rem;
}

.description {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.call-to-action {
  background-color: #0056b3;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: fit-content;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


.call-to-action:hover {
  background-color: #1374db;
  transform: scale(1.05);
}

/* Pricing */
.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.price-block {
  background-color: #f1f1f1;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  flex: 1 1 180px;
  transition: transform 0.3s ease;
}

.price-block:hover {
  transform: translateY(-5px);
}

.current-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #28a745;
}

.original-price {
  font-size: 1rem;
  color: #888;
}

.discount {
  color: #dc3545;
  font-weight: 600;
}

/* Features & Trust */
.features-trust-wrapper {
  padding: 3rem 2rem;
  background-color: #fdfdfd;
}

.features-section {
  text-align: center;
  margin-bottom: 2rem;
}

.features-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.features-tags span {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #e6f0ff;
  color: #16162a;
  border-radius: 20px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.features-tags span:hover {
  background-color: #d0e3ff;
}

.trust-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.trust-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 250px;
}

.trust-icon {
  font-size: 2rem;
}

/* Gallery */
.gallery-section {
  padding: 3rem 2rem;
  background-color: #fff;
}

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

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.03);
}

/* WhatsApp Button */
.chat-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.chat-button:hover {
  background-color: #128c7e;
}

/* Footer */
.footer {
  background-color: #f1f1f1;
  padding: 2rem;
  color: #333;
}

.footer-container {
  display: flex;
  justify-content:center;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-column h4 {
  margin-bottom: 0.5rem;
  align-items: center;
}

.footer-column a {
  display: block;
  color: #555;
  text-decoration: none;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #0057b8;
}

.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    max-width: 90%;
    margin-right: 0;
  }

  .nav-menu {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .nav-menu-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .call-to-action {
    width: 100%;
    text-align: center;
  }

  .nav-menu {
    display: none;
  }

  .hamburger {
    display: block;
  }

  #menu-toggle:checked + .hamburger + .nav-menu-container .nav-menu {
    display: flex;
  }
}
