 :root {
      --primary: #7a2e00;
      --accent: #ff7a00;
      --light: #fff4e6;
      --dark: #1a1a1a;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background: #ffffff;
      color: var(--dark);
      line-height: 1.6;
    }

    /* Navbar */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgb(255, 255, 255);
      z-index: 1000;
    }

    .navbar {
      max-width: 1200px;
      margin: auto;
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #000;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .logo {
      width: 40px;
      height: 40px;
      border-radius: 8px;
    }

    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
    }

    .navbar h1 {
      font-size: 1.4rem;
      letter-spacing: 1px;
    }

    .navbar ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }

    .navbar a {
      color: #000;
      text-decoration: none;
      font-weight: 500;
    }

    .navbar a:hover {
      color: var(--accent);
    }

 .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

/* Video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin-top: 70px;
  object-fit: cover;
  z-index: -2;
}

 .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(122, 47, 0, 0.579), rgba(255, 123, 0, 0.075));
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 700px;
      margin-left: 5%;
    }

   
    .btn {
      display: inline-block;
      background: var(--accent);
      color: #fff;
      padding: 0.75rem 1.5rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
    }

    .btn:hover {
      background: #0096c7;
    }

/* Container */
.hero-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

/* Text */
.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Image */
.hero-image img {
  width: 80%;
  max-width: 250px;
  display: block;
  margin-left: auto;
  animation: float 4s ease-in-out infinite;
}

