/* General Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}
.btn-color {
    background: linear-gradient(90deg, #4b699d 0%, #112240 100%);
}
.btn-outline-navy-blue {
    border-color: #112240;
    color: #112240;
}
.btn-outline-navy-blue:hover {
    background: linear-gradient(90deg, #4b699d 0%, #112240 100%);
    color: #fff;
}
.text-navy-blue {
    color: #112240;
}

header {
background: linear-gradient(90deg, #4b699d 0%, #112240 100%);
color: #fff;
padding: 1rem 0;
text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

nav {
  display: flex;
  justify-content: center;
  padding: 0.8rem;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover, a.active {
  color: #112240;
}

.navbar-brand, .nav-link {
  color: #112240;
}

/* Hero Section */
.hero {
  background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d");
  color: #fff;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h2 {
  font-size: 3rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 8px;
}

/* About Section */
.about {
  padding: 50px;
  max-width: 1000px;
  margin: auto;
}

.about img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Services Section */
.services {
  padding: 50px;
  background: #fff;
}

.services h2 {
  text-align: center;
  margin-bottom: 30px;
}

.service-box {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

.service-box img {
  width: 80px;
  margin-bottom: 15px;
}

/* Project Gallery */
.gallery {
  padding: 50px;
  background: #f9f9f9;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Team Section */
.team {
  padding: 50px;
}

.team h2 {
  text-align: center;
  margin-bottom: 30px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.team-member {
  background: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Contact Form */
.contact {
  padding: 50px;
  background: #f1f1f1;
}

.contact form {
  max-width: 600px;
  margin: auto;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.contact button {
  background: #0a192f;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact button:hover {
  background: #00bcd4;
}

/* Footer */
footer {
  background: #112240;
  color: #fff;
  text-align: center;
  padding: 20px;
}
