:root {
  --primary-color: #FF9933;
  --secondary-color: #CC3333;
  --text-color: #333333;
  --background-color: #ffffff;
  --light-orange: #FFE5CC;
  --dark-orange: #E67300;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--background-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 10px 0;
  /* Increased padding for a more spacious look */
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo-container {
  flex: 0 0 auto;
}

.logo {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3rem;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 3px 0;
  transition: 0.4s;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    /* Stack the menu items vertically */
    align-items: flex-start;
    /* Align items to the start */
    padding: 1rem;
    /* Add some padding */
  }

  .nav-links {
    display: none;
    /* Hide the links by default */
    flex-direction: column;
    /* Stack links vertically */
    width: 100%;
    /* Full width */
    background-color: rgba(255, 255, 255, 0.95);
    /* Background color */
    padding: 1rem 0;
    /* Padding for the dropdown */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    /* Shadow for dropdown */
  }

  .nav-links.active {
    display: flex;
    /* Show links when active */
  }

  .nav-links li {
    margin: 0;
    /* Remove margin */
    padding: 0.5rem 1rem;
    /* Add padding for touch targets */
    width: 100%;
    /* Full width for each item */
  }

  .nav-links a {
    font-size: 1rem;
    /* Adjust font size for mobile */
    padding: 0.5rem 0;
    /* Padding for links */
    text-align: left;
    /* Align text to the left */
  }

  .menu-toggle {
    display: flex;
    /* Show the menu toggle */
  }

  .menu-toggle span {
    width: 30px;
    /* Slightly wider for better touch */
  }
}

/* Slider Styles */
.slider-container {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slider {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
  width: 90%;
  max-width: 800px;
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  display: block;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.highlight {
  color: var(--primary-color);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

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

.btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-primary:hover {
  background-color: var(--dark-orange);
}

.btn-secondary:hover {
  background-color: white;
  color: var(--text-color);
}

.slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 2;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background-color: var(--primary-color);
}

/* Section Styles */
section {
  padding: 6rem 0;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--text-color);
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 1rem auto;
}

h3 {
  font-size: 1.5rem;
  /* Adjusted for a more modern look */
  font-weight: 600;
  letter-spacing: -0.01em;
}

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

.project-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-card:hover .project-info {
  transform: translateY(0);
}

/* Client Styles */
#client {
  padding: 20px 0;
}

.client-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.client-card {
  position: relative;
  margin: 10px;
  text-align: center;
}

.client-card a {
  display: block;
  text-decoration: none;
}

.client-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s;
}

.client-card img:hover {
  transform: scale(1.1);
}

.client-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
  border-radius: 0 0 50% 50%;
  font-size: 0.6rem;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.client-card:hover .client-info {
  opacity: 1;
}

.client-info h3 {
  font-size: 0.8rem;
  margin: 0;
}

/* Contact Styles */
#contact {
  background-color: #f8f9fa;
}

.form-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

input,
textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}

textarea {
  height: 150px;
  resize: vertical;
}

/* Footer Styles */
footer {
  background-color: var(--text-color);
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo .logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* About Section Styles */
#about {
  background-color: var(--background-color);
  padding: 8rem 0;
}

#about .container {
  max-width: 1000px;
}

#about .section-content {
  display: grid;
  gap: 3rem;
}

#about .intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

#about .vision-mission {
  display: grid;
  gap: 3rem;
}

#about h3 {
  color: #333;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

#about .vision-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
}

#about .mission-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
}

#about .mission-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

#about .mission-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

#about .motto {
  text-align: center;
  padding: 3rem 0 1rem;
}

#about .motto h3 {
  margin-bottom: 1rem;
}

#about .motto p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }

  h1 {
    font-size: 2.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact {
    align-items: center;
  }
}