/* Roboto Regular */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/Roboto-Regular.woff2') format('woff2'),
         url('/fonts/Roboto-Regular.woff') format('woff');
    font-display: swap;
}

/* Roboto Medium */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('/fonts/Roboto-Medium.woff2') format('woff2'),
         url('/fonts/Roboto-Medium.woff') format('woff');
    font-display: swap;
}

/* Reset / Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
   font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ---------------------------
   HEADER & NAVIGATION
--------------------------- */
.site-header {
  background: #111;
  color: #fff;
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .logo {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar a:hover {
  color: #00bcd4;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .navbar {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: #222;
    padding: 1rem 0;
  }
  .navbar.show {
    display: block;
  }
  .navbar ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* ---------------------------
   SERVICES GRID
--------------------------- */
.services {
  padding: 3rem 1rem;
  text-align: center;
}
.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.service-card h3 {
  margin-bottom: 1rem;
  color: #2196f3;
}
.service-card p {
  font-size: 0.95rem;
  color: #555;
}





/* ---------------------------
   FOOTER STYLING
--------------------------- */
.site-footer {
  background: #111;
  color: #eee;
  padding: 2rem 1rem;
  margin-top: 2rem;
  font-size: 0.95rem;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.footer-info p {
  margin: 0.3rem 0;
}
.footer-info a {
  color: #00bcd4;
  text-decoration: none;
  font-weight: 500;
}
.footer-info a:hover {
  text-decoration: underline;
}
.footer-social a {
  color: #fff;
  margin: 0 0.4rem;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
.footer-social a:hover {
  color: #00bcd4;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #aaa;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-social {
    margin-top: 0.5rem;
  }
}



/* ---------------------------
Page security so that nobody can copy
--------------------------- */
html, body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

.allow-select {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}


