* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

html {
  font-size: 16px; /* Base font size */
}

body {
  color: #2c3e50;
  background-color: #f5f6f7;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%; /* Prevent iOS font scaling */
  text-rendering: optimizeLegibility;
}
/* Store badges for app downloads */
.store-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}
.store-badge img {
  display: block;
  height: 56px;
  width: auto;
  object-fit: contain;

}
@media (max-width: 420px) {
  .store-badge img { height: 44px; }
}


/* Header */
header {
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
}
.logo-container {
 display: flex;
  align-items: center;
  gap: 8px; /* tightened gap for better alignment */
}

/* Logo size */
.logo {
  display: block; /* removes inline-image descender whitespace */
  width: auto;
  max-height: 72px; /* slightly larger for better presence */
  object-fit: contain;
}

/* Brand name */
.brand-name {
  font-size: 24px;
  font-weight: 700;
  color: #1a3a52;
  letter-spacing: 0.5px;
  line-height: 1; /* ensure vertical centering next to the logo */
}

/* Slightly reduce logo on small screens so header doesn't feel crowded */
@media (max-width: 480px) {
  .logo {
    max-height: 56px;
  }
  .brand-name {
    font-size: 20px;
  }
}
/* Accessible skip link: hidden visually but visible on keyboard focus */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
  background: #fff;
  color: #1a3a52;
  padding: 8px 12px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 1000;
}

/* CTA button used in hero */
.cta {
  display: inline-block;
  background: #d4af37;
  color: #1a3a52;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.cta:hover,
.cta:focus {
  opacity: 0.95;
}
/* screen-reader only helper */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Responsive navigation */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle .hamburger,
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  position: relative;
}
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.nav-toggle .hamburger::before { top: -7px; }
.nav-toggle .hamburger::after { top: 7px; }

/* nav-links: default desktop layout */
.nav-links {
  display: flex;
  gap: 12px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a { display: inline-block; }

/* Mobile: collapse nav into a full-width dropdown */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 12px 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  nav a { color: #333; padding: 10px 8px; display: block; }
}
nav a {
  margin: 0 12px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
nav a.active, nav a:hover {
  color: #ff7a00;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
  color: #fff;
  text-align: center;
  padding: clamp(60px, 10vh, 100px) 20px clamp(40px, 8vh, 80px);
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 2.4rem);
  line-height: 1.2;
}
.hero-content h1 span {
  color: #d4af37;
}
.hero-content .subtitle {
  max-width: 600px;
  margin: 20px auto;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 4vw, 40px);
  margin-top: 40px;
}
.stats h3 {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
}
.stats p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* Features */
.features {
  padding: clamp(10px, 2vh, 18px); /* tightened */
  text-align: center;
  margin-top: 0; /* remove extra gap */
}
.features h2 {
  color: #1a3a52;
  margin-top: 0; /* remove extra gap */
  font-size: clamp(1.6rem, 4vw, 2rem);
}
.section-desc {
  color: #555;
  margin-bottom: clamp(24px, 5vh, 40px);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.feature-grid {
  display: grid;
  gap: clamp(16px, 3vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  padding: 0 max(0px, calc((100% - 1200px) / 2));
  margin-bottom: 30px;
}
.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: clamp(16px, 4vw, 24px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  text-align: center;
  
}
.feature-card h3 {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  margin-bottom: 0.5em;
}
.feature-card p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  margin-bottom: 0.5em;
  color: #444;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
  color: #fff;
  text-align: center;
  padding: clamp(30px, 6vh, 60px) 20px;
}
.page-header h3 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 0.5em;
  line-height: 1.2;
}
.page-header p {
  color: #f0f0f0;
  padding-top: 8px;
  padding-right: 8px;
  margin-bottom: 0;

  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto;
}

/* About */
.about-content {
  padding: clamp(20px, 4vh, 40px) 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.about-content h2 {
  color: #1a3a52;
  margin-top: clamp(24px, 5vh, 40px);
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
}
.about-content p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  margin-bottom: 0.5em;
}

/* Contact */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 80px 10%;
}

/* Contact form mobile adjustments */
@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 5%;
  }
  #contact-Form input, 
  #contact-Form textarea {
    padding: 14px 16px; /* Taller on mobile for better touch */
    margin-bottom: 20px;
  }
  #contact-Form textarea {
    min-height: 160px; /* Taller on mobile */
  }
  #contact-Form button {
    width: 100%; /* Full width on mobile */
    max-width: none;
    margin-top: 8px;
  }
}
#contact-Form input, #contact-Form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px; /* Prevents zoom on mobile */
  line-height: 1.4;
}
#contact-Form textarea {
  min-height: 120px;
  resize: vertical;
}
#contact-Form button {
  background: #1a3a52;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  max-width: 200px;
}
#contact-Form button:hover {
  background: #2c5aa0;
}

