/* =====================
    Roooooot Variablesxdx

===================== */

/*  */
: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;
}
/* whatsapp button */
.whatsapp-btn {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 60px;
  height: 60px;
   background-color: #15ec39;
  border-radius: 50%;
  display: flex;
  align-items: center;      /* perfect vertical centering */
  justify-content: center;  /* perfect horizontal centering */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 100000;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover { transform: scale(1.1); }

/* Hard-override any global img rules on the tiny icon */
.whatsapp-btn img {
  width: 28px !important;
  height: 28px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  max-width: none !important;
  display: block;
}


/* =====================
    Font Imports
===================== */
@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');

/* =====================
    Base Reset
===================== */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  font-family: 'Outfit', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* =====================
    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;
}

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

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

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

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

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

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

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

/* 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.dark-mode nav {
  background-color: var(--bg-dark);
  color: var(--text-dark);
  box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
}

/* =====================
    Hamburger Menu
===================== */
#menu-toggle {
  display: none;
}

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

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
  }

  .navbar .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background-color: inherit;
    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;
  }

  .hamburger {
    display: block;
  }

  .navbar a {
    margin: 8px 0;
  }
}

/* =====================
    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);
}

/* =====================
    Container
===================== */
.container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  z-index: 99;
}

.h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.h2 {
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 2rem;
}

.img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
  border-radius: 10px;
}

.para {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  text-align: justify;
}

/* =====================
    Buttons
===================== */
.button-group {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.back-button,
.service-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.back-button:hover,
.service-button:hover {
  background-color: #c5370f;
}

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

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;
}

.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;
  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);
}

@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;
  }
}

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

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

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

.site-footer {
  position: relative;
  z-index: 2;
}
/* Style for the main relief image */
#relief-img {
  width: 100%;
  max-width: 900px;
  height: 350px;
  object-fit: cover;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  /* box-shadow is removed as requested */
}

@media (max-width: 768px) {
  #relief-img {
    max-width: 700px;
    height: 300px;
  }
}
