    /* ------------------------------ Global Styles ------------------------------ */
    body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      color: #fff;
      background: #000;
    }
    a {
      text-decoration: none;
      color: #fff;
    }
    
    /* ------------------------------ Header Styles ------------------------------ */
    header {
      background: rgba(0, 0, 0, 0.7);
      padding: 40px;
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 3000; /* Ensure header appears above overlay */
    }
    .logo img {
      max-width: 300px;
      height: auto;
    }
    nav {
      position: relative;
      display: flex;
      align-items: center;
    }
    
    /* ------------------------------ Desktop Menu ------------------------------ */
    ul.desktop-menu {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
    }
    ul.desktop-menu > li {
      position: relative;
      margin-left: 20px;
    }
    ul.desktop-menu > li > a {
      font-weight: bold;
      transition: color 0.3s ease;
    }
    ul.desktop-menu > li > a:hover {
      color: #ddd;
    }
    /* Dropdown submenu with fade/slide effect */
    ul.desktop-menu li ul.dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: rgba(0, 0, 0, 0.8);
      list-style: none;
      margin: 0;
      padding: 10px 0;
      min-width: 150px;
      z-index: 9999;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }
    ul.desktop-menu li ul.dropdown li a {
      display: block;
      padding: 8px 15px;
      white-space: nowrap;
    }
    ul.desktop-menu li ul.dropdown li a:hover {
      background: rgba(255, 255, 255, 0.1);
    }
    ul.desktop-menu li:hover ul.dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    

