/* Styling Default  */
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    width: 100%;
    height: 100vh;
    font-family: 'Montserrat', sans-serif;
}
.container-fluid{
    padding: 1% 10%;
}

.navbar a{
    margin-right: 1rem;
}

.navbar .btn{
    display: block;
    background-color: orangered;
    border: none;
}

.navbar{
    background-color: steelblue;
}


/* Styling The Home Section */
#home .container-fluid{
    padding: 5% 10%;
}

#home h1,#home p{
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.5;
}

#home p{
    font-size: 1.5rem;
    font-weight: 300;
}


/* StyLing The Services Section */

#service .container-fluid{
    padding: 5% 10%;
}
#service .row{
    margin-top: 1.5rem;
}
#service h3{
    color: orangered;
    font-size: 1rem;
}
#service h2{
    font-size: 2rem;
}

.card>img{
    margin: auto;
}

.card{
    padding: 3rem;
}
.card p{
    line-height: 2;
}

.card-body .btn-2{
    background-color: orangered;
    border: none;
}


/* Styling The Awards Section */
#awards .container-fluid{
    padding: 3% 10%;
}

/* Testimonial Section */

/* TESTIMONIAL SECTION */

#testimonials{
    padding: 7% 15%;
    background-color:#ee8072;
    color: #fff;
}

#testimonials h2{
    font-family: 'montserrat-bold',sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

#testimonials img{
    width: 10%;
    border-radius: 100%;
    margin: 20px;
}


/* Styling The Contact Details */
 input[type=text], textarea {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  input[type=submit] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  input[type=submit]:hover {
    background-color: #45a049;
  }
  
  .contact-form {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
  }

#awards h1{
    color: orangered;
}

/* Contact Section Styling */

.contact-details h2{
    color: orangered;
    font-size: 1rem;
    font-weight: bold;
}
.contact-details h1{
    color: #000;
    font-weight: bolder;
    line-height: 1.5;
    font-style: italic;
}
.contact-details h3{
    color: #8f8f8f;
    font-size: 1rem;
}

#contact .container-field{
    padding: 3% 10%;
} 

/* Styling The Find Us Section */
iframe{
    width: 100%;
    height: auto;
}

.text-700{
    color: #5c5b6c;
    text-decoration: none;
}

#findUs .btn-primary{
    background-color: orangered;
    color: #fff;
    text-decoration: none;
    border: none;
}

#findUs .btn-primary:hover{
    color: #fff;
    background-color:orange;
    text-decoration: none;
}


/* Styling The Footer Section */

.footer-container .copyright{
    padding-top: 3rem;
    padding-bottom: 3rem;
}