/* Floating effect */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Animation on scroll (repeat) */
.hero-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.hero-animate.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image img {
    margin: 40px auto 0;
    max-width: 300px;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }
}



    section {
      padding: 5rem 2rem;
    }

    .section-title {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title h3 {
      font-size: 2.2rem;
      color: var(--primary);
    }

   
   /* Section subtitle */
.section-subtitle {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* Rounded background container (image-style card) */
.vm-wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 3rem 2rem;
  border-radius: 20px;
  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url("images/vision-bg.jpg"); /* optional image */
  background-size: cover;
  background-position: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.mission-vision {
  padding: 90px 20px;
  background: #fff;
}

/* Overlay heading */
.mv-overlay h3 {
  font-size: 26px;   /* was ~22px */
  font-weight: 700;
  margin-bottom: 14px;
}

/* Overlay paragraph */
.mv-overlay p {
  font-size: 17.5px; /* was ~16px */
  line-height: 1.8;
  max-width: 90%;
}

/* Icon size (slightly bigger for balance) */
.mv-icon i {
  font-size: 62px;   /* was ~56–58px */
}
@media (max-width: 768px) {
  .mv-overlay h3 {
    font-size: 23px;
  }

  .mv-overlay p {
    font-size: 16.5px;
  }

  .mv-icon i {
    font-size: 56px;
  }
}
/* Small screens fix (≤ 410px) */
@media (max-width: 410px) {

  .mv-card {
    min-height: 320px; /* ensures enough space */
  }

  .mv-overlay {
    justify-content: flex-start; /* instead of center */
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .mv-icon i {
    font-size: 48px;
    margin-bottom: 10px;
  }

  .mv-overlay h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }

  .mv-overlay p {
    font-size: 15.5px;
    line-height: 1.6;
  }
}


.mission-vision-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* Cards */
.mv-card {
  position: relative;
  flex: 1 1 45%;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}

/* Scroll animations */
.scroll-left,
.scroll-right {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

.scroll-left {
  transform: translateX(-80px);
}

.scroll-right {
  transform: translateX(80px);
}

.scroll-left.show,
.scroll-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Image */
.mv-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mv-card:hover img {
  transform: scale(1.05);
}

/* Overlay */
.mv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px;
}

.mv-icon i {
  font-size: 56px;
  margin-bottom: 15px;
}

/* Icon animation */
.mv-card.show .mv-icon {
  animation: popIn 0.6s ease forwards;
}

@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 900px) {
  .mv-card {
    flex: 1 1 100%;
  }
}




.what-we-do {
  padding: 90px 20px;
  background: linear-gradient(135deg, #fff4e6, #ffffff);
   background: url("./about-us-bg1.jpg") center/cover no-repeat;
}

.what-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Header */
.what-header h2 {
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.what-intro {
  max-width: 850px;
  margin: auto;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

/* Grid */
.what-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

/* Cards */
.what-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.what-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.12);
}

.what-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
}

.what-icon i {
  font-size: 42px;
  color: #fff;
}

.what-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.what-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

/* Footer text */
.what-footer {
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
}

/* -------------------------
   SCROLL ANIMATION (ONCE)
------------------------- */
.fade-once {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-once.show {
  opacity: 1;
  transform: translateY(0);
}

/* Delays */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* Responsive */
@media (max-width: 768px) {
  .what-header h2 {
    font-size: 2.2rem;
  }
}



.mobile-apps {
  padding: 90px 20px;
  background: #ffffff;
}

.mobile-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.mobile-header {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.mobile-header h2 {
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.mobile-header p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

/* Content */
.mobile-content {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* Features */
.mobile-features h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.mobile-features ul {
  list-style: none;
  margin-bottom: 25px;
}

.mobile-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 14px;
  color: #444;
}

.mobile-features i {
  color: var(--accent);
  font-size: 18px;
}

.mobile-note {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* App buttons */
.app-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-btn i {
  font-size: 26px;
}

.app-btn span {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.app-btn small {
  font-size: 0.7rem;
  opacity: 0.85;
}

.app-btn.android {
  background: linear-gradient(135deg, #3ddc84, #0f9d58);
}

.app-btn.ios {
  background: linear-gradient(135deg, #000000, #333333);
}

.app-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Image */
.mobile-image img {
  width: 100%;
  max-width: 180px;
  display: block;
  margin: auto;
}

/* Scroll animation (once) */
.fade-once {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-once.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 900px) {
  .mobile-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-links {
    justify-content: center;
  }
}

/* STATS SECTION */
/* STATS SECTION WITH IMAGE BG */
.stats-section {
  position: relative;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;

  /* Background image */
  background: url("./stats-bg.webp") center / cover no-repeat;
}

/* Orange overlay for readability */
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(122, 47, 0, 0.397),
    rgba(255, 123, 0, 0.133)
  );
  z-index: 1;
}

/* Keep content above overlay */
.stats-container {
  position: relative;
  z-index: 2;

  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}


/* STAT BOX */
.stat-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 38px 22px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);

  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.stats-section.show .stat-box {
  transform: translateY(0);
  opacity: 1;
}


.stat-box:hover {
  transform: translateY(-8px) scale(1.03);
}

/* ICON */
.icon-circle {
  width: 75px;
  height: 75px;
  margin: 0 auto 15px;
  background: #fff;
  color: #ff7a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 34px;
}

/* NUMBER */
.count {
  font-size: 2.6rem;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

/* LABEL */
.stat-box p {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .count {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .stats-section {
    padding: 80px 15px;
  }

  .count {
    font-size: 2.1rem;
  }

  .icon-circle {
    width: 65px;
    height: 65px;
  }

  .icon-circle i {
    font-size: 30px;
  }
}



/* PRODUCTS SECTION */
.products-section {
  padding: 90px 20px;
  background: #fff;
  color: var(--dark);
}

.products-section .section-title h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 3rem;
  text-align: center;
}

/* PRODUCTS GRID */
.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* PRODUCT CARD */
.product-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease;
}

.products-section.show .product-card {
  transform: translateY(0);
  opacity: 1;
}

/* IMAGE */
.product-image img {
  width: auto;          /* width adjusts automatically */
  max-width: 80%;       /* scale down inside card */
  height: auto;         /* keep aspect ratio */
  max-height: 180px;    /* optional: limit height */
  object-fit: contain;  /* don't crop, keep full image */
  display: block;
  margin: 20px auto;    /* center image vertically and horizontally */
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card:hover img {
  transform: scale(1.05);
}

/* OVERLAY ON HOVER */
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #ff7a00;
}

.product-overlay p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .product-image img {
    height: 180px;
  }

  .product-overlay h4 {
    font-size: 1.2rem;
  }

  .product-overlay p {
    font-size: 0.9rem;
  }
}
/* WHY CHOOSE PAULDEA */
.why-pauldea {
  padding: 90px 20px;
  background: linear-gradient(135deg, #fff5ec, #ffffff);
  text-align: center;
}

.why-pauldea .section-title h3 {
  font-size: 2.5rem;
  color: var(--primary);
}

.why-grid {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* CARD */
.why-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;

  opacity: 0;
  transform: translateY(40px);
}

/* Animate on scroll */
.why-pauldea.show .why-card {
  opacity: 1;
  transform: translateY(0);
}

.why-pauldea.show .why-card:nth-child(2) { transition-delay: 0.1s; }
.why-pauldea.show .why-card:nth-child(3) { transition-delay: 0.2s; }
.why-pauldea.show .why-card:nth-child(4) { transition-delay: 0.3s; }
.why-pauldea.show .why-card:nth-child(5) { transition-delay: 0.4s; }

/* ICON */
.why-card i {
  font-size: 42px;
  color: var(--accent);
  margin-bottom: 18px;
}

/* TEXT */
.why-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 122, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-pauldea .section-title h3 {
    font-size: 2rem;
  }
}

   /* ABOUT SECTION */
.about {
  position: relative;
  padding: 100px 20px;

  /* Watermark image */
  background: url("./ic_logo_ptrack.png") no-repeat center;
  background-size: 500px auto; /* Adjust width here, height scales automatically */

  color: #fff; /* Text color */
  overflow: hidden;
  margin-top: 30px;
}

/* Optional overlay to improve readability */
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0); /* dims watermark for text visibility */
  z-index: 1;
}

/* Wrapper for content above overlay */
.about-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
}


/* Dark overlay for readability */
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(242, 120, 5, 0);
  z-index: 1;
}