.contact-info h2 {
  color: #1a3a52;
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 4vw, 2rem);
}
.contact-info p {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  margin-bottom: 12px;
  color: #444;
}


/* Mission Section */
.mission {
  padding: clamp(40px, 8vh, 80px) 5%;
  text-align: center;
  background-color: #fff;
}
.mission h2 {
  color: #1a3a52;
  margin-top: 0;
  font-size: clamp(1.6rem, 4vw, 2rem);
}

.mission-content {
  max-width: 1200px;
  margin: 0 auto;
}

.mission .section-desc {
  text-align: justify;
  max-width: fit-content;
  padding: 0 0px; 
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(24px, 4vw, 40px);
  margin-top: 40px;
}

.mission-card {
  text-align: left;
  padding: clamp(24px, 4vw, 32px);
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid #1a3a52;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.mission-card h3 {
  color: #1a3a52;
  margin-bottom: 16px;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
}

.mission-card p {
  color: #444;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.6;
}
/* Pricing Plans */
.pricing-plans {
  padding: clamp(40px, 10vh, 80px);
  background-color: #f0f4f8;
  text-align: center;
  padding-top: 1px;
  padding-bottom: 30px;
}

.pricing-content {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(24px, 4vw, 40px);
  margin-top: 40px;
}

.pricing-card {
  text-align: left;
  padding: clamp(24px, 4vw, 32px);
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid #1a3a52;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.pricing-card h3 {
  color: #1a3a52;
  margin-bottom: 16px;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
}

.pricing-card p {
  color: #444;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.6;
}

/*Price-title adjustment*/
#price-title {
  margin-top: 0;
  text-align: center;
  color: #1a3a52;
  font-size: clamp(2rem, 5vw, 2.4rem);
}
/* Footer */
footer {
  background: #1a3a52;
  color: #fff;
  margin-top: 30px;
  padding: clamp(16px, 3vh, 20px) 5% clamp(8px, 1vh, 10px);
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(24px, 5vw, 40px);
  max-width: 1200px;
  margin: 15px auto;
}
.footer-links h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.2rem);
  margin: bottom 4px;;
}
.footer-links a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin: 0px 0;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  padding: 0px 0;
}
.footer-links a:hover {
  text-decoration: underline;
}

