

html {
    scroll-behavior: smooth;
}


/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #f9f9f9;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/static/images/pits3.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin: 0;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 15px 0;
}

.hero-content button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #0078d7;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hero-content button:hover {
  background-color: #005bb5;
}

.about-section {
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  background-color: #ffffff;
}

.about-content {
  flex: 1 1 40%;
  max-width: 600px;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.about-content button {
  padding: 10px 20px;
  font-size: 1rem;
  color: #ffffff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.about-content button:hover {
  background-color: #0056b3;
}

.about-image {
  flex: 1 1 40%;
  max-width: 500px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-content,
  .about-image {
    flex: 1 1 100%;
  }

  .about-content h2 {
    font-size: 2rem;
  }
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fc;
  color: #333;
}

.services-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.services-image {
  flex: 1;
}

.services-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.services-content h2 {
  grid-column: span 2;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.service-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-section {
    flex-direction: column;
    text-align: center;
  }

  .services-content {
    grid-template-columns: 1fr;
  }

  .services-image img {
    max-width: 300px;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, #f7f9fc 0%, #e3eaf2 100%);
  text-align: center;
}
/* Center Content */
.why-content {
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Section Title */
.why-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #002855; /* Deep blue for elegance */
  margin-bottom: 1rem;
  position: relative;
}

.why-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #d29a5b; /* Accent gold */
  display: block;
  margin: 0.5rem auto 0;
}

/* Description */
.why-description {
  color: #4a5568;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Flexbox Grid */
.why-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 2.5rem;
}

/* Individual Item */
.why-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1 1 calc(45% - 2rem);
  min-width: 280px;
  max-width: 600px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 40, 85, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 40, 85, 0.15);
}

/* Icon Styling */
.why-icon img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #d29a5b; /* Accent border */
  padding: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Text Styling */
.why-text h3 {
  font-size: 1.5rem;
  color: #002855;
  margin-bottom: 0.5rem;
}

.why-text p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-items {
    flex-direction: column;
    align-items: center;
  }

  .why-item {
    flex: 1 1 100%;
  }
}

/* Style the lists */
.why-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-text ul li {
  font-size: 1rem;
  color: #666666; /* Same as offer-card p */
  margin-bottom: 0.5rem;
  padding-left: 1.8rem;
  position: relative;
  text-align: left;
}

/* Custom bullet icon */
.why-text ul li::before {
  content: "✔"; /* Checkmark icon */
  color: #d29a5b;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.footer-section {
  background-color: #f8f9fa;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-link {
  font-size: 1.2rem;
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #de902c;
}

.footer-logo img {
  width: 150px;
}

.footer-copyright {
  flex: 1;
  color: #6c757d;
  font-size: 0.9rem;
}

.branding-link {
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.branding-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
  }
}

/* Footer Section Styling */
.custom-footer {
  background-color: #f4f4f4;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 3rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color: #9173a7;
  font-weight: bold;
}

.footer-logo img {
  width: 200px;
}

.footer-bottom {
  font-size: 0.9rem;
  color: #6c757d;
}

.footer-bottom .branding {
  font-weight: bold;
  color: #000;
}

.footer-bottom .branding:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-logo img {
    width: 150px;
  }

  .footer-bottom {
    text-align: center;
  }
}

/* Contact Us Section */
.contact-us {
  background-color: #f8f9fa;
  padding: 4rem 2rem;
  text-align: center;
}

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

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
  width: 300px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.icon {
  font-size: 2rem;
  color: #9173a7;
  margin-bottom: 1rem;
}

.contact-item h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-item p {
  font-size: 1rem;
  color: #555;
  margin: 0.2rem 0;
}

.contact-item a {
  color: #264283;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-item {
    width: 100%;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

/* Info Cards Section */
.info-cards-section {
  padding: 4rem 10%;
  background-color: #f7f7f7; /* Light Grey */
}

.info-cards-section .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.info-cards-section .card {
  background-color: #ffffff; /* White */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-cards-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-cards-section .card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.info-cards-section .content {
  padding: 1.5rem;
  text-align: left;
}

.info-cards-section .content h1 {
  font-size: 2rem;
  color: #003366; /* Navy Blue */
  margin: 0;
  margin-bottom: 30px;
}

.info-cards-section .content h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #003366; /* Navy Blue */
  margin: 0.5rem 0;
  margin-bottom: 30px;
}

.info-cards-section .content p {
  font-size: 1rem;
  color: #666666; /* Charcoal Grey for text */
  line-height: 1.6;
  margin-bottom: 1rem;
}

.info-cards-section .learn-more {
  font-size: 1rem;
  color: #003366; /* Navy Blue */
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid #003366;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.info-cards-section .learn-more:hover {
  color: #001f4d; /* Darker Navy Blue for hover */
  border-bottom: 1px solid #001f4d;
}

/* Responsive Design */
@media (max-width: 992px) {
  .info-cards-section .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .info-cards-section .container {
    grid-template-columns: 1fr;
  }

  .info-cards-section .card {
    margin-bottom: 1.5rem;
  }
}

/* Offer Section */
.offer-section {
  padding: 3rem 1rem;
  background-color: #f7f7f7;
}

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

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #003366;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #d29a5b;
  display: block;
  margin: 0.5rem auto 0;
}

/* Offer Grid */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Offer Card */
.offer-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.offer-card.active {
  border: 2px solid #d29a5b;
}

/* Icons */
.icon {
  font-size: 2rem;
  color: #d29a5b;
  margin-bottom: 1rem;
}

