@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

/* seprator */
.separator {
  border-top: 5px dotted #3c6e71;
  margin: 15px 0;
}

/* Header */
header {
  background-color: #284b63;
  padding: 10px 10px 0px;
  text-align: center;
  height: 80px;
}

header .info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

header .info,
header nav {
  max-width: 1300px;
  margin: 0 auto;
}

header .info a {
  text-decoration: none;
  margin: 0 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

header .info a {
  color: #f8fafa;
}

header .info a i {
  margin: 4px;
  font-size: 16px;
}

header .info a:hover>span {
  color: rgb(159, 207, 239);
}

header nav {
  padding: 20px;
  background-color: white;
  border-radius: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1100px;
  position: relative;
  top: 15px;
  box-shadow: 8px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

header nav a {
  color: #284b63;
  text-wrap: nowrap;
  text-decoration: none;
  vertical-align: middle;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

header nav a:hover {
  color: #3c6e71;
}

header nav a>i {
  margin: 4px;
  font-size: 12px;
  font-weight: bold;
}

header nav button {
  background-color: #3c6e71;
  padding: 16px 45px;
  font-size: 18px;
  color: white;
  font-weight: bold;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 6px 0 3px 1px #0a131ae1;
}

nav .sub-services{
  position: relative;
}
nav .sub-services:hover  .all-services{
  display: block;
}
nav .all-services{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  max-width: 300px;
  padding: 20px;
  background-color:#1d5981;
  border-radius: 30px;
  z-index: 10;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3); 

}
nav .all-services a{
  display: inline-block;
  color:white;
  margin: 10px 0;
}
nav .all-services a:hover{
  color: rgb(207, 200, 200);
  text-decoration: underline;
}

nav .responsive-menu-modal{
  display: none;
  position: relative;
}
.responsive-menu i{
  font-size: 20px;
}

.responsive-menu-links {
  display: none; 
  position: absolute;
  top: 40px;
  right: -15px;
  min-height: 100px;
  background-color: #fff; 
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  width: 96vw;
  z-index: 99;
}
.responsive-menu-links:target {
  display: block;
}
.close-menu {
  display: block;
  text-align: right;
  padding: 10px 15px;
  color:#1d5981;
  text-decoration: none;
  cursor: pointer;
}

.close-menu:hover {
  background-color: #dddcdc;
}

.responsive-menu-links .links {
  display: block;
  color:#182f3f;
  text-decoration: none;
  text-align: left;
  padding: 10px 15px;
}
.responsive-menu-links .links:hover {
  background-color: #dddcdc;
}
/* breadcrumb navigation */

.breadcrumb {
  padding: 220px 20px;
  text-align: center;
  position: relative;
  border: 1px solid #ced6db;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

.breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/reviews-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.breadcrumb>h1 {
  color: #284b63;
  font-size: clamp(2.5rem, 5vw, 6rem);
  font-weight: 900;
  margin: 15px 0;
}

/* Section-1 */
.section-1 {
  max-width: 1140px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.2);
  position: relative;
  top: -80px;
}

/* Section 1: Col-1 */
.section-1 .col-1 {
  background-color: #3c6e71;
  color: white;
  padding: 40px;
  width: 35%;
}

.section-1 .col-1 h2 {
  font-size: 22px;
  font-weight: 800;
}

.section-1 .col-1 p {
  font-weight: 500;
  margin: 20px 0;
}

.contact-number,
.contact-email,
.contact-location {
  background-color: white;
  color: #284b63;
  padding: 10px 25px 10px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  word-break: break-all;
}

.contact-email {
  background-color: #284b63;
  color: white;
  word-break: break-all;
}

.contact-location {
  background-color: #173346;
  color: white;
}

.contact-number .icon,
.contact-email .icon,
.contact-location .icon {
  background-color: #173346;
  color: white;
  border-radius: 50px;
  padding: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.contact-number .icon i,
.contact-email .icon i,
.contact-location .icon i {
  width: 40px;
  height: 40px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-email .icon {
  background-color: white;
  color: #284b63;
}

.contact-location .icon {
  background-color: white;
  color: #284b63;
}

.contact-number .icon:hover,
.contact-email .icon:hover,
.contact-location .icon:hover {
  transform: scale(1.1);
}

.contact-number .number-detail span,
.contact-email .email-detail span,
.contact-location .location-detail span {
  font-size: 22px;
  font-weight: 800;
  line-height: 100%;
}

.contact-number .number-detail p,
.contact-email .email-detail p,
.contact-location .location-detail p {
  color: gray;
  margin: 5px 0;
  line-height: 100%;

}

.contact-email .email-detail p {
  color: white;
}

/* Section 1: Col-2 */

.section-1 .col-2 {
  background-color: white;
  color: white;
  padding: 20px;
  width: 65%;
}

.section-1 .col-2 form {
  padding: 50px 30px;
}

.section-1 .col-2 form input,
.section-1 .col-2 form textarea {
  display: block;
  width: 100%;
  background-color: #e9edef;
  border: 1px solid #b7c1c7;
  outline: none;
  padding: 15px;
  line-height: 21px;
  margin-bottom: 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  color: #284b63;
}

.section-1 .col-2 form input:hover,
.section-1 .col-2 form textarea:hover {
  outline: 1px solid #606c74;
}

.section-1 .col-2 form textarea {
  height: 130px;
}

.section-1 .col-2 form button {
  background-color: #3c6e71;
  padding: 20px 45px;
  font-size: 18px;
  color: white;
  font-weight: 800;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 6px 0 3px 1px #0a131ae1;
}

/* Secion - 2*/

.section-2 {
  padding: 40px 20px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

/* Question and Answers */
.Question-Answer {
  width: 45%;
  padding: 20px;
}

.Question-Answer .question {
  border-radius: 40px;
  padding: 10px 30px;
  font-weight: 600;
  color: #284b63;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2px;
  background-color: #fefbea;
  box-shadow: 4px 4px 4px 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  cursor: pointer;
}

.Question-Answer .question:first-of-type {
  background-color: #1f3c50;
  color: white;
}

.Question-Answer .answer p {
  max-width: 470px;
  width: 95%;
  margin: 25px auto;
  color: #1f3c50;
}

/* FAQ Description */
.faq-description {
  width: 40%;
  padding: 20px;
}

.faq-description>h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-weight: 900;
  color: #284b63;
}

.faq-description>p {
  color: gray;
  margin: 10px 0;
  line-height: 160%;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

.faq-description>div {
  margin: 20px 0;
}

.faq-description i {
  color: #173346;
}

.faq-description span {
  color: gray;
  margin-left: 3px;
  font-family: "Roboto", sans-serif;
}

.faq-description button {
  background-color: #3c6e71;
  color: white;
  font-size: 17px;
  padding: 20px 40px;
  width: 210px;
  border-radius: 50px;
  border: none;
  margin: 10px 0;
  cursor: pointer;
  transition: transform 0.4s ease;
  box-shadow: 6px 0 3px 1px #0a131ae1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;


}

.faq-description button:hover {
  transform: scale(1.1);
}

.faq-description button i {
  color: white;
  margin-right: 5px;
}

.faq-description button span {
  color: white;
  font-size: 16px;
}

/* Section-10 */
.section-10 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  padding: 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-10 .col-1,.section-10 .col-2 {
  width: 40%;
  max-width: 570px;
}
 .section-10 .col-1 h2{
  font-size: 50px;
  font-weight: 800;
  color: #284B63;
}
.section-10 .col-1 p{
  color: gray;
  line-height: 160%;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
}
.quote-form .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 7px;
}
/* input fields */
.quote-form input {
  padding:12px 10px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  width: 100%;
  max-width: 257px;
  margin: 5px 0;
  background-color: white;

}
.quote-form select:hover {
  outline: 1px solid #b0b2b5;

}
/* optioin -list */
.quote-form select{
  padding:12px 10px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  width: 100%;
  cursor: pointer;
  margin: 5px 0;
  background-color: white;
  color: #6b7280; 


}
.quote-form select:focus{
  outline: 1px solid #b0b2b5;
}

.quote-form select option{
  padding: 10px;
  border: none;
  
}

.quote-form select option:checked {
  color:rgb(92, 91, 91); 
  font-weight: 600;
}


/* measurment row */
.quote-form .measurement{

}
.quote-form .measurement .col {
  gap: 5px;
  width: 25%;

}

.quote-form .measurement .col label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

.quote-form .measurement .col input,
.quote-form .measurement .col select {
  max-width: 90px !important; 
  width: 100%;
  /* min-width: unset; */
}
.quote-form .measurement .col select {
  max-width: 120px !important; 
}
/* check box row */
.check-box {
  display: flex;
  gap: 20px;
  margin: 15px 0;
}

.check-box .col {
  width: 50%;
}

.check-box label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0;
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
}

.check-box input[type="checkbox"] {
  width: 15px;
  height: 15px;
}

.quote-form input.message{
  max-width: 96%;
}

.btn-primary {
  width: 100%;
  background-color: #173346;
  color: #fff;
  padding: 20px;
  border: none;
  outline: none;
  border-radius: 5px;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}


/* Footer */

footer {
  background-color: #173346;
  padding: 80px 20px;
  text-align: center;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.footer-data {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content:space-around;
  align-items: center;
  gap: 30px;
}

.footer-data .col-1 .logo img {
  width: 200px;
}

.footer-data .col-1 p {
  color: lightgray;
  max-width: 200px;
  margin: 20px 0;
  font-family: "Roboto", sans-serif;
  line-height: 160%;
  text-align: left;
}

.footer-data .col-3 a {
  text-decoration: none;
  display: block;
  color: lightgray;
  text-align: left;
  margin: 15px 0;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}
.footer-data .col-3 a:hover {
  color: rgb(184, 181, 181);
  text-decoration: underline;
}

.footer-data .col-3 span.heading {
  font-weight: 800;
  font-size: 22px;
  color: white;
  font-family: "Montserrat", sans-serif;
}

.footer-data .social-media-links {
  color: white;
  margin: 20px 0;
}

.footer-data .social-media-links i {
  margin-right: 15px;
  cursor: pointer;
}

.footer-data .social-media-links i:hover {
  color: #7accf0;
}

footer .copyright {
  font-family: "Roboto", sans-serif;
  color: lightgray;
  margin-top: 50px;
}

/* -------------- */
/* -------------- */
/* -------------- */

/* Media Queries */

/* -------------- */
/* -------------- */
/* -------------- */
@media screen and (max-width: 1330px) {
  .quote-form .measurement{
    flex-wrap:wrap ;
  }
}
@media screen and (max-width: 1040px) {
  /* Header */

  header nav a.links,
  header nav button {
    display: none;
  }

  nav .responsive-menu-modal {
    display: block;
  }

  header nav {
    justify-content: space-between;
  }
  .breadcrumb {
    padding: 170px 20px;
  }

  .section-1 {
    margin: 10px;
  }

  .section-1 .col-1 {
    padding: 20px;
  }

  .contact-number .number-detail span,
  .contact-email .email-detail span,
  .contact-location .location-detail span {
    font-size: 19px;
  }

  .contact-number,
  .contact-email,
  .contact-location {
    padding: 10px;
  }

  .Question-Answer {
    width: 50%;
  }

  .faq-description {
    width: 50%;
  }
  .section-10 .col-1,.section-10 .col-2 {
    width: 50%;
    max-width: none;
  }
}

@media screen and (max-width: 850px) {

  .contact-number .number-detail span,
  .contact-email .email-detail span,
  .contact-location .location-detail span {
    font-size: 18px;
  }

  .section-1 .col-1 {
    width: 40%;

  }

  .section-1 .col-2 {
    width: 60%;
  }

  .section-1 .col-2 form {
    padding: 50px 10px;
  }

  .section-2 {
    gap: 0;
  }

  .Question-Answer {
    padding: 0;
  }

  .Question-Answer .answer p {
    /* width: 100%; */
    max-width: none;
  }

  .Question-Answer .question p {
    font-size: 14px;
  }
  .quote-form input{
    max-width: none;
  }
  .section-10 {
    flex-direction: column;
  }
  .section-10 .col-1,.section-10 .col-2 {
    width: 100%;
  }
  /* footer */
  .footer-data {
    flex-direction: column;
  }

  .footer-data .col-2 span,
  .footer-data .col-3 span,
  .footer-data .col-4 {
    text-align: center;
  }
}

@media screen and (max-width: 750px) {

  .contact-number .number-detail span,
  .contact-email .email-detail span,
  .contact-location .location-detail span {
    font-size: 16px;
  }

  .section-2 {
    flex-direction: column-reverse;
    text-align: center;
  }

  .Question-Answer {
    width: 100%;
  }

  .faq-description {
    width: 100%;
  }

  .Question-Answer .answer p {
    max-width: 90%;
  }
}

@media screen and (max-width: 650px) {
  header {
    height: 120px;
  }
  .responsive-menu-links {
    width: 93vw;
  }
  .section-1 {
    flex-direction: column;
  }

  .section-1 .col-1 {
    width: 100%;
  }

  .section-1 .col-2 {
    width: 100%;
  }
  .section-2{
    padding: 0 20px 40px;
    position: relative;
    top: -20px  ;
  }


}

@media screen and (max-width: 450px) {
  header {
    height: 140px;
}
  .breadcrumb {
    padding: 148px 20px 120px;
}
  .Question-Answer {
    text-align: left;
    margin-top: 20px;

  }

  .Question-Answer .question {
    padding: 0 5px 0 15px;
  }

  .faq-description,
  .Question-Answer {
    padding: 0;
  }
  
  .section-10{
    padding: 20px;
  }
.quote-form .row {
  flex-direction: column;
}
.section-10 .col-1 h2 {
  font-size: 35px
}
.section-10 .col-1 p{
  font-size: 16px;
  line-height: 130%;
}
.quote-form{
  padding: 10px;
}
.quote-form input{
  box-sizing: border-box;
}
.quote-form .measurement .col {
  width:100%;
  
}
.check-box .col {
  width: 100%;
}
.quote-form .measurement .col input,
.quote-form .measurement .col select {
  max-width:100% !important; 
}

  .footer-data{
    gap: 0;
  }

}