.header-container {
  display: flex;
  align-items: center;
}
.logo {
  position: absolute;
  float: left;
  top: 10px;
  left: 10px;
  width: 178px;
}
@media only screen and (max-width: 775px) {
  .logo {
    position: unset;
    float: unset;
    width: 125px;
  }
}

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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #333;
}

/* Header Section */
header {
  background: #4caf50;
  color: white;
  padding: 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5em;
}

header p {
  font-size: 1.2em;
}

/* Navigation */
nav {
  background: #333;
  padding: 10px;
}

nav ul {
  list-style: none;
  text-align: center;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
}

nav ul li a:hover {
  color: #4caf50;
}

/* Hero Section */
.hero {
  background-image: url('/images/solar_wind.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h2 {
  font-size: 3em;
  font-weight: bold;
}

.hero p {
  font-size: 1.2em;
}

.cta-button {
  padding: 12px 25px;
  background-color: #4caf50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.3em;
  margin-top: 20px;
}

.cta-button:hover {
  background-color: #45a049;
}

/* About Section */
section {
  padding: 40px 20px;
  text-align: center;
  background-color: #fff;
}

section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

section p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

/* Services Section */
.services {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.service {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 30%;
  text-align: center;
}

.service img {
  max-width: 100%;
  border-radius: 5px;
}

.service h3 {
  margin-top: 15px;
  font-size: 1.8em;
}

.service p {
  font-size: 1.1em;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: #4caf50;
  color: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  margin: 20px auto;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: none;
}

.contact-form-wrapper button {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.2em;
  width: 100%;
  cursor: pointer;
}

.contact-form-wrapper button:hover {
  background-color: #4caf50;
}

/* Footer Section */
footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  text-align: center;
}

footer a {
  color: #4caf50;
  text-decoration: none;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .services {
    flex-direction: column;
    align-items: center;
  }

  .service {
    width: 80%;
    margin-bottom: 20px;
  }

  header h1 {
    font-size: 2em;
  }

  header p {
    font-size: 1em;
  }

  .hero h2 {
    font-size: 2em;
  }

  .cta-button {
    font-size: 1em;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .cta-button {
    font-size: 1.1em;
  }

  .service {
    width: 100%;
  }

  .contact-form-wrapper {
    width: 90%;
  }
}


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

.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.total-bill label,
.form-grid label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.total-bill input,
.form-grid input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 395px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

.total-bill label {
  padding-top: 5px;
}

.total-bill input {
  width: 50%;
  min-width: 200px;
  pointer-events: none;
  background-color: azure;
}

@media (max-width: 395px) {
  .total-bill input {
    width: 100%;
    min-width: unset;
  }
}
.total-bill ,
.cal-section {
  align-content: center;
  height: 46px;
  background: #adffff;
  padding: 4px;
  margin-top: 9px;
}

.total-bill {
  display: grid;
  grid-template-columns: auto auto;  
  margin-top: 9px;
}

.total-bill-label {
  text-align: right;
  padding-right: 10px;
}

.social-media-box{
  position: absolute;
  right: 5px;
  top: 5px;
}