    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
      color: #333;
    }
    header {
      background: url('office.jpg') center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 5rem 1rem;
      position: fixed;
    }
    
    header h1 {
      font-size: 2.8rem;
      z-index: 1;
      position: relative;
    }
    header p {
      font-size: 1.2rem;
      z-index: 1;
      position: relative;
      max-width: 600px;
      margin: auto;
    }
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #222;
      color: white;
      padding: 0.5rem 1rem;
    }
    .menu {
      display: none;
      flex-direction: column;
      gap: 1rem;
      background: #333;
      position: absolute;
      top: 60px; right: 0;
      padding: 1rem;
      border-radius: 8px;
    }
    .menu a {
      color: white;
      text-decoration: none;
    }
    
    .section {
      padding: 3rem 1rem;
      text-align: center;
    }
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    .service {
      background: white;
      padding: 1rem;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .whatsapp {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
    }
    .whatsapp img {
      width: 55px;
      height: 55px;
    }
    
  

    /* Header Slider Styling */
.slider-header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider-header img.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.slider-header img.slide.active {
  opacity: 1;
  z-index: 2;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.slider-text {
  text-align: center;
  color: white;
  padding: 0 20px;
  animation: fadeIn 2s ease;
}

.slider-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.slider-text p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.cta-button {
  background-color: #00b894;
  color: white;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #019875;
}

/* Fade Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .slider-text h1 {
    font-size: 2rem;
  }
  .slider-text p {
    font-size: 1rem;
  }
}

/* Fixed Top Navigation Bar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgb(87, 83, 83);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(77, 69, 69, 0.959);
}




/* ===== Fixed Navbar Style ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: linear-gradient(to right, #003147, #007b8a); /* Matching color with header */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

nav div strong {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

nav .menu {
  display: flex;
  gap: 20px;
}

nav .menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

nav .menu a:hover {
  background: rgba(255, 255, 255, 0.2);
}



/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.4;
  background-color: #f4f4f4;
}






/* Header */
header {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)),
              url('images/slide1.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding:  20px;
  text-align: center;
  color: white;
  margin-top: 0;
 

}

.header-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.header-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Fixed Navbar Style ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: linear-gradient(to right, #003147, #007b8a); /* Matching color with header */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

nav div strong {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

nav .menu {
  display: flex;
  gap: 20px;
}

nav .menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

nav .menu a:hover {
  background: rgba(255, 255, 255, 0.2);
}


header {
  transition: background-image 2s ease-in-out;
}


.about-toggle {
  cursor: pointer;
  background-color: #003366;
  color: white;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-toggle:hover {
  background-color: #005999;
}

.about-content {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-content.hidden {
  display: none;
}

@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
  }
}

.about-text {
  flex: 1;
  font-size: 1rem;
  color: #333;
}

.about-text .inspiration {
  font-style: italic;
  font-weight: bold;
  color: #006699;
  margin: 20px 0;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Full page About */
.about-section {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #f7f9fb, #e6f0fa);
  padding: 50px 20px;
  box-sizing: border-box;
}

.about-toggle {
  cursor: pointer;
  background-color: #003366;
  color: #fff;
  padding: 20px;
  font-size: 2rem;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: 0.3s;
}

.about-toggle:hover {
  background-color: #005ba1;
}

.about-content.hidden {
  display: none;
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.about-text {
  flex: 1;
  max-width: 600px;
  color: #333;
}

.about-text h3 {
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 15px;
}

.about-text .inspiration {
  font-style: italic;
  color: #006699;
  font-weight: bold;
  margin: 20px 0;
}

.about-image {
  flex: 1;
  max-width: 500px;
 
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 30px rgba(253, 248, 248, 0.973);
}

.about-section {
  background: #fff;
  padding: 60px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.about-img {
  width: 300px;
  max-width: 90%;
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
}

.about-text {
  max-width: 600px;
  padding: 20px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #003366;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #444;
}

.about-text blockquote {
  font-style: italic;
  color: #003366;
  border-left: 5px solid #003366;
  padding-left: 15px;
  margin-top: 20px;
}

.about-img {
  width: 250px;
  max-width: 90%;
  border-radius: 15px;
  margin: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 3px solid #e6e6e6;

}

.about-img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 243, 243, 0.884);
}





.map-container {
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
   text-align: center;
  padding: 40px 10px;
}

.map-pin {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}

.map-pin img {
  width: 32px;
  height: 32px;
}

#contact {
  text-align: center;
  padding: 40px 10px;
}


.contact-section {
  text-align: center;
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s;
  cursor: pointer;
}

.contact-box:hover {
  transform: translateY(-5px);
}

.contact-box img {
  width: 25px;
  margin-bottom: 10px;
}

.contact-box p {
  margin: 0;
  font-size: 15px;
  color: #333;
}

.contact-box a {
  color: #007bff;
  text-decoration: none;
}




.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 30px 0;
}

.service-card {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 74px;
  height: 74px;
  margin-bottom: 15px;
  cursor: pointer;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #0f2027;
}

.service-card p {
  font-size: 14px;
  color: #555;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 80px; /* Increased from 64px */
  height: 80px;
  border-radius: 12px; /* Soft rounded corners */
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Adds a glow/shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.slideshow-header {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: opacity 0.8s ease-in-out;
  opacity: 1;
  filter: brightness(1.1) contrast(1.1) saturate(1.05); /* Slight image enhancement */
}

.slideshow-header.fade-out {
  opacity: 0;
}


/* Remove dark overlay - use transparent white for clarity */
.slideshow-header::before {

  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.959); /* Very light white for minimal filtering */
  z-index: 1;
}

.slideshow-header .overlay {
  position: relative;
  z-index: 2;
  padding: 2.5rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #f1efef;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5); /* Subtle highlight for readability */
  background-color: white;
}

/* Text Styling */
.slideshow-header .overlay h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0.5rem 0;
}

.slideshow-header .overlay p {
  font-size: 1.2rem;
  max-width: 800px;
  color: #f5eeee;
  opacity: 0.65;
  font-weight: 500;
}









    .container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      padding: 2rem;
      max-width: 1000px;
      margin: auto;
    }

    .card {
      background: white;
      border-radius: 1rem;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: scale(1.05);
    }

    .card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }

    .card-title {
      padding: 1rem;
      text-align: center;
      font-size: 1.2rem;
      font-weight: bold;
      background-color: #f9fafb;
    }
  
    footer {
  background-color: #272727;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
  display: block;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
  display: inline-block;
}

