    /* Reset & base */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      background: #f9f9f9;
      color: #333;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    a {
      text-decoration: none;
      color: #18A8D8;
      transition: color 0.3s ease;
    }
    a:hover,
    a:focus {
      color: #0f6f9a;
      outline: none;
    }

    /* NAVBAR */
    .navbar {
      background: #007acc;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      position: sticky;
      top: 0;
      z-index: 1000;
      flex-wrap: wrap;
    }

    .navbar .logo img {
      height: 50px;
      width: auto;
    }

    .navbar ul {
      list-style: none;
      display: flex;
      gap: 25px;
      align-items: center;
      flex-wrap: wrap;
      margin-left: 20px;
    }

    .navbar ul li a {
      color: white;
      font-weight: 600;
      font-size: 1rem;
      padding: 8px 12px;
      border-radius: 4px;
    }

    .navbar ul li a:hover,
    .navbar ul li a:focus {
      background-color: rgba(255, 255, 255, 0.2);
      color: #e0e0e0;
    }

    .contact-info {
      display: flex;
      gap: 20px;
      align-items: center;
      margin-left: auto;
      flex-wrap: wrap;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.9rem;
      color: white;
      background: rgba(255 255 255 / 0.2);
      padding: 6px 10px;
      border-radius: 25px;
      transition: background-color 0.3s ease;
    }

    .contact-item:hover,
    .contact-item:focus {
      background-color: rgba(255 255 255 / 0.35);
      outline: none;
    }

    .contact-item .icon {
      height: 18px;
      width: 18px;
      filter: invert(1);
    }

    /* Mobile Hamburger Menu */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      width: 30px;
      height: 24px;
      justify-content: space-between;
    }

    .menu-toggle span {
      height: 4px;
      background: white;
      border-radius: 2px;
    }

    @media (max-width: 900px) {
      .navbar ul {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #007acc;
        flex-direction: column;
        gap: 0;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
      }
      .navbar ul.open {
        max-height: 300px; /* Enough for menu */
      }

      .navbar ul li {
        width: 100%;
      }

      .navbar ul li a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255 255 255 / 0.2);
      }

      .contact-info {
        display: none;
      }

      .menu-toggle {
        display: flex;
      }
    }

    /* MAIN CONTENT */

    main {
      flex: 1;
    }

    /* CAROUSEL */

    .carousel {
      position: relative;
      max-width: 100%;
      overflow: hidden;
      margin: 20px auto;
      border-radius: 12px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
      background: #000;
    }

    .carousel-images {
      display: flex;
      transition: transform 0.5s ease-in-out;
      width: 100%;
    }

    .carousel-images img {
      width: 100%;
      flex-shrink: 0;
      object-fit: cover;
      height: 350px;
      user-select: none;
    }

    @media (max-width: 600px) {
      .carousel-images img {
        height: 200px;
      }
    }

    .carousel-text {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 700px;
      background: rgba(0, 0, 0, 0.6);
      padding: 20px 30px;
      border-radius: 10px;
      color: #fff;
      text-align: center;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
      user-select: none;
    }

    .carousel-text h1 {
      font-size: 1.8rem;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .carousel-text p {
      font-size: 1.1rem;
      line-height: 1.4;
    }

    button.prev,
    button.next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.45);
      color: white;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      padding: 10px 16px;
      border-radius: 50%;
      z-index: 10;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    button.prev:hover,
    button.next:hover,
    button.prev:focus,
    button.next:focus {
      background-color: rgba(0, 0, 0, 0.75);
      outline: none;
    }

    button.prev {
      left: 10px;
    }

    button.next {
      right: 10px;
    }

    /* WHATSAPP CHAT BUTTON */
    .whatsapp-chat {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .phone-icon {
      position: fixed;
      bottom: 100px;
      right: 20px;
      z-index: 1000;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .whatsapp-chat img {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      user-select: none;
    }

    .phone-icon img {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      user-select: none;
    }

    .whatsapp-chat:hover,
    .whatsapp-chat:focus {
      transform: scale(1.1);
      outline: none;
    }

    .phone-icon:hover,
    .phone-icon:focus {
      transform: scale(1.1);
      outline: none;
    }
    section {
      scroll-margin-top: 95px; /* Adjust this value to match your navbar height */
    }
    

    /* ABOUT SECTION */
    .about-section {
      padding: 40px 20px;
      background: white;
      max-width: 900px;
      margin: 0 auto 40px;
      border-radius: 12px;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
      text-align: center;
    }

    .about-section h2 {
      margin-bottom: 15px;
      font-weight: 700;
      font-size: 2rem;
      color: #222;
    }

    .about-section h2 span,
    .about-section h2[style] {
      color: #18A8D8;
    }

    .about-section p {
      font-size: 1.1rem;
      margin-bottom: 15px;
      line-height: 1.5;
      color: #444;
    }

    .about-section h3 {
      margin-top: 30px;
      margin-bottom: 10px;
      font-weight: 700;
      color: #18A8D8;
    }

    .about-section p:nth-child(n + 5) {
      margin-left: 10px;
      font-size: 1rem;
      color: #555;
    }

    /* SERVICES SECTION */
    .services-section {
      max-width: 1100px;
      margin: 0 auto 60px;
      padding: 0 20px;
    }

    .services-section h2 {
      text-align: center;
      margin-bottom: 40px;
      font-weight: 700;
      font-size: 2rem;
      color: #222;
    }

    .services-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .service-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
      padding: 15px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: default;
    }

    .service-card:hover,
    .service-card:focus-within {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      outline: none;
    }

    .service-card h3 {
      margin-bottom: 15px;
      color: #18A8D8;
      font-size: 1.3rem;
    }

    .service-card img.service-card-image {
      max-width: 100%;
      border-radius: 8px;
      margin-bottom: 15px;
      user-select: none;
      height: 160px;
      object-fit: cover;
    }

    .service-card p {
      font-size: 1rem;
      color: #444;
      line-height: 1.4;
    }

    /* STATS BAR */
    .stats-bar {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 60px;
      background-color: #18A8D8;
      color: white;
      padding: 25px 15px;
      font-weight: 700;
      font-size: 1.5rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      text-align: center;
      flex-wrap: wrap;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 140px;
      user-select: none;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 900;
      letter-spacing: 0.03em;
      margin-bottom: 6px;
    }

    /* CONTACT SECTION */
    .contact-section {
      background: white;
      max-width: 900px;
      margin: 0 auto 40px;
      border-radius: 12px;
      padding: 40px 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .contact-section h2 {
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 20px;
      text-align: center;
      color: #222;
    }

    .contact-description {
      text-align: center;
      margin-bottom: 25px;
      font-size: 1.1rem;
      color: #444;
      line-height: 1.5;
    }

    .contact-details p {
      font-size: 1rem;
      margin-bottom: 12px;
      color: #333;
      line-height: 1.4;
    }

    .contact-details a {
      color: #18A8D8;
      font-weight: 600;
    }

    .map-container {
      margin-top: 25px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    iframe {
      width: 100%;
      height: 300px;
      border: none;
    }

    /* FOOTER */
    .footer {
      background-color: #003c65;
      color: #cfd8dc;
      padding: 25px 20px;
      text-align: center;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

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

    .footer-logo img {
      height: 50px;
      margin-bottom: 15px;
      filter: brightness(1.2);
    }

    .footer h3 {
      font-weight: 700;
      margin-bottom: 10px;
      color: #fff;
    }

    .footer p {
      margin: 3px 0;
      line-height: 1.4;
      color: #b0bec5;
    }

    .social-media-footer {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }
    
    .social-media-footer a img {
      width: 32px;
      height: 32px;
      transition: transform 0.3s ease;
    }
    
    .social-media-footer a:hover img {
      transform: scale(1.2);
    }    

    .bottom-center-logos {
      margin-top: 15px;
      display: flex;
      justify-content: center;
      gap: 30px;
    }

    .bottom-center-logos img {
      width: 30px;
      height: 30px;
      filter: brightness(0.9);
      transition: filter 0.3s ease;
      user-select: none;
      cursor: pointer;
    }

    .bottom-center-logos img:hover,
    .bottom-center-logos img:focus {
      filter: brightness(1.3);
      outline: none;
    }

    /* Responsive spacing */
    @media (max-width: 600px) {
      .about-section,
      .contact-section {
        padding: 25px 15px;
      }

      .carousel-text h1 {
        font-size: 1.3rem;
      }
      .carousel-text p {
        font-size: 0.95rem;
      }

      .stats-bar {
        font-size: 1.2rem;
        gap: 30px;
      }
      .stat-number {
        font-size: 2.2rem;
      }
      
    }