html {
    background-color: white;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: rgb(100, 96, 96);
}

p {
    color: rgb(100, 96, 96);
    font-family: Arial, Helvetica, serif;
    margin: 10px;
    padding: 10px;
    
}

body {
    background-color: white;
    margin: 0;
    padding: 0;
    width: 100%;
}
h1{
    color: #f59a12;
    font-style: italic;
    font-family: Arial, Helvetica, serif;
}

button {
  background-color: #2E8B57;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: rgb(236, 211, 191);
}
.upper_overall {
    display: inline-flex;
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: rgb(250, 250, 244);
    margin: 0;
    padding: 0;
}

.demo {
    background-color: seagreen;
    border: 0;
    margin-top: 30px;
    padding: 1rem;
    border-radius: 30%;
    color: white;
}


.heroes{
    background-color: white;
    justify-content: center;
    margin: 0;
    padding: 0;
    align-items: center;
    width: 100%;
    color: rgb(100, 96, 96);
    font-family: Arial, Helvetica, serif;

}


.hero-demo{
    border-radius: 0.75rem;
    background-color: seagreen;
    text-align: center0;
    color: white;
    border-color: white;
    padding: 1rem;
    border: 0;
    font-family: Arial, Helvetica, serif;

}

.hero-contact{
    border-radius: .75rem;
    background-color: #f59a12;
    text-align: center0;
    color: black;
    border-color: white;
    padding: 1rem;
    border: 0;
    
}

.call-to-action{
    display: inline-flex;
    width: 100%;
    gap: 2rem;
    margin-bottom: 20px;
    justify-content: center;
    font-family: Arial, Helvetica, serif;
}


.heroes h2{
    width: 100%;
    display: flex;
    text-align: center;
    padding-top: 25px;
    font-size: xx-large;
    font-family: Arial, Helvetica, serif;
    font-weight: bolder;
    font-style: italic;
    justify-content: center;
}

.heroes p{
    
    text-align: center;
    padding-top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: normal;
    font-family: Arial, Helvetica, serif;
    
}
.paras {
    display: inline-flex;
    justify-content: left;
    width: 100%;
    font-family: Arial, Helvetica, serif;
    flex-wrap: wrap;
}

.upper-sunrise {
    display: flex;
    width: 100;
    justify-content: center;
}

.sunrise {
    width: 100%;
    display: inline;
    justify-content: center;
    align-items: center;
    border-radius: 2.8%;
}

.before-footer {
    display: inline-flex;
    justify-content: space-around;
    gap: 5px;
    background-color: #2c2c2c;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
}

.b4-footer h2 {
    display: inline-flex;
    color: #f59a12;
    font-weight: bold;
    padding-top: 20px;
    padding-left: 35px;
    margin: 0;
    justify-content: left;
    flex-wrap: wrap;
    font-family: Arial, Helvetica, serif;
    box-sizing: border-box;
}

.b4-footer li {
    text-align: left;
    display: flex;
    justify-content: left;
    list-style: none;
    color: white;
    margin: 0;
    padding-top: 0;
    flex-wrap: wrap;
    font-family: Arial, Helvetica, serif;
    gap: 1rem;
    width: 100%;

}

.line {
    margin: 0;
    padding: 0;
    border-color: #f59a12;
}
footer {
    background-color: #2c2c2c;
    flex-wrap: wrap;
    width: 100%;
    display: flex;
    gap: 3rem;
    justify-content: space-evenly;
    color: aliceblue;
    align-items: center;
    padding-top: 15px;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, serif;
    
}
.strongg {
    color: #f59a12;
    font-family: Arial, Helvetica, sans-serif;
}

.SM {
    justify-content: end;
    color: #f59a12;
    align-items: end;
    margin-bottom: 0;
    padding-bottom: 0;
    flex-wrap: wrap;
    font-family: Arial, Helvetica, serif;

}

<!-- /*sheet2 content starts*/-->

/* UTILITIES*/
body{
    font-family: Arial, Helvetica, serif;
}

a{
    text-decoration: none;
}

li{
    list-style: none;
}

/*NAVBAR STYLING STARTS*/

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(250, 250, 244);
    color: seagreen;
    padding: 10px;
}

.nav-links a {
    color: rgb(100, 96, 96);
}

.logo {
  background-color: rgb(250, 250, 244);
  border: 0;
  margin-top: 20px;
  height: 60px;
  width: 85%;
}

/* NAVBAR MENU*/

.menu{
  
    list-style: none;
    display: inline-flex;
    gap: 2rem;
    margin-top: 30px;
    flex-wrap: 20px;
}

