@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: 90px;
    position: relative;
    z-index: 10;
}

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);
}

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;
}

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;
}


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


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: 102px 20px 20px;
    text-align: center;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 30px;
    background-color: white;
    position: relative;
    z-index: 9;
}

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

/* Section - 2 */
.section-2 {
    max-width: 1250px;
    margin: 40px auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 70px;
}

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

.section-2 .col-2 {
    width: 69%;
}

.other-services {
    padding: 14px 20px 50px;
    color: white;
    text-align: center;
    position: relative;
}


.other-services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/about-page-bg-img.jpg");
    background-position: center;
    background-size: cover;
    z-index: -1;
    border-radius: 50px;
}

.other-services::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #4D736D;
    z-index: -1;
    opacity: 0.8;
    border-radius: 50px;
}

.other-services .description>h3 {
    font-size: 24px;
    font-weight: 800;
}

.other-services .service {
    padding: 10px;
    border-radius: 50px;
    background-color: white;
    color: #284B63;
    margin-top: 20px;
    display: flex;
    justify-items: center;
    align-items: center;
    text-align: left;
    gap: 15px;
}

.other-services .service .icon {
    background-color: #284B63;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.other-services .service .icon i {
    font-size: 35px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.other-services .service .icon:hover {
    transform: scale(1.1);
}

.other-services .service h4 {
    font-size: 21px;
    font-weight: 800;
    margin: 0;
}

.other-services .service p {
    font-family: "Roboto", sans-serif;
    margin: 0;
    margin-top: 5px;
    color: gray;
}

.col-2 {
    max-width: 759px;
}

.col-2 .service-img {
    position: relative;
    padding: 30px 10px;
}

.col-2 .service-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/about-page-bg-img.jpg");
    background-position: center;
    background-size: cover;
    opacity: 0.4;
    z-index: -1;
    border-radius: 50px;

}

.col-2 .service-img img {
    max-width: 491px;
    margin: 0 auto;
    display: block;
}

.col-2 h2 {
    color: #1b3f57;
    font-size: 24px;
    font-weight: 800;
}

.col-2 p {
    color: gray;
    font-weight: 500;
    line-height: 150%;
    font-family: "Roboto", sans-serif;
}

.col-2 .links {
    display: flex;
    gap: 100px;
}

.col-2 .links .part-a .link,
.col-2 .links .part-b .link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}

.col-2 .links .part-a .link i,
.col-2 .links .part-b .link i {
    color: #3C6E71;
}

.col-2 .links .part-a .link span,
.col-2 .links .part-b .link span {
    color: #284B63;
    font-weight: 600;
}

.col-2 .qualities {
    padding: 40px 30px;
    margin: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    background-color: #284B63;
    border-radius: 50px;
}

.col-2 .qualities .quality .icon {
    padding: 12px;
    background-color: white;
    color: #1f3c50;
    border-radius: 40px;
    cursor: pointer;
    width: max-content;
    transition: transform 0.4s ease;
}

.col-2 .qualities .quality .icon i {
    width: 40px;
    height: 40px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.col-2 .qualities .quality .icon:hover {
    transform: scale(1.2);
}

.col-2 .qualities .quality span {
    font-size: 22px;
    font-weight: 800;
    color: white;
    display: inline-block;
    margin: 20px 0 10px;
}

.col-2 .qualities .quality p {
    color: white;
    line-height: 150%;
}

/* 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;
    }

    .other-services .service h4 {
        font-size: 16px;
    }

    .other-services .service p,
    .other-services .description>p,
    .newsletters p,
    .faq>p,
    .section-2 .col-2 p {
        font-size: 15px;
    }

    .section-2 {
        gap: 20px
    }

    .section-2 .col-2 .links .part-a .link span,
    .section-2 .col-2 .links .part-b .link span {
        font-size: 15px;
    }

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

    .section-2 .col-2 {
        width: 68%;
    }

    .section-2 .col-2 .qualities .quality span {
        font-size: 20px;
    }
    .section-10 .col-1,.section-10 .col-2 {
        width: 50%;
        max-width: none;
      }


}

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


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

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

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

    .section-2 .col-2 .qualities .quality {
        text-align: center;
    }

    .section-2 .col-2 .qualities .quality .icon {
        margin: 0 auto;
    }
    .quote-form input{
        max-width: none;
      }
      .section-10 {
        flex-direction: column;
      }
      .section-10 .col-1,.section-10 .col-2 {
        width: 100%;
      }

    .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: 650px) {
    header {
        height: 140px;
    }
    .responsive-menu-links {
        width: 93vw;
      }

    .section-2 .col-2 h2 {
        font-size: 22px;
    }

    .section-2 .col-2 .links {
        gap: 0;
        flex-direction: column;
        justify-content: center;
    }

    .section-2 .col-2 .qualities {
        flex-direction: column;
        gap: 20px;
    }

    .section-2 .col-2 .service-img img {
        width: 100%;
    }

    .faq h2 {
        font-size: 20px;
        text-align: center;
    }
}


@media screen and (max-width: 450px) {
    .section-2 {
        margin: 0;
    }
    
  .section-10{
    padding: 20px;
  }
.quote-form .row {
  flex-direction: column;
  gap: 0;
}
.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;
    }

    footer .copyright {
        margin: 0;
    }
}