/* Load Google Sans Regular 400 */
/*@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/fontsource/fonts/google-sans@latest/latin-400-normal.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/fontsource/fonts/google-sans@latest/latin-400-normal.woff') format('woff');
}*/

/* ===== GLOBAL RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /*font-family: "Segoe UI", Tahoma, Verdana, sans-serif;*/
font-family:  'Inter', sans-serif;
  /*font-family: 'Google Sans', sans-serif;*/
  background: #FFFFFF;
  color: #1f1f1f;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
padding-bottom: 100px; padding-top: 80px;
}

/* ===== COLORS ===== */
:root {
  --primary-color: #2B6CB0;      /* subtle blue */
  --light-gray: #f8f9fa;
  --text-dark: #1f1f1f;
  --muted: #6b6b6b;
--light-blue: #edfafe;
--light-b: #f6fdff;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

h1 {
  font-size: 1.7rem;
  margin-bottom: 1rem; 
}

h2 {
  font-size: 1.5rem;
  margin-top: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--muted); 
}

/* ===== NAVIGATION ===== */
.navbar {
  padding: 1.2rem 2rem;
  background: #ffffff;
  border-bottom: 1px solid #e3e3e3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
}

.nav-links a {
  margin-left: 1.8rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
}

.nav-links a:hover {
  color: var(--primary-color);
  transition: 0.3s ease-in-out;
}

/* Highlight Contact Us link */
.nav-links .contact-btn {
  background: #E53E3E;      /* red background */
  color: white;             /* white text */
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.nav-links .contact-btn:hover {
  background: #C53030;      /* darker red on hover */
  color: white;
}


/* ===== PAGE SECTIONS ===== */
.section {
  padding: 4rem 2rem;
}

.section.bg-light {
  background: var(--light-gray);
}

.main-text {
  max-width: 900px;
  margin: auto;
  font-size: 1.1rem;
  font-weight: 400;
}

/* Service Card Image Container */
.service-image {
    width: 100%;
    height: 180px; /* Adjust height based on your preference */
    background: #f4f4f4; /* Placeholder color while image loads */
    border-radius: 8px;
    margin-bottom: 1.5rem;
    overflow: hidden; /* Clips image to the border radius */
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image fills the area without stretching */
    transition: transform 0.3s ease;
}

/* Optional: Hover effect to make it look interactive */
.services-grid div:hover .service-image img {
    transform: scale(1.05);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  margin-top: 1rem;
}

.btn-primary:hover {
  background: #244b88;
  transition: 0.3s;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 1.5rem;
}

.services-grid > div {
  background: #ffffff;
  padding: 1.8rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.05);
}

/* ===== FORM STYLES ===== */
form {
  max-width: 650px;
  margin: auto;
  padding-top: 1rem;
}

form input,
form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  margin: 0.7rem 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

form input:focus,
form textarea:focus {
  outline: 2px solid var(--primary-color);
  border-color: var(--primary-color);
}

/* ===== FOOTER ===== */
/* ===== FOOTER (Sticky) ===== */
.footer {
  background: #ffffff;
  padding: 1.8rem 2rem;
  text-align: center;
  border-top: 1px solid #e3e3e3;

  /* make footer stick to the bottom */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.footer-links a {
  margin: 0 0.8rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.footer a:hover {
  color: var(--primary-color);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
  }

  .nav-links {
    margin-top: 1rem;
  }

  h1 {
    font-size: 2.2rem;
  }
  
  .btn-primary {
    width: 100%;
    text-align: center;
  }
  

}
