:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --accent: #0099cc;
  --accent-hover: #0077aa;
  --light-bg: #f3f6f9;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --radius: 12px;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--bg);
  box-shadow: var(--card-shadow);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover,
.btn-nav {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
  transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;          /* adjust so it’s below navbar */
    right: 20px;        /* shift 20px left from the right edge */
    width: 250px;       /* fixed width for the menu */
    background: var(--bg);
    box-shadow: var(--card-shadow);
    display: none;
    flex-direction: column;
    padding: 1rem 0;
    border-radius: 8px; /* optional for style */
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 1rem 0;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }
}


.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 2rem;
  background: linear-gradient(to right, #e8f5fc, #ffffff);
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: slideInUp 1s ease-out forwards;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #333;
  animation: fadeIn 1.5s ease-out forwards;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.3s ease;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: scale(1.03);
}

.section {
  padding: 4rem 2rem;
  text-align: center;
}

.section-light {
  background: var(--light-bg);
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Fixed Grid and Responsive Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

.card img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-container {
  max-width: 700px;
  margin: auto;
  animation: fadeIn 1s ease-out;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  animation: fadeIn 1s ease-out;
}

.testimonial span {
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
}

.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeIn 1s ease-out;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: var(--radius);
}

.contact-form button {
  background: var(--accent);
  color: #fff;
  padding: 1rem;
  border: none;
  border-radius: var(--radius);
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: var(--accent-hover);
}

.form-status {
  color: green;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.footer {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-bg);
  font-size: 0.9rem;
  animation: fadeIn 1.5s ease-out;
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}





.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}




/* Footer Styles */
.footer {
  background-color: var(--container-bg);
  color: var(--text);
  padding: 2rem 1rem;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.footer-info p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.footer-info a {
  color: var(--text);
  text-decoration: underline;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffffff;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
}


















#menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--text);
  cursor: pointer;
  position: absolute;
  right: 1.5rem;
  top: 1.2rem;
  z-index: 1000;
}

@media (max-width: 768px) {
  #menu-toggle {
    display: block;
  }

  nav {
    position: relative;
  }
}
