* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}
 
/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #fff;
}
 
.logo {
  display: flex;
  align-items: center;
}
 
.logo img {
  height: 40px;
  margin-right: 10px;
}
 
.logo h1 {
  font-size: 1.2rem;
  color: #003399;
}
 
nav ul {
  list-style: none;
  display: flex;
}
 
nav ul li {
  margin: 0 15px;
}
 
nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
 
.quote-btn {
  background: #0a47d1;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}
 
/* Hero Section */
.hero {
  position: relative;
  background: url("Images/imgbck.jpg") no-repeat center center/cover;
  height: 90vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
 
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 50, 100, 0.5);
}
 
.hero-content {
  position: relative;
  max-width: 800px;
  z-index: 2;
}
 
.hero-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
}
 
.hero-content h2 span {
  color: #00d0b0;
}
 
.hero-content p {
  margin: 15px 0;
  font-size: 1.1rem;
}
 
.buttons {
  margin: 15px 0;
}
 
.tag-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.2);
  margin: 5px;
  color: white;
  text-decoration: none;
}
 
.tag-btn.blue {
  background: linear-gradient(to right, #00d0b0, #0078ff);
}
 
.cta-buttons {
  margin-top: 20px;
}
 
.get-quote {
  display: inline-block;
  background: linear-gradient(to right, #00d08f, #00b070);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-right: 10px;
}
 
.view-products {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
}
 
.credit {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  color: #555;
  padding: 8px 15px;
  border-radius: 12px;
  font-size: 0.8rem;
}
 
.credit span {
  color: #8a2be2;
  font-weight: bold;
}
 
.sec {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  gap: 40px;
}
.text-content {
  flex: 1 1 400px;
}
 
.text-content h1 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 600;
  color: #1a237e; /* Dark blue */
}
 
.text-content h1 span {
  color: #00897b; /* Teal */
}
 
.text-content p {
  margin: 20px 0;
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
}
 
.features {
  list-style: none;
  padding: 0;
}
 
.features li {
  margin: 15px 0;
}
 
.features li strong {
  display: block;
  font-size: 1.1rem;
}
 
/* .features li::before {
  content: "•";
  color: #00897b;
  font-size: 1.5rem;
  margin-right: 10px;
} */
 
.image-content {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
}
 
.image-content img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
 
@media (max-width: 768px) {
  .section {
    flex-direction: column;
    padding: 40px 5%;
  }
}
.container {
  text-align: center;
  padding: 50px 20px;
}
.title {
  font-size: 2.5em;
  font-weight: 400;
}
.title span {
  color: #198754;
}
.subtitle {
  font-size: 1.1em;
  color: #555;
  margin: 10px 0 30px;
}
.btn {
  background-color: #198754;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn:hover {
  background-color: #146c43;
}
.projects {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: left;
}
.card img {
  width: 100%;
  display: block;
}
.badge {
  position: absolute;
  background-color: #198754;
  color: white;
  font-size: 0.9em;
  padding: 5px 10px;
  border-radius: 5px;
  margin: 10px;
}
.card-content {
  padding: 15px;
}
.card-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
}
.image-container {
  position: relative;
}
.button-container {
  padding: 50px;
}
 
.learn-more-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #129187; /* greenish teal */
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: normal;
  transition: background-color 0.3s ease;
}
 
.learn-more-btn i {
  margin-left: 8px;
}
 
.learn-more-btn:hover {
  background-color: #0f776f;
}
 
.contact-section {
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(to right, #004d40, #1b1b1b);
  color: white;
  padding: 40px;
}
 
.contact-left {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
}
 
.contact-left h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
 
.contact-left h1 span {
  color: #4db6ac;
}
 
.contact-left p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
 
.contact-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
 
.icon {
  font-size: 24px;
  background-color: #00a680;
  padding: 10px;
  border-radius: 5px;
  margin-right: 15px;
}
 
.contact-right {
  flex: 1;
  background-color: #f4f4f4;
  padding: 30px;
  border-radius: 8px;
}
 
form {
  display: flex;
  flex-direction: column;
}
 
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
 
.form-row.full-width {
  flex-direction: column;
}
 
input,
select,
textarea {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
 
textarea {
  height: 100px;
  resize: none;
}
 
small {
  align-self: flex-end;
  font-size: 12px;
  color: #555;
}
 
button {
  background-color: #007a5e;
  color: white;
  padding: 15px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}
 
button:hover {
  background-color: #00654c;
}
 
/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }
  .contact-left {
    padding-right: 0;
    margin-bottom: 20px;
  }
}
 
 