.service-box-link {
  width: 22%;
  height: 350px;
  margin: 1%;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-box-link .service-info {
  background: rgba(0, 0, 0, 0.7);
  padding: 15px;
  text-align: center;
}
.service-box-link h3 {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
}
.service-box-link p {
  margin: 5px 0 0;
  font-size: 14px;
}
.service-box-link:hover,
.service-box-link:focus {
  filter: brightness(0.93);
  outline: 2px solid #ffd511;
}
@media screen and (max-width: 768px) {
  .service-box-link {
    width: 90%;
    margin-bottom: 20px;
    height: 250px;
  }
}




    /* ------------------------------ Social Media & Contact ------------------------------ */
    .social-media {
      display: flex;
      align-items: center;
      margin-left: 20px;
    }
    .social-media a {
      margin-left: 10px;
      display: inline-block;
    }
    .social-media img {
      width: 24px;
      height: auto;
    }
    .contact-us {
      margin-left: 20px;
    }
    .contact-us a {
      display: inline-block;
      padding: 10px 30px;
      background-color: #ffd511;
      color: #000;
      font-size: 18px;
      border-radius: 4px;
      transition: background 0.3s ease;
      font-weight: bold;
      text-transform: uppercase;
    }
    .contact-us a:hover {
      background-color: #ebb300;
    }
    
    /* ------------------------------ Burger Menu (Mobile Trigger) ------------------------------ */
    .burger-menu {
      display: none;
      flex-direction: column;
      cursor: pointer;
      margin-left: 20px;
    }
    .burger-menu span {
      display: block;
      width: 25px;
      height: 3px;
      margin: 4px 0;
      background: #fff;
      transition: background 0.3s ease;
    }
    
    /* ------------------------------ Mobile Overlay & Menu Container ------------------------------ */
    /* Using opacity and transform for animated slide-in effect */
    #mobileOverlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 1);
      z-index: 2000;
      overflow: hidden;
      opacity: 0;
      transform: translateY(-100%);
      transition: opacity 0.5s ease, transform 0.5s ease;
      pointer-events: none;
    }
    #mobileOverlay.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .mobile-menu-container {
      position: relative;
      width: 100%;
      height: 100%;
    }
    #mainMobileMenu {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: transform 0.4s ease;
      transform: translateX(0);
    }
    .mobile-submenu {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: transform 0.4s ease;
      transform: translateX(100%);
    }
    .mobile-submenu.active-submenu {
      transform: translateX(0);
    }
    .mobile-menu-section a {
      color: #fff;
      font-size: 24px;
      margin: 15px;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }
    .mobile-menu-section a:hover {
      color: #ddd;
    }
    
    /* ------------------------------ Hero Section with Video / Image Background ------------------------------ */
    .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
      background: #000; /* matches the image's dark edges when using contain */
    }
    .hero video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }
    .hero img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;            /* fill edge-to-edge */
      object-position: center 60%;  /* bias toward the subject (lower-middle of frame) */
      z-index: 0;
    }
    @media screen and (max-width: 768px) {
      .hero {
        height: 70vh;
      }
    }
    
    /* ------------------------------ Info Section ------------------------------ */
    .info-section {
      background-color: #000;
      color: #fff;
      text-align: center;
      padding: 50px 20px;
    }
    .info-section p {
      max-width: 800px;
      margin: 0 auto 20px;
      line-height: 1.6;
    }
    
    /* ------------------------------ Services Section ------------------------------ */
    .services-section {
      background-color: #111;
      padding: 50px 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
    }
    .service-box {
      width: 22%;
      height: 350px;
      margin: 1%;
      background-size: cover;
      background-position: center;
      position: relative;
      color: #fff;
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
    .service-box .service-info {
      background: rgba(0, 0, 0, 0.7);
      padding: 15px;
      text-align: center;
    }
    .service-box h3 {
      margin: 0;
      font-size: 20px;
      text-transform: uppercase;
    }
    .service-box p {
      margin: 5px 0 0;
      font-size: 14px;
    }
    @media screen and (max-width: 768px) {
      .services-section {
        flex-direction: column;
        align-items: center;
      }
      .service-box {
        width: 90%;
        margin-bottom: 20px;
      }
    }
    
    /* ------------------------------ Contact Section ------------------------------ */
    .contact-section {
      background-color: #000;
      padding: 50px 20px;
      text-align: center;
    }
    .contact-section h2 {
      font-size: 28px;
      margin-bottom: 20px;
    }
    .contact-section form {
      max-width: 600px;
      margin: 0 auto;
    }
    .contact-section input,
    .contact-section textarea {
      width: 100%;
      padding: 15px;
      margin-bottom: 15px;
      border: none;
      border-radius: 4px;
      background: #333;
      color: #fff;
      font-size: 16px;
      font-family: inherit;
    }
    .contact-section textarea {
      height: 150px;
      resize: vertical;
    }
    .contact-section button {
      background-color: #ffd511;
      border: none;
      color: #000;
      padding: 15px 30px;
      font-size: 18px;
      border-radius: 4px;
      font-weight: bold;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .contact-section button:hover {
      background-color: #ebb300;
    }
    
    /* ------------------------------ Blog Section ------------------------------ */
    .blog-section {
      background-color: #222;
      padding: 50px 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
    }
    .blog-box {
      width: 22%;
      height: 350px;
      margin: 1%;
      background-size: cover;
      background-position: center;
      position: relative;
      border-radius: 4px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      color: #fff;
    }
    .blog-box .blog-info {
      background: rgba(0, 0, 0, 0.7);
      padding: 15px;
      text-align: center;
    }
    .blog-box h3 {
      margin: 0;
      font-size: 20px;
      text-transform: uppercase;
    }
    .blog-box p {
      margin: 5px 0 0;
      font-size: 14px;
    }
    @media screen and (max-width: 768px) {
      .blog-section {
        flex-direction: column;
        align-items: center;
      }
      .blog-box {
        width: 90%;
        margin-bottom: 20px;
      }
    }
    
    /* ------------------------------ Footer Section ------------------------------ */
    footer {
      background-color: #111;
      padding: 40px 20px;
      color: #aaa;
      font-size: 14px;
    }
    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      margin-bottom: 20px;
    }
    .footer-column {
      width: 22%;
      min-width: 200px;
      margin-bottom: 20px;
      text-align: center; /* Center text in each column */
    }
    .footer-column h4 {
      margin-bottom: 10px;
      color: #fff;
      font-size: 16px;
      text-transform: uppercase;
    }
    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-column ul li {
      margin-bottom: 8px;
    }
    .footer-column ul li a {
      color: #aaa;
      font-size: 14px;
      transition: color 0.3s ease;
    }
    .footer-column ul li a:hover {
      color: #fff;
    }
    .footer-bottom {
      border-top: 1px solid #333;
      padding-top: 20px;
      text-align: center;
    }
    .footer-social {
      margin-bottom: 10px;
    }
    .footer-social a {
      margin: 0 5px;
      display: inline-block;
    }
    .footer-social img {
      width: 24px;
      height: auto;
    }
    
    /* ------------------------------ Responsive Styles ------------------------------ */
    @media screen and (max-width: 1115px) {
      ul.desktop-menu,
      .social-media,
      .contact-us {
        display: none;
      }
      .burger-menu {
        display: flex;
      }
      .logo img {
        max-width: 200px;
        height: auto;
      }
    }
	  
	  .contact-section input,
.contact-section textarea {
    box-sizing: border-box;
}