.footer-container p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icons a img {
  width: 24px;
  height: 24px;
  filter: invert(1);
  transition: transform 0.2s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
}






.samenbeng-small-section {
  background: linear-gradient(to right, #f2fbff, #e6f0fa);
  padding: 2rem 1rem;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.samenbeng-small-section h2 {
  font-size: 1.8rem;
  color: #0a2a43;
  margin-bottom: 1.8rem;
  font-weight: 600;
}

.small-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.small-stat {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.2rem 1rem;
  width: 150px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 1.0s ease;
}

.small-stat:hover {
  transform: scale(1.05);
}

.small-stat h3 {
  font-size: 1.7rem;
  color: #007acc;
  margin: 0;
  font-weight: 700;
}

.small-stat p {
  font-size: 0.9rem;
  color: #333;
  margin-top: 0.3rem;
}



.trust-section {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.trust-container h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 500px;
  text-align: left;
}

.trust-list li {
  font-size: 16px;
  margin: 10px 0;
  padding-left: 10px;
  position: relative;
  color: #333;
}
.secondly-executive {
  display: flex;
  flex:auto;
  gap: 15px;
  padding-top: 10px;

}

.leaders-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align:center;
  color: #176785;
}

.leaders-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  margin-top: 20px;
  color: #333;
}

.leaders-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.leader-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  padding: 20px;
  max-width: 260px;
  transition: transform 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-10px);
}


   .leader-card img {
  width: 100%;
  height: 250px; /* Add 'px' unit */
  border-radius: 50%;
  border: 3px solid #bfbefa;
  margin-bottom: 15px;
  background-color: #B2BEB5; /* ash color */
}


.leader-card h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
  color: #222;
}

.leader-card .title {
  font-style: italic;
  color: #777;
  margin-bottom: 8px;
}

.leader-card a {
  color: #0056b3;
  text-decoration: none;
  font-weight: 500;
}

.leader-card a:hover {
  text-decoration: underline;
}



    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #1b1b1b;
      color: white;
      padding: 20px 24px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      
    }

    .navbar .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ffd700;
    }

    .nav-links {
      display: flex;
      gap: 20px;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #ffd700;
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      color: rgb(255, 249, 249);
      font-size: 18px;
      transition: color 0.3s ease;
    }

    .social-icons a:hover {
      color: #ffd700;
    }

    @media screen and (max-width: 768px) {
      .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .nav-links, .social-icons {
        flex-wrap: wrap;
      }
    }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 40px;
  cursor: pointer;
  gap: 5px;  padding: 10px;
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  
}



/* Optional: active animation (burger turns into X) */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    background: #000000;
    padding: 20px;
    gap: 15px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 999;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    display: flex;
  }
}


.travel-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.image-container img {
  width: 400px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.text-container {
  max-width: 400px;
  text-align: left;
}

.text-container h1 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.text-container p {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.duration {
  display: inline-block;
  font-size: 1rem;
  padding: 10px 18px;
  background-color: #0057a3;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  
}

.break-email {
  word-break: break-all;      /* Break long strings anywhere */
  overflow-wrap: break-word; /* Older support */
}

@media (max-width: 768px) {
  nav .menu {
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 64px;
    right: 0;
    background-color: #003147;
    width: 100%;
    padding: 1rem;
    display: none;
  }

  nav .menu.show {
    display: flex;
  }

  nav .menu a {
    padding: 10px;
    width: 100%;
  }
}



  @media (max-width: 600px) {
    h2 {
      font-size: 1.6em !important;
    }
    h3 {
      font-size: 1em !important;
    }
    p {
      font-size: 0.95em !important;
    }
    header span {
      font-size: 16px !important;
    }
  }




 
  @media (max-width: 600px) {
    section#digital-marketing h2 {
      font-size: 1.8rem;
    }
    section#digital-marketing p {
      font-size: 1rem;
      padding: 0 10px;
    }
    .cta-button {
      font-size: 0.95rem;
      padding: 12px 20px;
    }
  }

  .cta-button {
    background: #162ba3;
    color: white;
    padding: 14px 30px;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
  }

  .cta-button:hover {
    background: #0f1f80;
  }


  @media (max-width: 600px) {
  section#facility-management {
    padding: 30px 10px;
  }
  h2 {
    font-size: 1.8rem;
  }
  p {
    font-size: 1rem;
  }
}




@media (max-width: 480px) {
  h2 {
    font-size: 1.8rem;
  }

  p {
    font-size: 1rem;
    padding: 0 10px;
  }

  a {
    font-size: 0.95rem;
  }
}


@media (max-width: 480px) {
  img {
    height: auto;
  }
}

