body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;

}
strong{
  font-family: audiowide;
  color: #208e1e;
}

span{
   font-size: 3.4rem;
   font-weight: bolder;
   font-family: audiowide;
}
.s-heading{
  color: #208e1e;
  font-size: 2.8rem;
  margin-bottom: 50px;
  text-align: center;
}
 #alertMessage{
  width: 100%;
  height: max-content;
  color: #208e1e;
  font-size: 1.4rem;
  text-align: center;
 }

/* Header styles */


header {
  background-color: #f2f2f2;
  padding: 0 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo{
  display: flex;
  width: 220px;
  height: 18vh;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.menu-toggle {
  font-size: 1.4em;
  cursor: pointer;
  display: none;
  color: #093577;
  padding-right: 15px;
}
.menu {
  display: flex;
}

.menu a {
  color: #093577;
  font-weight: bold;
  margin-right: 15px;
  text-decoration: none;
  font-size: 1.2rem
}

.menu a:hover {
  color: #208e1e;
}


/* Home Section Style */


#home {
  position: relative;
  height: auto;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: max-content;
}

.slider {
  display: flex;
  width: 100%;
  height: 85vh;
}

.slide {
  flex: 1;
  height: max-content;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  height: auto;
  width: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #093577;
  z-index: 1;
  padding: 20px;
  border-radius: 10px;
}
.content h1{
  font-size: 3rem;
  font-weight: bold;
}
.content h2{
  font-family: audiowide;
  font-size: 1.2rem;
  color: #208e1e;
  margin-top: -40px;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}
.blinking {
  animation: blink 3s infinite;
}


/* About Section Style */


#about {
  width: 100%;
  background-color: #f9f9f9;
  padding: 20px 0;
}

.about-text {
  width: auto;
  height: auto;
}

.about-content p{
  font-size: 1.2rem;
  color: #093577;
  padding: 0px 50px;
  text-align: justify;
  line-height: 25px;
}
.about-con1{
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  justify-content: space-evenly;
  margin: 40px 0;
  flex-wrap: wrap;
}
.box{
  width: 300px;
  height: auto;
  padding: 10px 20px;
  background-color: #f2f2f2;
  border-radius: 10px;
  border: 1px solid #093577;
  margin: 10px 0;
}

.img{
  margin: 0 25%;
  width: 50%;
  height: 120px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.box h2{
  color: #208e1e;
  font-size: 1.4rem;
  text-align: center;
}
.box p{
  color: #093577;
  font-size: 1.2rem;
  text-align: justify;
  padding: 0;
}

.about-con2{
  width: 100%;
  height: auto;
}
.about-con2 h2{
  color: #208e1e;
  font-size: 3rem;
  margin-bottom: 30px;
  text-align: center;
}
.con2-box{
  width: 90vw;
  height: max-content;
  margin: auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.con2-box-res{
  width: 90vw;
  height: max-content;
  margin: auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  flex-wrap: wrap;
}

.con2-box-img{
  width: 20vw;
  height: 250px;
}
.con2-box-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.con2-box-img img:hover{
  transform: scale(1.1);
}

.con2-box-text{
  width: 60vw;
  height: auto;
  background-color: #f2f2f2;
  flex: 1 1 500px;
  margin: 5px 0;
  padding: 20px 20px;
}

.con2-box-text h2{
  color: #208e1e;
  font-size: 1.4rem;
  text-align: center;
}
.con2-box-text ul{
  color: #093577;
  font-size: 1.2rem;
  text-align: start;
}
.con2-box-text ul li{
  padding: 5px;
}

/* Solutions and Services Section Style */

.solutions, .services{
  padding: 20px;
}

.solutions-con, .services-con{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 90%;
  height: auto;
  margin-left: 5%;
  justify-content: space-evenly;

}
.solutions-box, .services-box{
  max-width: 500px;
  width: 100%;
  height: auto;
  background-color: #f2f2f2;
  padding: 10px 0;
  border-radius: 10px;
  border: 1px solid #A3A4A8;
  margin: 20px 0;
}
.sol-img, .ser-img{
  width: 100%;
  height: 30vh;
  background-color: #f9f9f9;
}
.sol-img img, .ser-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sol-text h2, .ser-text h2{
  color: #208e1e;
  font-size: 1.4rem;
  text-align: center;
  padding: 5px 0;
}
.sol-text ul, .ser-text ul{
  color: #093577;
  font-size: 1.2rem;
  text-align: start;
  margin: 5%;
}
.sol-text ul li, .ser-text ul li{
  padding: 5px 0;
}



/* testimonials Section Style */


#qoute {
  background-color: #f2f2f2;
  padding: 40px 0;
  text-align: center;
}

.contact-form {
  width: 86%;
  margin-left: 7%;
  margin-bottom: 20px;
  color: #093577;
}
.contact-form h2{
  color: #208e1e;
  font-size: 1.4rem;
  font-weight: bold;
}
.contact-form p{
  color: #093577;
  font-size: 1.2rem;
  text-align: justify;
  padding: 2px 10px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 10px;
  width: 100%;
}

.contact-form label {
  flex: 1;
  flex-wrap: nowrap;
  font-size: 1.2rem;
  text-align: start;
  color: #208e1e;
  padding: 10px;

}
.contact-form input,
.contact-form textarea,
.contact-form select{
  width: 100%;
  font-size: 1.2rem;
  padding: 10px;
  border: 1px solid #A3A4A8;
  color: #093577;
  margin: 5px 0;
}

.contact-form option{
  font-size: 1.2rem;
  padding: 5px;
  color: #093577;
}


.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border: 1px solid #208e1e;
  outline: 1px solid #208e1e;
  box-shadow: 0 0 5px #093577;
  color: #093577;
}