/* Card Content */
.offer-card h3 {
  font-size: 1.5rem;
  color: #003366;
  margin-bottom: 0.5rem;
}

.offer-card p {
  color: #666666;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.learn-more {
  font-size: 1rem;
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid #003366;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.learn-more:hover {
  color: #001f4d;
  border-bottom: 1px solid #001f4d;
}

/* Responsive Design */
@media (max-width: 768px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

/* Projects Section */
.projects-section {
  padding: 3rem 1rem;
  background-color: #fff;
}

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

/* Filter Bar */
.filter-bar {
  text-align: center;
  margin-bottom: 2rem;
}

.filter {
  margin: 0 1rem;
  font-size: 1rem;
  color: #d29a5b;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  padding-bottom: 0.25rem;
}

.filter.active,
.filter:hover {
  color: #003366;
}

.filter.active::after,
.filter:hover::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #d29a5b;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Project Card */
.project-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-content {
  padding: 1rem;
  text-align: center;
}

.project-content h3 {
  font-size: 1.25rem;
  color: #003366;
  margin-bottom: 0.5rem;
}

.project-content p {
  color: #666666;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.actions {
  font-size: 0.9rem;
  color: #d29a5b;
}

/* Responsive for smaller screens */
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr); /* Two columns on tablets */
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr; /* One column on mobile */
  }
}

/* Project Card */
.project-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.project-card img {
  width: 100%;
  border-radius: 5px;
}

.project-content h3 {
  margin: 10px 0;
  font-size: 18px;
}

.project-content p {
  color: #777;
}

.actions {
  margin-top: 10px;
  color: red;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three columns on desktop */
  gap: 20px;
}

/* Business Info Section */
.business-info {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 10%;
  background: #f9f9f9; /* Light background color */
}

.business-info .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
}

.business-info .image-wrapper {
  flex: 1;
}

.business-info .image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: fadeInLeft 1s ease-in-out;
}

.business-info .content {
  flex: 1;
  text-align: left;
  animation: fadeInRight 1s ease-in-out;
}

.business-info h2 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 1rem;
  font-weight: bold;
}

.business-info .subheading {
  font-size: 1.2rem;
  color: #d29a5b; /* Highlighted color */
  margin-bottom: 1.5rem;
}

.business-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
}

.business-info .btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #98834c;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.business-info .btn:hover {
  background: #d29a5b;
}

/* Motion Effects */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  .business-info .image-wrapper {
    order: 1;
    margin-bottom: 2rem;
  }

  .business-info .content {
    order: 2;
  }

  .business-info h2 {
    font-size: 2rem;
  }

  .business-info p {
    font-size: 0.9rem;
  }

  .business-info .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .business-info h2 {
    font-size: 1.8rem;
  }

  .business-info p {
    font-size: 0.85rem;
  }

  .business-info .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

header {
  background-color: #f8f8f8;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo h1 {
  font-size: 18px;
  margin-bottom: 5px;
}

.logo h2 {
  font-size: 14px;
  color: #555;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #002a4a;
  font-size: 20px;
}

.donate-button {
  background-color: #d29a5b;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s;
}

.donate-button:hover {
  background-color: #d29a5b;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #002a4a;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  list-style: none;
  flex-direction: column;
  gap: 10px;
  background-color: #f8f8f8;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 20px;
  border-top: 1px solid #ddd;
}

.mobile-menu li a {
  text-decoration: none;
  color: #002a4a;
  font-size: 16px;
}

.mobile-donate-button {
  background-color: #d29a5b;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  text-align: center;
}

.mobile-donate-button:hover {
  background-color: #d29a5b;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .donate-button {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Bottom-Centered Pop-Up Banner Styling */
.popup-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  background: linear-gradient(90deg, #d77f5d, #a18167); /* Warm gradient */
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.popup-banner.hidden {
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
}

.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.popup-logo img {
  width: 100px;
  height: auto;
}

.popup-text h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

.popup-text h4 span {
  font-weight: bold;
  color: #ffd700; /* Golden color for emphasis */
}

.popup-text p {
  margin: 0;
  font-size: 16px;
  color: #f7f3f0; /* Softer light shade for better readability */
  line-height: 1.6;
}

.popup-signup {
  background: #a18167; /* Button color matching the gradient */
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out, transform 0.2s;
}

.popup-signup:hover {
  background: #d77f5d; /* Brighter hover effect */
  transform: scale(1.05); /* Slight zoom on hover */
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .popup-banner {
    width: 95%;
    padding: 15px;
  }

  .popup-text h4 {
    font-size: 20px;
  }

  .popup-text p {
    font-size: 14px;
  }

  .popup-signup {
    font-size: 14px;
    padding: 10px 16px;
  }

  .popup-logo img {
    width: 80px;
  }
}

.floating-whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp-btn i {
  font-size: 28px;
}

@media (max-width: 768px) {
  .floating-whatsapp-btn {
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp-btn i {
    font-size: 24px;
  }
}
/* Hide menu by default */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* Show menu when active */
.mobile-menu.active {
  display: flex;
}

/* Hamburger styling */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 30px;
  height: 4px;
  background: black;
  margin: 5px;
  transition: transform 0.3s ease;
}

/* Rotate bars when menu is open */
.hamburger.open div:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open div:nth-child(2) {
  opacity: 0;
}

.hamburger.open div:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Show hamburger only on mobile */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: none; /* Hide initially */
  }
}
