html, body {
  overflow-x: hidden;
  width: 100%;
}
:root {
  --primary-color: #ec4415;
  --bg-light: #ffffff;
  --text-light: #000000;
  --bg-dark: #121212;
  --text-dark: #ffffff;
/*   hhhhhhh */
}
.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;
}
#typed-contact-heading {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 40px;
  font-weight: 600;
  min-height: 3.5rem; /* Prevent flickering or shift */
  text-align: center;
}

/*  */

/* =====================
    Base 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, .team-member, .team-member h3, .team-member p {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* =====================
    Toggle Button
===================== */
#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;
}


/* =====================
    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);
}

/* Theme-specific Navbar */
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);
}

/* =====================
    Hamburger Menu
===================== */
#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;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .navbar .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;
  }

  #menu-toggle:checked ~ .nav-links {
    max-height: 500px;
    padding: 10px 0;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar a {
    margin: 8px 0;
  }

  .navbar div {
    margin-top: 10px;
  }
}

/* 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;
  font-weight:normal;
}

.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;
  }
}

/* =====================
    General Layout
===================== */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* Container */
.container {
  padding: 60px 20px 40px;
  max-width: 900px;
  margin: 0 auto;
  flex-grow: 1;
}

/* Heading */
h1 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

/* p.lead {
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 40px;
  color:var(--primary-color);
  font-weight: 500;
} */
 body.light-mode .lead {
  background-color: #ffffff;
  color: #000;
 }
/* Contact Card */
.contact-section {
  margin-bottom: 40px;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 25px 30px;
  background-color: #ec4415;
}

body.light-mode .contact-section {
  background-color: #f5f5f5;
  color: #000;
}
.contact-section-orange{
  background-color: #ec4415;
  margin-bottom: 40px;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 12px;
  padding: 25px 30px;
  z-index: 9;
}

body.dark-mode .contact-section {
  background-color: #1a1a1a;
  color: #fff;
}

.contact-section h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-section p, 
.contact-section a {
  font-size: 1.1rem;
  color: inherit;
  line-height: 1.5;
  word-wrap: break-word;
  text-decoration: none;
}

.contact-section a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.contact-section-orange {
  background-color: #ec4415; /* solid orange */
  margin-bottom: 40px;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 12px;
  padding: 25px 30px;
  z-index: 10;          /* higher than overlay */
  position: relative;   /* required for z-index to work */
}
.contact-section-orange a {
  font-size: 1.1rem;
  color: white;
  line-height: 1.5;
  word-wrap: break-word;
  text-decoration: none;
}
.contact-section-orange p {
  font-size: 1.1rem;
  color: white;
  line-height: 1.5;
  word-wrap: break-word;
  text-decoration: none;
}

.contact-section-orange a:hover {
  color: white;
  text-decoration: underline;
}

/* Icons */
.icon-img {
  width: 36px;
  height: 36px;
  vertical-align: middle;
  border-radius: 6px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

/* Map */
.map-container {
  margin-top: 40px;
  text-align: center;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 450px;
  border: none;
}



body.light-mode .site-footer {
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar div {
    margin-top: 10px;
  }

  .navbar a {
    margin: 8px 0;
  }

  .hamburger {
    display: block;
  }

  .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;
  }

  #menu-toggle:checked ~ .nav-links {
    max-height: 500px;
    padding: 10px 0;
  }

  h1 {
    font-size: 2.2rem;
  }

  .contact-section {
    padding: 20px;
  }
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.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; /* increased to be visible */
  opacity: 0.2;
  pointer-events: none; /* allows clicks to pass through */
}

/* Light Mode Background */
body.light-mode .background-overlay {
  background-image: url('aboutUslight.png'); /* adjust path if needed */
}

/* Dark Mode Background */
body.dark-mode .background-overlay {
  background-image: url('aboutUsdark.png'); /* adjust path if needed */
}

.site-footer {
  position: relative;
  z-index: 2;
}
.contact-section {
  position: relative;
  z-index: 2;
}
.map-container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .navbar {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 1.5rem;
    position: relative;
  }

  .brand {
    font-size: 1.4rem;
    margin-right: 15px;
  }

  .hamburger {
    display: block;
    font-size: 26px;
    cursor: pointer;
    margin-left: 0;
  }

  #menu-toggle {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    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;
  }
}
@media (max-width: 768px) {
  .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);
  }

  .hamburger {
    font-size: 26px;
    cursor: pointer;
    display: block;
    color: inherit;
  }

  .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;
  }

  #menu-toggle:checked ~ .nav-links {
    max-height: 500px;
    padding: 10px 0;
  }
}



