/* Reset and base font */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

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

/* Header */
.site-header {
  background-color: #ffffff;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.main-nav a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #FF9900;
}

/* Hero Section */
.index-page {
  background-image: url('../images/Banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
}

.hero {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  text-align: center;
  min-height: 400px;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto 30px;
}

.hero-highlights li {
  margin-bottom: 10px;
  font-weight: 500;
}

/* Button */
.btn-primary {
  background-color: #FF9900;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #cc7a00;
}

/* Services Section */
.services-overview {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.services-overview h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-item {
  background-color: #f3f3f3;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.service-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #0078D4;
}

/* Content Box (for other pages) */
.content-box {
  max-width: 900px;
  margin: 100px auto;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
}

.content-box h1 {
  margin-bottom: 20px;
}

.content-box p {
  font-size: 1.2rem;
}

/* Contact & Projects Pages */
.contact-page,
.projects-page {
  background-image: url('../images/banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

/* Footer */
.site-footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* Header navigation styles */
.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  font-weight: 500;
}

.main-nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding: 5px 0;
  position: relative;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #007BFF;
  /* Customize as per brand */
  transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

.main-nav ul li a:hover {
  color: #007BFF;
}

/* Header Wrapper */
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Main Nav Reset */
.main-nav {
  background-color: transparent;
  padding: 0;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover {
  color: #FF9900;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
}