:root {
      --accent: white;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      overflow-x: hidden;
      scroll-behavior: smooth;
      background-color: #dfdfdf;
    }

    .navbar {
      background-color: rgba(51, 51, 51, 0.7);
      backdrop-filter: blur(5px);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      opacity: 0;
      transform: translateY(-20px);
      animation: fadeSlideDown 0.8s ease-out forwards;
    }

    .navbar-logo img {
      height: 36px;
    }

    .hamburger {
      display: none;
      font-size: 28px;
      color: var(--accent);
      cursor: pointer;
      padding: 10px;
    }

    .navbar-right {
      position: relative;
      display: flex;
      align-items: center;
    }

    .navbar-links {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .navbar-links a {
      color: var(--accent);
      text-decoration: none;
      font-size: 1rem;
      padding: 10px;
      position: relative;
      transition: all 0.3s ease;
    }

    .navbar-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 6px;
      width: 100%;
      height: 2px;
      background-color: var(--accent);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.3s ease;
    }

    .navbar-links a:hover::after,
    .navbar-links a.active::after {
      transform: scaleX(1);
    }

    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }

      .navbar-links {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        align-items: flex-end;
        background-color: rgba(51, 51, 51, 0.95);
        width: 200px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        transition: max-height 0.4s ease, opacity 0.3s ease;
        z-index: 999;
      }

      .navbar-links.show {
        max-height: 500px;
        opacity: 1;
      }

      .navbar-links a {
        padding: 12px 16px;
        font-size: 1rem;
        width: 100%;
        text-align: right;
      }
    }

    .hero-container {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeSlideUp 1s ease-out 0.4s forwards;
    }

    .hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      pointer-events: none;
      opacity: 0;
      animation: fadeInOverlay 1s ease-out 0.7s forwards;
    }

    @keyframes fadeSlideDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeSlideUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInOverlay {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .slideshow-section {
  position: relative;
  background-color: #111;
  padding: 60px 20px;
}

.slideshow-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.slideshow-text {
  flex: 1 1 500px;
  color: white;
  text-align: left;
  padding-right: 20px;
}

    .slideshow-text h2 {
      font-size: 3.3rem;
      color: #FFD700;
      margin: 0 0 10px;
    }

    .slideshow-text p {
      font-size: 1.8rem;
      line-height: 1.4;
    }
    .slideshow-container {
  flex: 1 1 500px;
  max-width: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  margin-left: auto;
  margin-right: auto;
}

    .about-us{
      text-align: center;
    }

    .slide {
      display: none;
    }

    .slide img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    }

    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      padding: 12px;
      margin-top: -22px;
      color: white;
      font-weight: bold;
      font-size: 24px;
      transition: 0.3s ease;
      background-color: rgba(0, 0, 0, 0.4);
      user-select: none;
    }

    .prev { left: 0; border-radius: 0 3px 3px 0; }
    .next { right: 0; border-radius: 3px 0 0 3px; }

    .prev:hover, .next:hover {
      background-color: rgba(0, 0, 0, 0.8);
    }

    .fade {
      animation-name: fade;
      animation-duration: 1s;
    }

    @keyframes fade {
      from { opacity: 0.4; }
      to { opacity: 1; }
    }

    section {
      padding: 80px 20px;
      text-align: center;
      opacity: 0;
      transform: translateY(50px) scale(0.98);
      transition: opacity 1s ease, transform 1s ease;
    }

    section.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    h2 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    p {
      font-size: 1rem;
      max-width: 800px;
      line-height: 1.6;
      margin: 0 auto;
    }

    .button {
      display: inline-block;
      padding: 12px 24px;
      margin-top: 20px;
      background: #333;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.2s ease, background 0.3s ease;
    }

    .button:hover {
      transform: scale(1.05);
      background: #555;
    }

    @media (max-width: 500px) {
      .slideshow-text h2 {
        font-size: 1.8rem;
      }

      .slideshow-text p {
        font-size: 1.1rem;
      }

      h2 {
        font-size: 1.6rem;
      }

      p {
        font-size: 0.95rem;
      }
    }

    .footer {
  background-color: orange;
  border: 8px solid #2f2f38;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 auto;
  min-width: 220px;
}

.footer-left {
  display: flex;
  justify-content: flex-start;
}

.footer-center {
  display: flex;
  justify-content: center;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}


.footer-column h4 {
  margin: 10px 0 5px;
  font-weight: bold;
}

.footer-column p {
  margin: 5px 0;
  line-height: 1.6;
}

.footer-column-right {
  text-align: right;
  margin-left: auto;
  padding: 0;
}

.contact-us {
  font-size: 2.2rem;
  text-align: left;
  font-weight: bold;
  margin: 0 auto;
  padding: 0;
}

.contact-us-link {
  color: rgb(0, 0, 0);
  font-size: 2.4rem;
}


.contact-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-card {
  flex: 0 0 auto;
  text-align: left;
  min-width: 180px;
  font-size: 1.5rem;
}

.phone-number {
  font-size: 1.65rem;
  text-align: left;
}

.phone-number-name {
  font-size: 1.8rem;
  text-align: left;
  font-weight: 700;
}

.email {
  text-align: left;
  font-size: 1.5rem;
  color: #111;
  font-weight: bold;
}

.email-address {
  color: #111;
  text-decoration: none;
  text-align: left;
}

.address {
  text-align: left;
  font-size: 1.2rem;
}

.address-title {
  text-align: left;
  font-size: 1.9rem;
}

.extra-info {
  text-align: right;
  font-size: 1.3rem;
  font-weight: 550;
}

.footer-column-right .address {
  text-align: right;
}

.footer-column-right .social-icons {
  text-align: right;
}

.social-icons {
  width: 100%;
  text-align: left;
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
}

.social-icons img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.disclaimer {
  text-align: left;
  font-size: 1.7rem;
  color: #111;
  font-weight: bold;
  text-decoration: underline;
  margin-top: 17.5%;
}

.responsive-disclaimer {
  display: none;
}

@media (max-width: 768px) {
  .responsive-disclaimer {
    display: block;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 10px 0 20px;
  }

  .contact-card .disclaimer {
    display: none;
  }
}

.certificate-container {
  text-align: right;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .certificate-container {
    text-align: left;
  }
}

.certificate {
  width: 120px;
  height: auto;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  padding-top: 60px;
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 1000px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 36px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  background-color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  z-index: 1001;
}

.mobile-pdf-buttons {
  display: none;
  text-align: center;
  padding: 20px 10px;
}

.mobile-pdf-btn {
  display: block;
  background-color: #333;
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  margin: 10px auto;
  border-radius: 8px;
  font-size: 1.2rem;
  width: 90%;
  max-width: 300px;
  transition: background 0.3s ease;
}

.mobile-pdf-btn:hover {
  background-color: #555;
}

@media (max-width: 768px) {
  .desktop-pdf-view {
    display: none;
  }

  .mobile-pdf-buttons {
    display: block;
  }
}

@media (max-width: 768px) {
  .slideshow-container {
    max-height: 220px;
  }

  .slide img {
    height: 100%;
    object-fit: cover;
  }
}