.menu li:hover{
    background-color: rgb(236, 211, 191);
    transition: 0.3s ease;
    border-radius: 5px;
}

.menu li {
    padding: 10px 14px;
}

/* DROPDOWN MENU*/
.products{
    position: relative;
}


.dropdown{
    padding: 1em 0;
    position: absolute; /*WITH RESPECT TO PARENT*/
    top: 45px;
    background-color: rgb(235, 236, 213);
    display: none;
    border-radius: 8px;
}

.dropdown li + li{
    border-top: 10px;
}

.dropdown li{
    padding: 0.5em 1em;
    width: 8em;
    text-align: center;
}

.dropdown li:hover{
    background-color: rgb(176, 180, 178);

}

.products:hover .dropdown{
    display: block;
    transparence: 0.3s ease;
}


/* RESPONSIVE NAVBAR MENU STARTS */

/* CHECKBOX HACK */

input[type=checkbox] {
    display: none;
  } 
  
  /* HAMBURGER MENU */
  .hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
  }
  
  /* APPLYING MEDIA QUERIES */
  @media (max-width: 768px) {
   .menu {
      display:none;
      position: absolute;
      background-color:rgb(235, 241, 241);
      right: 0;
      left: 0;
      text-align: center;
      padding: 0;
      margin-top: 20px;
    }
  
    .menu li:hover {
      display: inline-block;
      background-color:#4c9e9e;
      transition: 0.3s ease;
    }
  
    .menu li + li {
      margin-top: 12px;
    }
  
    input[type=checkbox]:checked ~ .menu {
      display: block;
    }
  
    .hamburger {
      display: block;
    }
  
    .dropdown {
      left: 50%;
      top: 30px;
      transform: translateX(35%);
    }
  
    .dropdown li:hover {
      background-color: #4c9e9e;
    }
  }

  /* Company Purpose section including Mission and Vission*/
  .company-purpose {
    display: inline-flex;
    font-family: Arial, Helvetica, serif;
    justify-content: space-between;
    gap: 2rem;
    flex: auto;
    padding-top: 0;
    margin-top: 60px;
    padding: 1rem;
    flex-wrap: nowrap;
  }

  .company-purpose h3 {
    color: #f59a12;
    padding-top: 0;
  }

  .mission,
  .vision,
  .strategy {
    border-color: seagreen;
    border: 2px solid;
    color: #4b4a48;
    padding: 1rem;
    border-radius: 0.75rem;
    width: 30.333333%;
    position: relative;

  }

  @media screen and (max-width: 768px) {
    .company-purpose {
      flex-wrap: wrap;
      gap: 1rem;
    }

    .mission,
    .vision,
    .strategy {
      width: 100%;
    }
    
  }

  .black {
    color: #4b4a48;
  }

  .green {
    color: seagreen;
  }

  .contact-form{
    display: inline-block;
    max-width: 100%;
    justify-content: center;
    border-radius: 25%;
    padding: 10px;
  }
  .contact-form form {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }


  /* Pricing 2 section*/

  .pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
}

.pricing-plan {
    flex: 1;
    max-width: 300px;
    background-color: white;
    border: 2px solid seagreen;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.pricing-plan:hover {
    transform: scale(1.05);
}

.plan-title {
    font-size: 1.5em;
    font-weight: bold;
    color: seagreen;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 1.2em;
    font-weight: bold;
    color: orange;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plan-features li {
    font-size: 1em;
    margin-bottom: 10px;
    color: #333;
    text-align: justify;
}

.plan-button {
    padding: 10px 20px;
    background-color: seagreen;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.plan-button:hover {
    background-color: rgb(236, 211, 191);
}

@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-plan {
        max-width: 100%;
    }
}

 


  /* Contact Form styling */
  .contact-form {
    width: 95%;
    max-width: 100;
    margin: auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form fieldset {
    border: 2px solid seagreen;
    border-radius: 8px;
    padding: 20px;
}

.contact-form legend {
    font-size: 1.2em;
    font-weight: bold;
    color: orange;
    padding: 0 10px;
}

.contact-form h3 {
    color: seagreen;
    margin-bottom: 20px;
}

.contact-form section {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.contact-form label {
    font-weight: bold;
    margin-bottom: 5px;
    color: seagreen;
}

.contact-form input, .contact-form select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    margin-bottom: 10px;
}

.contact-form input:focus, .contact-form select:focus {
    border-color: seagreen;
    outline: none;
}

.contact-form button {
    padding: 10px 20px;
    background-color: seagreen;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: rgb(236, 211, 191);
}

