:root {
  --primary: #1C2C4C;
  --accent: #7DAA92;
  --sand: #D9B790;
  --teal: #4C9BAA;
  --text-dark: #222;
  --text-muted: #666;
  --transition-speed: 0.3s;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f7f9fc;
  color: var(--text-dark);
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.8rem; /* space between image and text */
  margin-right: 1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  color: #1C2C4C;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}

.brand-solution {
  color: #4C9BAA;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

.brand-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 0.15rem;
  font-style: italic;
  letter-spacing: 0.02em;
}


.logo {
  max-width: 150px;
  width: auto;
  max-height: 50px;
  height: auto;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
  background-color: white;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

header h1 {
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0;
  user-select: none;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: black;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-speed);
}

nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--accent);
  left: 0;
  bottom: -4px;
  transition: width var(--transition-speed);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: var(--accent);
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  width: 25px;
  height: 20px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(28,44,76,0.85), rgba(77,139,160,0.85)), url(_images/hero-background.jpg) no-repeat center/cover;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(28,44,76,0.7);
  color: white;
  margin-top: 40px;         /* Space below fixed header */
  padding: 4rem 0;
  margin-bottom: 4rem; 
  
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  text-align: center;
}

.hero h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  letter-spacing: 0.02em;
}

.hero p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  color: #c1d2d9;
  font-weight: 500;
}

/* HOME HIGHLIGHTS */
.home-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2.5rem 0;
  justify-content: center;
}

.highlight {
  flex: 1 1 280px;
  background-color: rgba(255 255 255 / 0.15);
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  transition: transform 0.3s ease;
  color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  max-width: 360px;
}

.highlight:hover {
  transform: translateY(-4px);
}

.highlight h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.highlight p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: white;
}

.highlight em {
  display: block;
  margin-top: 0.8rem;
  color: #dcdcdc;
  font-style: italic;
}

.btn-primary,
.btn-secondary {
  padding: 10px 20px;
  margin: 10px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
}

.btn-primary {
  background-color: var(--accent);
  color: white;
  border: none;
}

.btn-secondary {
  background-color: white;
  color: var(--accent);
  border: 2px solid var(--accent);
}

/* RESPONSIVE HERO */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .home-highlights {
    flex-direction: column;
    align-items: center;
  }

  .buttons {
	display: flex;
    flex-direction: column;
    gap: 1rem;
	align-items: center;
	 
	
  }
  

}

/* REMAINING STYLES – UNCHANGED */
main {
  padding-top: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* OVERVIEW */
#overview {
  margin: 40px auto 4rem auto;
  background: white;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.07);
}
#overview h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}
#overview p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  text-align: center;
}

/* OVERVIEW EXTRA BLOCKS */
.overview-extra {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.overview-block {
  background-color: #fdfdfd;
  border-left: 4px solid var(--primary);
  border-radius: 6px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.overview-block h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.overview-block p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* SERVICES NAVIGATION */
#services-nav {
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  background: white;
  border-radius: 14px;
  padding: 1rem 1.5rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.07);
}
#services-nav a {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
#services-nav a:hover,
#services-nav a.active {
  background-color: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* SERVICES MAIN */
#services {
  max-width: 1200px;
  margin: 0 auto 4rem auto;
}
#services h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--primary);
}
.service-section {
	 margin-top: 40px;         /* Space below fixed header */
  background: white;
  border-radius: 14px;
  padding: 2rem 2.5rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.07);
  margin-bottom: 3rem;
}
.service-section h3 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1.8rem;
}
.service-block {
  background: #f7f9fc;
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 3px 10px rgba(125,170,146,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.service-block h4 {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
}
.service-block p {
  margin: 0;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.4;
  flex-grow: 1;
}

/* CONTACT */
#contact {
  max-width: 700px;
  margin: 0 auto 4rem auto;
  background: white;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.07);
}
#contact h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-align: center;
}
#contact p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2rem;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
input,
textarea {
  padding: 1rem;
  font-size: 1rem;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition-speed);
  resize: vertical;
}
input:focus,
textarea:focus {
  border-color: var(--accent);
  outline: none;
}
button.submit-button {
  background-color: var(--accent);
  border: none;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color var(--transition-speed);
}
button.submit-button:hover {
  background-color: var(--teal);
}
#contact-info {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}
#contact-info strong {
  color: var(--primary);
}
#contact-info a {
  color: var(--accent);
  text-decoration: none;
}
#contact-info a:hover {
  text-decoration: underline;
}

/* FOOTER */
footer {
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 1.75rem 1rem;
  font-size: 0.9rem;
  user-select: none;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}

/* RESPONSIVE TWEAKS */
@media (max-width: 600px) {
  .hero {
    height: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .hero h2 {
    font-size: 2rem;
    max-width: 100%;
  }
  .hero p {
    font-size: 1rem;
    max-width: 100%;
  }
  main {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  nav {
    top: 56px;
  }
  nav.open {
    max-height: 280px;
  }
  #services-nav {
    flex-direction: column;
    gap: 1rem;
  }
  .service-blocks {
    grid-template-columns: 1fr;
  }
  .home-highlights {
    flex-direction: column;
    gap: 1.5rem;
  }
  .highlight {
    flex: 1 1 100%;
  }
  .overview-extra {
    grid-template-columns: 1fr;
  }
    
 
 
}
/* ======== Desktop (default) ======== */
#navbar {
  display: flex;
  gap: 2rem;
}

.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
}

.burger span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.3s;
}

/* Default: hidden on mobile */
@media (max-width: 768px) {
  #navbar {
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    display: none; /* hidden initially */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  
  #navbar.active {
    display: flex;
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
  }

  .burger span {
    display: block;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: 0.3s;
  }

  /* Burger animation into an X */
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}