.follow-me-icons {
	font-size: 30px;
}
.follow-me-icons i {
	float: left;
	margin: 0 10px 0 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: clamp(16px, 4vh, 20px);
  padding-top: clamp(12px, 2.5vh, 16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  
}

.footer-bottom p {
  margin: 0;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: #f0f0f0;
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
}


/* Modal/Popup Styles 
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: #fff;
  margin: 15vh auto;
  padding: 25px;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
}

.close-modal:hover {
  color: #333;
}

.modal h3 {
  color: #007b82;
  margin-bottom: 20px;
  font-size: 1.4rem;
}*/

/* Form Styles 
.app-request-form {
  display: grid;
  gap: 15px;
}

.form-group {
  display: grid;
  gap: 5px;
}

.form-group label {
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #007b82;
  box-shadow: 0 0 0 2px rgba(0, 123, 130, 0.1);
}*/

/* Success Message 
.success-message {
    background-color: #4CAF50;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}*/

/* Form Popup 
.form-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
}

.form-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.popup-content {
    background: #4CAF50;
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
    min-width: 300px;
}

.popup-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.popup-content p {
    margin: 0;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: white;
    cursor: pointer;
    opacity: 0.8;
}

.close-popup:hover {
    opacity: 1;
}*/




    /* Trigger Button */
    .open-popup-btn {
      padding: 12px 20px;
      background: #1b7502b4;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
      transition: 0.3s;
    }
    .open-popup-btn:hover {
      background: #1b7502b4;
    }

    /* Popup Overlay */
    .popup {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background:#1b7502b4(0,0,0,0.6);
      animation: fadeIn 0.3s ease-in-out;
    }

    /* Popup Content */
    .popup-content {
      background: #fff;
      margin: 5% auto;
      padding: 20px;
      border-radius: 10px;
      text-align: left;
      width: 90%;
      max-width: 400px;
      box-shadow: 0 5px 15px rgba(196, 227, 19, 0.95);
      animation: slideDown 0.3s ease;
      position: relative;
    }

    /* Close Button */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      background: none;
      border: none;
      font-size: 20px;
      cursor: pointer;
      color: #000000;
    }

    .open-popup-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .open-popup-input, .open-popup-textarea, .open-popup-button {
      padding: 10px;
      font-size: 14px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }

    .open-popup-button[type="submit"] {
      background: #1b7502b4;
      color: white;
      border: none;
      cursor: pointer;
      transition: 0.3s;
    }
    .open-popup-button[type="submit"]:hover {
      background: #1b7502b4;
    }

    .formstatus {
      font-size: 14px;
    }
    .success { color: green; }
    .error { color: red; }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes slideDown {
      from { transform: translateY(-50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
/* Testimonials & marquee */
.testimonials {
  padding: clamp(18px, 3.5vh, 32px) 5%;
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
  text-align: center;
  margin-top: 0;
}
.testimonials h2 {
  color: #1a3a52;
  margin-bottom: 12px;
}

/* Marquee container */
.marquee {
  overflow: hidden;
  --marquee-gap: 28px;
  margin: 0 auto 18px;
  max-width: 1200px;
}

/* Track that scrolls horizontally */
.marquee-track {
  display: flex;
  gap: var(--marquee-gap);
  animation: marquee 18s linear infinite;
  will-change: transform;
}

/* Individual testimonial cards */
.testimonial {
  flex: 0 0 320px;
  background: #ffffff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 8px 18px rgba(3,10,18,0.06);
  text-align: left;
}
.testimonial p { margin: 0 0 8px; color: #333; }
.testimonial cite { color: #666; font-size: 0.95rem; }

/* Marquee animation */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - var(--marquee-gap))); }
}

/* Pause animation on hover/focus for accessibility */
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

/* Responsive video */
.video-wrapper {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 20px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Smaller screens adjustments */
@media (max-width: 720px) {
  .marquee-track { gap: 16px; }
  .testimonial { flex: 0 0 260px; padding: 12px; }
  .video-wrapper iframe { height: 260px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

@import url('font-awesome.css'); 
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');
.iconColor .fa {
	color: #ee0c45;
}
.bgColor1 .fa {
	color: #fff;
} 
.about-video-section {
  margin: 5px auto;
  padding: 5px;
  text-align: center;
}

.about-video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
.about-video-section h2 {
  color: #1a3a52;
  margin-top: 0;
  font-size: clamp(1.6rem, 4vw, 2rem);
}

.about-text {
  flex: 1 1 50%;
  min-width: 300px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

.about-video {
  flex: 1 1 45%;
  min-width: 300px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .about-video-grid {
    flex-direction: column;
  }
}



  /* ===============================
    T&C + Privacy Policy Modal Styles
    =============================== */

  /* Dark overlay */
  .modal-overlay {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 15px;
  }

  /* Modal box */
  .modal {
    background: #ffffff;
    width: 90%;
    max-width: 750px;
    max-height: 85vh;
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    animation: fadeIn 0.25s ease-out;
  }

  /* Header */
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }

  .modal-header h2 {
    margin: 0;
    color: #1a3a52;
    font-weight: 700;
  }

  /* Close button */
  .modal-header .close-btn {
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #444;
  }

  .modal-header .close-btn:hover {
    color: #000;
  }

  /* Scrollable content box */
  .modal-content {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 18px;
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background: #fafafa;
  }

  /* Content Typography */
  .modal-content p,
  .modal-content li {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    color: #333;
  }

  .modal-content h3 {
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    color: #1a3a52;
    font-size: 1.1rem;
    font-weight: 600;
  }

  /* Footer */
  .modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  /* Checkbox label */
  .modal-footer label {
    font-size: 0.95rem;
    color: #0c0303;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* Primary Button */
  button {
    background: #1a3a52;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: 0.2s;
  }

  button:hover:not(:disabled) {
    background: #2c5aa0;
  }

  button:disabled {
    background: #b3b3b3;
    cursor: not-allowed;
  }

  /* Decline Button */
  .decline-btn {
    background: #b71c1c;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: 0.2s;
  }

  .decline-btn:hover {
    background: #9a1616;
  }

  /* Smooth animation */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ============================
    Mobile Responsive Support
    ============================ */
  @media (max-width: 480px) {
    .modal {
      width: 100%;
      padding: 15px;
    }

    .modal-content {
      padding: 10px;
    }

    .modal-footer {
      flex-direction: column;
      align-items: stretch;
    }

    button, .decline-btn {
      width: 100%;
      text-align: center;
    }
}

   
/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 56px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.whatsapp-float:hover,
.whatsapp-float:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.whatsapp-float .fa-whatsapp {
  font-size: 22px;
}

/* Slightly smaller on very small screens */
@media (max-width: 420px) {
  .whatsapp-float { width: 48px; height: 48px; line-height: 48px; right: 16px; bottom: 16px; }
  .whatsapp-float .fa-whatsapp { font-size: 20px; }
}


nav a {
  margin: 0 6px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  transition: background 220ms cubic-bezier(.2,.9,.2,1),
              color 180ms ease,
              transform 160ms ease,
              box-shadow 220ms ease;
  position: relative;
  display: inline-block;
}
nav a:focus {
  outline: 3px solid rgba(0,123,130,0.12);
  outline-offset: 3px;
}
nav a.active, nav a:hover {
  background: #d4af37;
  color: #1a3a52;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
  transition: 0.2s;
}