/* Basic CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header and Navigation */
header {
  background-color: rgb(255, 145, 0);
  color: #fff;
  padding: 1em 0;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo h1 {
  font-size: 1.5rem;
}
.nav-links {
  list-style: none;
  display: flex;
}
.nav-links li {
  margin-left: 1.5em;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.nav-links a:hover {
  text-decoration: underline;
}

/* Hero Section */
#hero {
  background: url('rrm3.jpg') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  color: black;
  text-align: center;
  position: relative;
}
#hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white; /* dark overlay */
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 1em;
}
.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1em;
}
.btn {
  display: inline-block;
  background: #e67e22;
  color: black;
  padding: 0.8em 1.5em;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #cf711f;
}

/* Section Styles */
.section {
  padding: 4em 0;
}
.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1em;
  color: #333;
}
.section p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Services/Projects Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  margin-top: 2em;
}
.service-card {
  background: #f4f4f4;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card img {
  width: 100%;
  height: auto;
  display: block;
}
.service-card h3 {
  padding: 0.8em 0;
  background: #e67e22;
  color: #fff;
  margin-bottom: 0;
}
.service-card p {
  padding: 1em;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 2em auto;
  background: #f9f9f9;
  padding: 2em;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.contact-form .form-group {
  margin-bottom: 1.2em;
}
.contact-form label {
  display: block;
  margin-bottom: 0.5em;
  font-weight: bold;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.contact-form button {
  background: #e67e22;
  color: #fff;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: #cf711f;
}

/* Contact Info below the form */
.contact-info {
  text-align: center;
  margin-top: 2em;
}
.contact-info p {
  margin-bottom: 0.5em;
}

/* Footer */
footer {
  background: #fff;
  color: black;
  padding: 1em 0;
  text-align: center;
}
.footer-container p {
  margin: 0.2em 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }
  .nav-links {
    margin-top: 1em;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.learn-more {
    display: inline-block;
    margin-top: 1em;
    background-color: #005792;
    color: white;
    padding: 0.5em 1em;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .learn-more:hover {
    background-color: #003f63;
  }
  
