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

/* Body Styling */
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.8;
  background-color: #0A2540; /* Dark Blue */
  color: #007BFF; /* Blue */
  padding: 0 1rem;
}

/* Layout Containers */
header, section, footer {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1.5rem;
}

/* Remove Section Boxes */
header, section, footer {
  background: none;
  border: none;
}

/* Section Separators */
section {
  border-top: 2px solid #00BFA5; /* Green */
  padding-top: 2rem;
}

header {
  border-bottom: 2px solid #00BFA5;
  padding-bottom: 2rem;
}

/* Header */
header {
  text-align: center;
  padding-top: 2rem;
}

header h1 {
  font-size: 2.5rem;
  color: #00BFA5; /* Green */
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.1rem;
  color: #007BFF; /* Blue */
  margin-bottom: 1.5rem;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #00BFA5; /* Green */
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background: linear-gradient(45deg, #00BFA5, #007BFF); /* Green to Blue Gradient */
  transition: all 0.3s ease-in-out;
}

nav a:hover {
  background: linear-gradient(45deg, #007BFF, #00BFA5); /* Reverse Gradient */
  color: #0A2540; /* Dark Blue */
}

/* Section Headers */
section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #007BFF; /* Blue */
}

/* Service & Project Items */
.service, .project {
  margin-bottom: 1.5rem;
}

.service h3 {
  color: #00BFA5; /* Green */
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service p, .project {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  color: #007BFF; /* Blue */
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.project {
  background-color: #007BFF; /* Blue */
  color: #0A2540; /* Dark Blue */
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.5); /* Blue Shadow */
}

/* Contact Links */
#contact a {
  color: #0A2540; /* Dark Blue */
  font-weight: bold;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background: linear-gradient(45deg, #00BFA5, #007BFF);
  transition: all 0.3s ease-in-out;
}

#contact a:hover {
  color: #007BFF; /* Blue */
  background: linear-gradient(45deg, #007BFF, #00BFA5);
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #007BFF; /* Blue */
  padding: 1rem 0;
}

/* Responsive Typography */
@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  .service h3 {
    font-size: 1.2rem;
  }

  body {
    padding: 0 0.5rem;
  }
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #00BFA5, #007BFF);
  color: #0A2540; /* Dark Blue */
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 191, 165, 0.5); /* Green Shadow */
}

.cta-button:hover {
  background: linear-gradient(45deg, #007BFF, #00BFA5);
  box-shadow: 0 6px 16px rgba(0, 191, 165, 0.8); /* Green Shadow */
}