 html, body {
  overflow-x: hidden;
  width: 100%;
}
/*  */
:root {
  --primary-color: #ec4415;
  --bg-light: #ffffff;
  --text-light: #000000;
  --bg-dark: #121212;
  --text-dark: #ffffff;
}
.logo-img {
  max-height: 50px;
  transform: scale(1.8);       /* Zoom in logo */
  transform-origin: center;
  margin-top: 12px;  
  image-rendering: auto;
  margin-left: 32px; 
  margin-bottom: 15px; 
  margin-right: 30px;
   /* Keep it centered */    /* Keep it centered */
}

.navbar .brand {
  display: flex;
  align-items: center;
  padding: 4px 0;
}

/* Theme Modes */
body.light-mode {
  background-color: var(--bg-light);
  color: var(--text-light);
}

body.dark-mode {
  background-color: var(--bg-dark);
  color: var(--text-dark);
}

/* Transitions */
body, nav, nav a, .why-choose-us, .site-footer {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* General Layout */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--primary-color);
  z-index: 1000;
  position: sticky;
  top: 0;
}

.navbar .brand {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar a {
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: var(--primary-color);
}

body.light-mode nav {
  background-color: var(--bg-light);
  color: var(--text-light);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

body.light-mode nav a {
  color: var(--text-light);
}

body.dark-mode nav {
  background-color: var(--bg-dark);
  color: var(--text-dark);
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
}

body.dark-mode nav a {
  color: var(--text-dark);
}

/* Theme Toggle */
#theme-toggle {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  padding: 6px 12px;
  font-size: 18px;
  transition: background 0.3s ease, transform 0.2s ease;
}

#theme-toggle:hover {
  transform: scale(1.05);
}

.navbar .nav-links li button {
  background: none;
  border: none;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  color: inherit;
}

/* Hamburger for Mobile */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar .nav-links li a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}

.service-detail-container {
      max-width: 1000px;
      margin: 50px auto;
      padding: 20px;
      border-radius: 12px;
      background-color: #fff;
      box-shadow: 0 0 12px rgba(0,0,0,0.1);
    }

    .service-detail-container img {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 20px;
    }

    .service-detail-container h1 {
      color: var(--primary-color);
      font-size: 2.5rem;
      margin-bottom: 15px;
    }

    .service-detail-container p {
      font-size: 1.1rem;
      line-height: 1.7;
    }

    .back-btn {
      display: inline-block;
      margin-top: 25px;
      padding: 10px 20px;
      background-color: var(--primary-color);
      color: white;
      text-decoration: none;
      border-radius: 8px;
      transition: background-color 0.3s;
    }

    .back-btn:hover {
      background-color: #c5350c;
    }
   
/* Footer */
.site-footer {
  background-color: var(--primary-color);
  color: var(--text-dark);
  text-align: center;
  padding: 15px 10px;
  font-weight: 600;
  font-size: 1rem;
  user-select: none;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

body.light-mode .site-footer {
  color: var(--text-light);
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    margin-right: 40px;
  }

  .navbar {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: inherit;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    z-index: 99;
  }

  #menu-toggle:checked ~ .nav-links {
    max-height: 500px;
    padding: 10px 0;
  }

  .container h1 {
    font-size: 2.2rem;
  }

  #theme-toggle {
    top: 80px;
    right: 15px;
    font-size: 18px;
    padding: 8px 10px;
  }

  .form-container iframe {
    max-width: 90vw;
    height: 450px;
  }
}

/* Background Overlay for Light/Dark Modes */
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
}

body.light-mode .background-overlay {
  background-image: url('aboutUslight.png');
}

body.dark-mode .background-overlay {
  background-image: url('aboutUsdark.png');
}
/* Ensure Outfit Font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

body {
  font-family: 'Outfit', sans-serif;
}

/* Footer Base */
.saas-footer {
  background-color: #ec4415;
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  padding: 40px 20px 10px;
  transition: all 0.3s ease;
z-index: 9999; 
}

body.light-mode .saas-footer {
  color: #000;
}

body.dark-mode .saas-footer {
  color: #fff;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-group {
  flex: 1 1 220px;
  min-width: 180px;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: inherit;
}

.footer-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-group ul li {
  margin-bottom: 8px;
}

.footer-group a {
  color: inherit;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-group a:hover {
  color: #fff;
}

body.light-mode .footer-group a:hover {
  color: #000;
}

.footer-icons a {
  margin-right: 12px;
  font-size: 1.2rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-icons a:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 25px;
  padding-top: 15px;
}

body.light-mode .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-group {
    flex: 1 1 100%;
  }

  .footer-icons a {
    margin: 0 10px;
  }
}
.service-detail-container{
 z-index: 99;
}