/* Content wrapper */
.about-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

/* Title */
.about .section-title h3 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary);
}

/* Text */
.about p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #000;
}

/* Highlight paragraph */
.about-highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin-top: 2rem;
}

/* SCROLL ANIMATION */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.scroll-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about {
    padding: 70px 15px;
  }

  .about .section-title h3 {
    font-size: 2rem;
  }

  .about p {
    font-size: 1rem;
  }
}

.contact-section {
  padding: 90px 20px;
  background: #fff;
  color: var(--dark);
}

.contact-section .section-title h3 {
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.contact-section .section-subtitle {
  font-size: 1rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
}

/* Wrapper: Info + Form */
.contact-wrapper {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* Contact Info Boxes */
.contact-info {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  background: var(--light);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  cursor: pointer;
}

.info-box i {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 12px;
}

.info-box h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.info-box p {
  font-size: 0.95rem;
  color: #555;
}
.map-link {
  color: #ff7a00;
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
}

/* Contact Form */
.contact-form {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Form groups with floating labels */
.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 1rem;
  background: #fff;
  color: var(--dark);
  transition: border 0.3s;
}

.form-group textarea {
  resize: none;
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999;
  transition: all 0.3s ease;
}

/* On focus or filled */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  color: var(--accent);
  background: #fff;
  padding: 0 4px;
}

/* Button */
.contact-form .btn {
  width: max-content;
  padding: 12px 25px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form .btn:hover {
  background: var(--primary);
}

/* Scroll animation */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

    /* Footer */
    footer {
      background: #3b1a00;
      color: #ccc;
      padding: 2rem;
      text-align: center;
    }

    footer span {
      color: var(--accent);
    }

    @media (max-width: 768px) {
      .hero h2 {
        font-size: 2.2rem;
      }

      .menu-toggle {
        display: block;
      }

      .navbar ul {
        position: absolute;
        top: 70px;
        right: 0;
        background: linear-gradient(135deg, #7a2e00, #ff7a00);
        flex-direction: column;
        width: 220px;
        display: none;
        padding: 1rem;
        border-radius: 0 0 0 12px;
      }

      .navbar ul.show {
        display: flex;
      }
    }
    

    /* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  z-index: 1000;
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 320px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  overflow: hidden;
  display: none;
  z-index: 1001;
}

/* Header */
.chat-header {
  background: #0b3c52;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h4 {
  margin: 0;
  font-size: 16px;
}

.chat-header .status {
  font-size: 12px;
  color: #9effc4;
}

.close-btn {
  font-size: 22px;
  cursor: pointer;
}

/* Body */
.chat-body {
  padding: 15px;
  background: #f4efe8;
}

.chat-message {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
}

/* Footer */
.chat-footer {
  padding: 15px;
  text-align: center;
}

.start-chat-btn {
  display: block;
  background: #25d366;
  color: #fff;
  padding: 12px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 6px;
}

.start-chat-btn:hover {
  background: #1ebe5d;
}

.chat-footer small {
  color: #777;
}
