:root {
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  --color-midnight: #2C3E50;
  --color-teal: #1ABC9C;
  --color-gold: #F1C40F;
  --color-light-gray: #ECF0F1;
  --color-charcoal: #34495E;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-secondary);
  color: var(--color-charcoal);
  background-color: var(--color-light-gray);
  line-height: 1.7;
  scroll-behavior: smooth;
}

/* Typography improvements */
h1, h2, h3 {
  font-family: var(--font-primary);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--color-teal);
}

.logo a{
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo a > img{
  width: 28px;
}

/* Sticky Header */
.sticky-header {
  position: sticky;
  top: 0;
  background-color: var(--color-midnight);
  color: white;
  z-index: 1000;
}

.sticky-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.sticky-header nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.sticky-header nav a {
  padding: 0.5rem;
  border-radius: 4px;
  font-family: var(--font-primary);
}

.sticky-header nav a.active,
.sticky-header nav a:hover {
  color: var(--color-teal);
  border-bottom: 2px solid var(--color-teal);
}

/* About Us Section */
.about {
  background-color: var(--color-light-gray);
  padding: 4rem 0;
  text-align: center;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
}

.team-photos {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.team-photos img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Services and Process Section Updates */
.services .grid, 
.process .steps {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process .step h3 {
  font-size: 1.25rem;
}

/* Footer */
footer {
  background-color: var(--color-charcoal);
  color: white;
  padding: 2rem 0;
  text-align: center;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

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

h1, h2, h3 {
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Header */
header {
  background-color: var(--color-midnight);
  color: white;
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

header nav a {
  padding: 0.5rem;
  border-radius: 4px;
}

header nav a.active,
header nav a:hover {
  color: var(--color-teal);
  border-bottom: 2px solid var(--color-teal);
}

/* Hero Section */
.hero {
  background-color: var(--color-teal);
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.hero h1 {
  font-size: 3rem;
}

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

.hero a {
  background-color: var(--color-gold);
  color: var(--color-midnight);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: inline-block;
  margin-top: 1.5rem;
}

/* Services Section */
.services {
  background-color: var(--color-light-gray);
  padding: 4rem 0;
  text-align: center;
}

.services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.services .card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.services .card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.services .card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Our Process Section */
.process {
  background-color: var(--color-midnight);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.process .steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.process .step h3 {
  color: var(--color-teal);
}

@media(min-width: 768px) {
  .services .grid,
  .process .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contact Section */
.contact {
  background-color: var(--color-light-gray);
  padding: 4rem 0;
  text-align: center;
}

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid var(--color-charcoal);
}

.contact form button {
  background-color: var(--color-teal);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: var(--color-charcoal);
  color: white;
  padding: 2rem 0;
  text-align: center;
}



.contact-section {
  padding: 4rem 0;
  background-color: #f9f9f9;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-section p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #555;
  max-width: 800px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.contact-link {
  font-size: 1.2rem;
  color: #4CAF50;
  font-weight: bold;
  text-decoration: none;
}

.contact-link:hover {
  color: #45a049;
}