.contact-form input[type="submit"] {
  background-color: #093577;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin: 10px;
  width: auto;
}

.contact-form input[type="submit"]:hover{
  background-color: #208e1e;
}




/* Contact Section Style */


#contact {
  padding: 20px 0;
  text-align: center;
  width: 100%;
  margin-bottom: 50px;
}

.contact-con {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 90%;
  height: auto;
  margin-left: 5%;
  justify-content: space-between;
  
}

.border{
  border: 1px solid #A3A4A8;
  border-radius: 10px;
  background-color: #f9f9f9;
  margin: 10px 0;
  padding: 10px;
}

.contact-box{
  display: flex;
  flex-direction: row;
  width: 550px;
  height: auto;
}
.contact-sbox{
  width: 100%;
  height: auto;
  justify-content: center;
}
.contact-sbox-i{
  width: 100px;
  height: auto;
  justify-content: start;
}
.contact-sbox-i i{
  margin-top: 20px;
  font-size: 1.2rem;
  color: #208e1e;
}
.contact-sbox p{
  font-size: 1.2rem;
  color: #093577;
  text-align: start;
}
.contact-sbox h2{
  font-size: 1.4rem;
  font-weight: bold;
  color: #208e1e;
  text-align: start;
}


/* Footer Style */


footer{
  font-size: 1.2rem;
  text-align: center;
  color: #093577;
  background-color:#f2f2f2;
  padding: 3px ;
}
.s-link{
  display: flex;
  flex-direction: row;
  cursor: pointer;
  padding-top: 15px;
  justify-content: center;
}
.s-link a{
  padding: 0 10px;
}


/* Media Query */


@media (max-width: 768px) {
 
  .logo{
    height: max-content;
  }
  .slide img{
    height: 100%;
    object-fit: contain;
    padding: 0;
    margin: 0;
  }
  .content{
    top: 30%;
  }
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    color: #093577;
    background-color: #A3A4A8;
    align-items: center;
    padding: 20px 0;
}
.menu.show-menu {
    display: flex;
}

.menu a {
    margin: 10px;
}

.menu-toggle {
    display: block;
}
span{
  font-size: 3rem;
}
.s-heading {
  font-size: 2.4rem;
}

.content h1{
  font-size: 2.6;
}

.row{
  flex-wrap: wrap;
}

.con2-box-img{
  width: 50%;
}
.contact-box{
  width: 100%;
}

#about{
  margin-top: -35%;
}


footer{
  padding: 5px 60px;
}
}









