:root {
    --e-global-color-primary: #F26200;
    --e-global-color-secondary: #FF8F15;
    --e-global-color-text: #414042;
    --e-global-color-accent: #FDC000;
  }
  
  /* Reset styles */
  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
  }
  
  body {
    line-height: 1;
  }
  
  ol, ul {
    list-style: none;
  }
  
  blockquote, q {
    quotes: none;
  }
  
  blockquote:before, blockquote:after,
  q:before, q:after {
    content: '';
    content: none;
  }
  
  /* Global styles */
  body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: var(--e-global-color-text);
    background-color: #f7f7f7;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .section-title {
    margin-bottom: 60px;
    text-align: center;
    font-size: 2em; 
  }

  .parent{
    width:100%;
    height:430px;
    position:relative;
}
.parent:after{
    content:'';
    background:url('images/office-alternative-energy-sources.jpg');
    width:100%;
    height:490px;
    position:absolute;
    background-size: cover;
    background-position-y: -330px;
    top:0;
    left:0;
    opacity:0.2;
}
.child{
    background:transparent;
    position:relative;
    z-index:1;
}
  
  .hero {
    background-color: var(--e-global-color-text);
    color: #fff;
    text-align: center;
    padding: 30px  0;
  }

  
  .hero-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }
  
  .hero-btn {
    display: inline-block;
    color: #fff;
    background-color: var(--e-global-color-primary);
    border: none;
    padding: 15px 30px; /* Increase padding to increase the size of the button */
    text-align: center;
    text-decoration: none;
    font-size: 20px; /* Increase font size to make the text bigger */
    margin: 4px 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .hero-btn:hover {
    background-color: #ff8f15;
  }
  
  .services-section {
    background-color: #fff;
    padding: 80px 0;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
  }
  
  .service {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .service-icon {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
  }
  
  .service-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .service-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .service-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--e-global-color-primary);
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
  }
  
  .products-section {
    background-color: #f7f7f7;
    padding: 80px 0;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 30px;
  }
  
  .product {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .product-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
  }

  .product-icon {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
  }

  
  .product-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .product-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .product-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--e-global-color-primary);
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
  }
  
  .contact-section {
    background-color: #fff;
    padding: 80px 0;
  }
  
  .contact-description {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .contact-form {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  input[type="text"],
  input[type="email"],
  textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
  }
  
  textarea {
    height: 150px;
  }
  
  .contact-btn {
    display: block;
    padding: 10px 20px;
    background-color: var(--e-global-color-primary);
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
  }
  
  .footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  .footer p {
    margin: 0;
  }
  

  .container {
    max-width: 960px; /* Adjust as needed */
    margin: 0 auto;
    padding: 0 15px; /* Adjust as needed */
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    padding: 20px 0; /* Adjust as needed */
  }
  
  .footer-column {
    flex: 1;
  }
  
  .footer-column-title {
    margin-bottom: 20px; /* Adjust as needed to increase space below titles */
    color: white; /* Footer headings are now white */
    font-size: 1.5em; /* Increases font size */
    font-weight: bold; /* Makes text bold */
  }
  
  .footer-address,
  .footer-email,
  .footer-phone {
    line-height: 1.6; /* Adds line spacing */
  }
  
  .footer-links,
  .footer-social {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-social li {
    display: inline-block;
    margin-right: 10px; /* Adjust as needed */
  }
  
  .footer-links a,
  .footer-social a {
    color: white; /* Footer link text is now white */
    text-decoration: none; /* Removes underline */
    transition: color 0.3s ease; /* Adds smooth transition */
  }
  
  .footer-links a:hover,
  .footer-social a:hover {
    color: orange; /* Adjust color as needed to match website theme */
  }
  
  .footer-bottom {
    text-align: center;
    padding: 20px 0; /* Adjust as needed */
    margin-top: 30px; /* Adjust as needed */
    border-top: 1px solid #ddd; /* Adjust color as needed */
  }
  
  .footer-text {
    color: white; /* Footer text is now white */
  }
  